:root {
	--ink: #171412;
	--muted: #6d6962;
	--line: #d5d0c7;
	--paper: #eeeae2;
	--white: #fff;
	--accent: #2e6f73;
	--accent-dark: #24575a;
	--serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
	--shell: min(1440px, calc(100vw - 80px));
	--header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: .98;
}
h1 { font-size: clamp(3.2rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 5.4rem); }
h3 { line-height: 1.2; }
::selection { background: var(--accent); color: var(--white); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link {
	position: fixed;
	left: 16px;
	top: -100px;
	z-index: 1000;
	padding: 12px 18px;
	background: var(--white);
	color: var(--ink);
}
.skip-link:focus { top: 16px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
	margin-bottom: 18px;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.3;
	text-transform: uppercase;
}
.section-index {
	font-family: var(--serif);
	font-size: 1rem;
	color: var(--muted);
}
.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border: 1px solid var(--ink);
	border-radius: 8px;
	background: var(--ink);
	color: var(--white);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .04em;
	transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 9px 15px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover { color: var(--white); }
.button-group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-block: 8px;
	border-bottom: 1px solid currentColor;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: var(--white); }
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 72px;
	color: var(--muted);
	font-size: .75rem;
	letter-spacing: .04em;
}
.breadcrumbs a:hover { color: var(--accent); }

.site-header {
	position: relative;
	z-index: 100;
	height: var(--header-height);
	border-bottom: 1px solid rgba(17,19,22,.12);
	background: rgba(238,234,226,.94);
	backdrop-filter: blur(14px);
}
.site-header__inner {
	width: var(--shell);
	height: 100%;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 100px 1fr auto;
	align-items: center;
	gap: 26px;
}
.site-brand { width: 54px; }
.site-brand .custom-logo-link, .site-brand img { display: block; width: auto; height: 62px; }
.site-brand img { filter: brightness(0); }
.primary-navigation__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(18px, 2.3vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-navigation a {
	position: relative;
	font-size: .75rem;
	font-weight: 650;
	letter-spacing: .04em;
	white-space: nowrap;
}
.primary-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -8px;
	height: 1px;
	background: var(--accent);
	transition: right .2s ease;
}
.primary-navigation a:hover::after, .primary-navigation .current-menu-item > a::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switcher { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.language-switcher ul { display: flex; margin: 0; padding: 0; list-style: none; }
.menu-toggle { display: none; }

.hero {
	position: relative;
	min-height: calc(100svh - var(--header-height));
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: var(--white);
}
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero__shade { background: linear-gradient(90deg, rgba(6,7,8,.8) 0%, rgba(6,7,8,.37) 48%, rgba(6,7,8,.08) 80%); }
.hero__content {
	position: relative;
	z-index: 1;
	width: var(--shell);
	margin-inline: auto;
	padding: 8vh 0 9vh;
}
.hero h1 { max-width: 920px; margin-bottom: 26px; font-size: clamp(3.8rem, 7.6vw, 8.2rem); }
.hero__content > p:not(.eyebrow) { max-width: 620px; margin-bottom: 32px; font-size: clamp(1rem, 1.4vw, 1.25rem); }

.intro-section {
	display: grid;
	grid-template-columns: 80px minmax(0, 1.3fr) minmax(280px, .7fr);
	gap: 5vw;
	padding-block: 150px;
	align-items: start;
}
.intro-section h2 { max-width: 900px; margin: 0; }
.section-lead { margin-top: 52px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.3rem); }

.collection-section { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 720px; }
.collection-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 680px;
	padding: 46px;
	overflow: hidden;
	color: var(--white);
}
.collection-panel-dark { background: #211d18; }
.collection-panel-image img, .collection-panel__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.collection-panel-image img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-panel-image:hover img { transform: scale(1.025); }
.collection-panel__shade { background: linear-gradient(0deg, rgba(9,10,12,.72), rgba(9,10,12,.05) 70%); }
.collection-panel > *:not(img):not(.collection-panel__shade) { position: relative; z-index: 1; }
.collection-panel__index { font-family: var(--serif); }
.collection-panel h2 { max-width: 600px; margin-bottom: 18px; font-size: clamp(3rem, 5vw, 6rem); }
.collection-panel p { max-width: 440px; margin: 0; color: rgba(255,255,255,.74); }
.collection-panel__arrow { position: absolute !important; right: 46px; bottom: 46px; font-size: 2rem; transition: transform .25s ease; }
.collection-panel:hover .collection-panel__arrow { transform: translate(5px, -5px); }

.process-section { padding-block: 150px; }
.process-section__heading { display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; margin-bottom: 80px; }
.process-section__heading .eyebrow { margin-top: 12px; }
.process-section__heading h2 { max-width: 930px; margin: 0; }
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { min-height: 310px; padding: 28px 24px 24px 0; border-right: 1px solid var(--line); }
.process-list li + li { padding-left: 24px; }
.process-list li:last-child { border-right: 0; }
.process-list span, .service-grid__items span, .principles span { color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.process-list h3 { margin-top: 130px; margin-bottom: 12px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.process-list p { margin: 0; color: var(--muted); font-size: .88rem; }

.featured-products { padding-bottom: 150px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.section-heading h2 { max-width: 800px; margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px 20px; }
.product-card__image { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #e8eaec; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card__action {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: var(--white);
	opacity: 0;
	transform: translateY(7px);
	transition: opacity .25s ease, transform .25s ease;
}
.product-card:hover .product-card__action { opacity: 1; transform: translateY(0); }
.product-card__body { padding-top: 18px; }
.product-card__model, .product-card__collection { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 5px 0 8px; font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.product-card h3 a:hover { color: var(--accent); }

.evidence-section { display: grid; grid-template-columns: 1.04fr .96fr; min-height: 780px; margin-bottom: 150px; background: var(--white); }
.evidence-section__media img { width: 100%; height: 100%; min-height: 780px; object-fit: cover; }
.evidence-section__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 110px); }
.evidence-section h2 { margin-bottom: 30px; font-size: clamp(2.7rem, 4.2vw, 5rem); }
.evidence-section__content > p:not(.eyebrow) { color: var(--muted); }
.check-list { margin: 24px 0 38px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 30px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "•"; position: absolute; left: 2px; color: var(--accent); }
.evidence-section .button { align-self: flex-start; }

.closing-cta { padding: 110px 40px; background: var(--accent); color: var(--white); }
.closing-cta > div { width: min(1120px, 100%); margin: auto; text-align: center; }
.closing-cta p { margin-bottom: 38px; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5.8rem); letter-spacing: -.035em; line-height: 1; }

.archive-hero { padding-top: 90px; padding-bottom: 75px; }
.archive-hero h1 { max-width: 1080px; margin: 0 0 30px; }
.archive-hero__intro { max-width: 680px; color: var(--muted); font-size: 1.1rem; }
.archive-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-block: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collection-filter { display: flex; gap: 10px 28px; flex-wrap: wrap; }
.collection-filter a { font-size: .77rem; font-weight: 700; letter-spacing: .05em; }
.collection-filter a.is-active, .collection-filter a:hover { color: var(--accent); }
.archive-toolbar > p { margin: 0; color: var(--muted); font-size: .75rem; white-space: nowrap; }
.archive-products { padding-block: 70px 150px; }
.archive-products .product-grid { grid-template-columns: repeat(3, 1fr); gap: 55px 24px; }
.navigation.pagination { margin-top: 80px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 8px; }
.page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--white); }
.empty-state { max-width: 720px; margin: 30px auto 80px; text-align: center; }
.empty-state h2 { font-size: 3.5rem; }

.product-detail { padding-top: 48px; }
.product-detail .breadcrumbs { margin-bottom: 48px; }
.product-detail__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 7vw; align-items: start; padding-bottom: 120px; }
.product-detail__media { position: sticky; top: 24px; aspect-ratio: 1; background: #e8eaec; }
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__summary { padding-top: 40px; }
.product-detail__summary h1 { margin-bottom: 30px; font-size: clamp(3rem, 5vw, 6.5rem); }
.product-detail__lead { max-width: 630px; margin-bottom: 42px; color: var(--muted); font-size: 1.1rem; }
.spec-list { margin: 0 0 26px; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.spec-list dd { margin: 0; }
.spec-note { color: var(--muted); font-size: .78rem; }
.product-detail__summary .button { margin-top: 14px; }
.product-description { display: grid; grid-template-columns: 1fr 2fr; gap: 8vw; padding-block: 100px; border-top: 1px solid var(--line); }
.product-description h2 { font-size: 2.2rem; }
.prose { max-width: 780px; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin-top: 2em; font-size: 2.4rem; }
.prose a { color: var(--accent); text-decoration: underline; }
.enquiry-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; padding-block: 130px; border-top: 1px solid var(--line); }
.enquiry-section__intro { position: sticky; top: 40px; align-self: start; }
.enquiry-section__intro h2 { font-size: clamp(2.8rem, 4vw, 5rem); }
.enquiry-section__intro > p:last-child { color: var(--muted); }

.enquiry-form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.form-grid__wide { grid-column: 1 / -1; }
.enquiry-form label { display: flex; flex-direction: column; gap: 8px; font-size: .77rem; font-weight: 700; letter-spacing: .04em; }
.enquiry-form input, .enquiry-form textarea {
	width: 100%;
	border: 1px solid #c9cdd3;
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
	padding: 13px 14px;
}
.enquiry-form input { min-height: 48px; }
.enquiry-form textarea { resize: vertical; }
.enquiry-form input:focus, .enquiry-form textarea:focus { border-color: var(--accent); outline: 2px solid rgba(32,71,191,.18); }
.consent-field { flex-direction: row !important; align-items: flex-start; gap: 10px !important; margin: 24px 0; color: var(--muted); font-weight: 500 !important; }
.consent-field input { width: 18px; min-height: 18px; margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; }
.form-alternative { display: inline-block; margin: 0 0 0 22px; color: var(--muted); font-size: .78rem; }
.form-alternative a { color: var(--ink); text-decoration: underline; }
.form-notice { margin-bottom: 24px; padding: 14px 16px; border-radius: 8px; }
.form-notice-success { background: #e2f1e7; }
.form-notice-error { background: #f6e0e0; }

.page-hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100svh - var(--header-height)); }
.page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 70px max(6vw, calc((100vw - 1440px) / 2)) 70px max(40px, calc((100vw - 1440px) / 2)); }
.page-hero__copy .breadcrumbs { margin-bottom: auto; padding-top: 12px; }
.page-hero__copy h1 { margin-bottom: 30px; font-size: clamp(3.5rem, 5.8vw, 7rem); }
.page-hero__copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.page-hero__copy .button { align-self: flex-start; margin-top: 18px; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.service-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 8vw; padding-block: 150px; }
.service-grid__heading h2 { font-size: clamp(3rem, 4vw, 5rem); }
.service-grid__items { display: grid; grid-template-columns: 1fr 1fr; }
.service-grid__items article { min-height: 300px; padding: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-grid__items article:nth-child(even) { border-right: 1px solid var(--line); }
.service-grid__items article:nth-child(n+3) { border-bottom: 1px solid var(--line); }
.service-grid__items h3 { margin: 110px 0 12px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.service-grid__items p { color: var(--muted); font-size: .9rem; }
.process-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; padding-block: 140px; border-top: 1px solid var(--line); }
.process-detail__intro { position: sticky; top: 40px; align-self: start; }
.process-detail__intro h2 { font-size: clamp(2.8rem, 4vw, 4.8rem); }
.process-detail__intro > p:last-child { color: var(--muted); }
.process-detail ol { margin: 0; padding: 0; list-style: none; }
.process-detail li { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 35px 0; border-top: 1px solid var(--line); }
.process-detail li:last-child { border-bottom: 1px solid var(--line); }
.process-detail li > span { color: var(--accent); font-size: .75rem; font-weight: 700; }
.process-detail h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.process-detail p { margin: 0; color: var(--muted); }
.brief-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 90px; margin-bottom: 150px; background: var(--white); }
.brief-checklist h2 { font-size: 4rem; }
.brief-checklist > div p { color: var(--muted); }
.brief-checklist .check-list { margin: 0; }

.about-statement { display: grid; grid-template-columns: 80px 1.25fr .75fr; gap: 5vw; padding-block: 150px; }
.about-statement h2 { font-size: clamp(3rem, 4.8vw, 5.6rem); }
.about-statement > div { padding-top: 55px; color: var(--muted); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 150px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles article { min-height: 310px; padding: 32px; border-right: 1px solid var(--line); }
.principles article:last-child { border-right: 0; }
.principles h3 { margin: 130px 0 12px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.principles p { color: var(--muted); }

.contact-hero { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; padding-block: 90px 120px; }
.contact-hero .breadcrumbs { grid-column: 1 / -1; margin-bottom: 30px; }
.contact-hero h1 { margin-bottom: 0; }
.contact-hero > p { align-self: end; color: var(--muted); font-size: 1.08rem; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; padding-block: 120px; border-top: 1px solid var(--line); }
.contact-details h2 { font-size: 3rem; }
.contact-details dl { margin: 40px 0; }
.contact-details dl div { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-details dl div:last-child { border-bottom: 1px solid var(--line); }
.contact-details dt { margin-bottom: 6px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-details dd { margin: 0; }
.contact-details a:hover { color: var(--accent); }

.standard-page, .not-found { min-height: 70vh; padding-block: 90px 140px; }
.standard-page header { max-width: 1000px; margin-bottom: 70px; }
.standard-page h1 { margin-bottom: 0; }
.post-list { display: grid; gap: 30px; max-width: 800px; }
.post-list article { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.not-found { display: flex; flex-direction: column; justify-content: center; max-width: 900px; }
.not-found h1 { margin-bottom: 30px; }
.not-found > p:not(.eyebrow) { max-width: 600px; color: var(--muted); }

.site-footer { padding: 90px 40px 26px; background: #0f1114; color: var(--white); }
.site-footer__grid { width: min(1440px, 100%); margin: auto; display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.35fr; gap: 6vw; }
.site-footer__intro img { width: auto; height: 75px; filter: brightness(0) invert(1); }
.site-footer__intro p { max-width: 330px; margin-top: 26px; color: #a6a9ae; font-size: .88rem; }
.site-footer h2 { margin-bottom: 24px; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #c3c6ca; font-size: .85rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.site-footer__cta h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.025em; line-height: 1.1; text-transform: none; }
.site-footer__bottom { width: min(1440px, 100%); margin: 90px auto 0; padding-top: 22px; border-top: 1px solid #303339; display: flex; justify-content: space-between; gap: 30px; color: #81858b; font-size: .7rem; }
.site-footer__bottom p { margin: 0; }

@media (max-width: 1080px) {
	:root { --shell: min(100% - 48px, 1440px); }
	.site-header__inner { grid-template-columns: 70px 1fr auto; }
	.header-actions .button { display: none; }
	.primary-navigation__list { gap: 18px; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.process-list { grid-template-columns: repeat(2, 1fr); }
	.process-list li { border-bottom: 1px solid var(--line); }
	.process-list li:nth-child(even) { border-right: 0; }
	.process-list li:last-child { border-right: 1px solid var(--line); }
	.site-footer__grid { grid-template-columns: 1.2fr .8fr 1fr; }
	.site-footer__cta { grid-column: 1 / -1; max-width: 600px; margin-top: 30px; }
}

@media (max-width: 820px) {
	:root { --shell: calc(100% - 32px); --header-height: 76px; }
	h1 { font-size: clamp(3rem, 13vw, 5rem); }
	h2 { font-size: clamp(2.4rem, 10vw, 4rem); }
	.site-header { height: var(--header-height); }
	.site-header__inner { grid-template-columns: 1fr auto; }
	.site-brand img, .site-brand .custom-logo-link { height: 54px; }
	.menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 10px 0;
		border: 0;
		background: transparent;
		color: var(--ink);
		font-size: .7rem;
		font-weight: 700;
		letter-spacing: .08em;
		text-transform: uppercase;
	}
	.menu-toggle__lines { position: relative; width: 24px; height: 12px; }
	.menu-toggle__lines span { position: absolute; left: 0; width: 24px; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease; }
	.menu-toggle__lines span:first-child { top: 2px; }
	.menu-toggle__lines span:last-child { top: 10px; }
	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child { top: 6px; transform: rotate(45deg); }
	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child { top: 6px; transform: rotate(-45deg); }
	.primary-navigation {
		position: fixed;
		inset: var(--header-height) 0 0;
		padding: 42px 16px;
		background: var(--paper);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
		overflow-y: auto;
	}
	.primary-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
	.primary-navigation__list { display: block; }
	.primary-navigation li { border-bottom: 1px solid var(--line); }
	.primary-navigation a { display: block; padding: 17px 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; }
	.primary-navigation a::after { display: none; }
	.header-actions { position: absolute; right: 90px; }
	.hero { min-height: calc(100svh - var(--header-height)); }
	.hero__media img { object-position: 63% center; }
	.hero__shade { background: linear-gradient(0deg, rgba(5,6,7,.86), rgba(5,6,7,.07) 85%); }
	.hero__content { padding-bottom: 50px; }
	.hero h1 { font-size: clamp(3.15rem, 14vw, 5.5rem); }
	.hero__content > p:not(.eyebrow) { max-width: 92%; font-size: .98rem; }
	.intro-section, .process-section__heading, .evidence-section, .product-detail__grid, .enquiry-section, .service-grid, .process-detail, .about-statement, .contact-hero, .contact-layout, .brief-checklist, .page-hero-split { grid-template-columns: 1fr; }
	.intro-section { gap: 24px; padding-block: 90px; }
	.intro-section .section-index { display: none; }
	.section-lead { margin-top: 12px; }
	.collection-section { width: 100%; grid-template-columns: 1fr; min-height: auto; }
	.collection-panel { min-height: 520px; padding: 28px 24px; }
	.collection-panel__arrow { right: 24px; bottom: 28px; }
	.process-section { padding-block: 90px; }
	.process-section__heading { margin-bottom: 45px; }
	.process-list h3 { margin-top: 70px; }
	.featured-products { padding-bottom: 90px; }
	.section-heading { align-items: start; flex-direction: column; margin-bottom: 36px; }
	.evidence-section { width: 100%; margin-bottom: 90px; }
	.evidence-section__media img { min-height: 520px; }
	.evidence-section__content { padding: 50px 24px 60px; }
	.closing-cta { padding: 80px 20px; }
	.archive-hero { padding-top: 55px; }
	.breadcrumbs { margin-bottom: 45px; }
	.archive-products .product-grid { grid-template-columns: repeat(2, 1fr); }
	.product-detail { padding-top: 28px; }
	.product-detail__grid { gap: 18px; padding-bottom: 80px; }
	.product-detail__media, .enquiry-section__intro, .process-detail__intro { position: static; }
	.product-detail__summary { padding-top: 25px; }
	.product-description { grid-template-columns: 1fr; padding-block: 70px; }
	.enquiry-section { gap: 45px; padding-block: 80px; }
	.page-hero-split { min-height: auto; }
	.page-hero__copy { min-height: 70vh; padding: 55px 16px; }
	.page-hero__copy .breadcrumbs { margin-bottom: 70px; }
	.page-hero__media { order: -1; max-height: 65vh; }
	.page-hero__media img { max-height: 65vh; object-fit: cover; }
	.service-grid, .process-detail { gap: 55px; padding-block: 90px; }
	.brief-checklist { width: var(--shell); padding: 45px 24px; margin-bottom: 90px; }
	.about-statement { gap: 25px; padding-block: 90px; }
	.about-statement .section-index { display: none; }
	.about-statement > div { padding-top: 10px; }
	.contact-hero { gap: 25px; padding-block: 60px 80px; }
	.contact-layout { gap: 55px; padding-block: 80px; }
	.principles { grid-template-columns: 1fr; margin-bottom: 90px; }
	.principles article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
	.principles article:last-child { border-bottom: 0; }
	.principles h3 { margin-top: 80px; }
	.site-footer { padding-inline: 20px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__intro, .site-footer__cta { grid-column: 1 / -1; }
	.site-footer__bottom { flex-direction: column; }
}

@media (max-width: 560px) {
	.header-actions { display: none; }
	.hero .button-group { align-items: flex-start; flex-direction: column; gap: 10px; }
	.product-grid, .archive-products .product-grid, .process-list, .service-grid__items { grid-template-columns: 1fr; }
	.process-list li, .process-list li:last-child { min-height: 240px; padding: 25px 0; border-right: 0; }
	.process-list li + li { padding-left: 0; }
	.process-list h3 { margin-top: 65px; }
	.product-card:nth-child(n+5) { display: none; }
	.archive-products .product-card:nth-child(n+5) { display: block; }
	.archive-toolbar { align-items: flex-start; flex-direction: column; }
	.collection-filter { gap: 8px 18px; }
	.product-detail__summary h1 { font-size: 3rem; }
	.spec-list div { grid-template-columns: 1fr; gap: 5px; }
	.form-grid { grid-template-columns: 1fr; }
	.form-grid__wide { grid-column: auto; }
	.form-alternative { display: block; margin: 18px 0 0; }
	.service-grid__items article, .service-grid__items article:nth-child(even), .service-grid__items article:nth-child(n+3) { min-height: 250px; border-right: 0; border-left: 0; border-bottom: 0; }
	.service-grid__items article:last-child { border-bottom: 1px solid var(--line); }
	.service-grid__items h3 { margin-top: 75px; }
	.process-detail li { grid-template-columns: 50px 1fr; }
	.brief-checklist h2 { font-size: 3rem; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__intro, .site-footer__cta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
