@font-face {
	font-family: "Inter";
	src: url("../fonts/InterVariable.woff2") format("woff2");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Serif";
	src: url("../fonts/InstrumentSerif-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Instrument Serif";
	src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
	font-style: italic;
	font-weight: 400;
	font-display: swap;
}

:root {
	--ink: #111111;
	--paper: #ffffff;
	--mist: #f5f5f5;
	--gold: #b88a44;
	--gold-dark: #8c6329;
	--muted: #666666;
	--line: #d9d9d6;
	--radius: 8px;
	--header-height: 82px;
	--container: 1280px;
	--gutter: clamp(20px, 4vw, 48px);
}

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

html { scroll-behavior: auto; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: "Inter", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--gold); }

button,
input,
textarea { font: inherit; }

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

:focus-visible {
	outline: 3px solid #d7a95d;
	outline-offset: 3px;
}

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

h1,
h2,
h3 {
	font-weight: 650;
	line-height: 1.1;
	letter-spacing: 0;
	overflow-wrap: break-word;
	text-wrap: balance;
}

h1 { font-size: 80px; }
h2 { font-size: 54px; }
h3 { font-size: 21px; }

.container-wide {
	width: min(calc(100% - (var(--gutter) * 2)), var(--container));
	margin-inline: auto;
}

.container-content {
	width: min(calc(100% - (var(--gutter) * 2)), 800px);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	transform: translateY(-160%);
	padding: 10px 14px;
	background: var(--paper);
	color: var(--ink);
	border-radius: 4px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.98);
	color: var(--ink);
	border-bottom: 1px solid var(--line);
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.admin-bar .site-header { top: 32px; }
.has-transparent-header .site-header { position: fixed; inset-inline: 0; background: transparent; color: var(--paper); border-color: transparent; }
.site-header.is-scrolled,
.has-transparent-header .site-header.is-scrolled { background: rgba(255, 255, 255, 0.98); color: var(--ink); border-color: var(--line); }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 30px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	width: 114px;
	height: 52px;
	padding: 5px 9px;
	background: var(--paper);
	border-radius: 2px;
	overflow: hidden;
	flex: 0 0 auto;
}

.site-brand__image { width: 100%; height: 100%; object-fit: contain; }

.header-navigation { display: flex; align-items: center; gap: 26px; }
.primary-menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.primary-menu a { display: block; padding: 12px 0; font-size: 14px; font-weight: 520; text-decoration: none; white-space: nowrap; }
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--gold); }

.menu-toggle { display: none; border: 0; color: inherit; background: transparent; }
.menu-toggle__label { font-size: 14px; font-weight: 600; }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover { background: #c99a53; color: var(--ink); }
.button--dark { background: var(--ink); color: var(--paper); }
.button--dark:hover { background: #333333; color: var(--paper); }
.button--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--outline:hover { border-color: var(--gold); background: var(--gold); }
.button--small { min-height: 40px; padding: 8px 14px; }
.button--glass { border-color: rgba(255, 255, 255, 0.72); background: rgba(17, 17, 17, 0.28); color: var(--paper); }
.button--glass:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }

.home-hero {
	position: relative;
	display: flex;
	min-height: clamp(600px, 82svh, 820px);
	background: var(--ink) var(--hero-image) center / cover no-repeat;
	color: var(--paper);
	isolation: isolate;
}

.has-motion-preview .home-hero { overflow: hidden; background: var(--ink); }
.has-motion-preview .home-hero::before {
	content: "";
	position: absolute;
	inset: -3%;
	z-index: -2;
	background: var(--ink) var(--hero-image) center / cover no-repeat;
	transform: scale(1.02) translate3d(0, 0, 0);
	animation: byk-hero-drift 16s ease-in-out infinite alternate;
	will-change: transform;
}

@keyframes byk-hero-drift {
	to { transform: scale(1.07) translate3d(-0.8%, -0.35%, 0); }
}

.home-hero__overlay { position: absolute; inset: 0; z-index: -1; background: rgba(0, 0, 0, 0.46); }
.home-hero__content { display: flex; flex-direction: column; justify-content: flex-end; padding-block: calc(var(--header-height) + 80px) 48px; }
.home-hero__copy { width: min(840px, 100%); }
.home-hero h1 { max-width: 820px; margin-bottom: 24px; }
.home-hero__copy > p { max-width: 630px; margin-bottom: 34px; font-size: 22px; color: #eeeeec; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-hero__location { margin: auto 0 0; padding-top: 56px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0; }

.section { padding-block: clamp(78px, 10vw, 140px); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--mist { background: var(--mist); }
.section--catalogue { background: #edecea; }
.section-label { margin-bottom: 20px; color: var(--gold-dark); font-size: 13px; font-weight: 700; line-height: 1.2; letter-spacing: 0; text-transform: uppercase; }
.section--dark .section-label,
.page-hero--visual .section-label { color: #d5a85d; }

.split-intro { display: grid; grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1.65fr); gap: clamp(30px, 7vw, 120px); }
.split-intro > div { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr); gap: clamp(40px, 7vw, 110px); align-items: end; }
.split-intro h2 { max-width: 780px; margin: 0; }
.intro-copy { max-width: 410px; color: var(--muted); }
.intro-copy p { margin-bottom: 28px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link--light { color: var(--paper); }

.collection-preview { background: var(--paper); }
.collection-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.collection-card { position: relative; min-width: 0; min-height: 430px; overflow: hidden; border-radius: var(--radius); color: var(--paper); text-decoration: none; isolation: isolate; }
.collection-card--empty { background: #292928; }
.collection-card--bedroom,
.collection-card--office { grid-column: span 7; }
.collection-card--living-room,
.collection-card--kitchen { grid-column: span 5; }
.collection-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.collection-card__shade { position: absolute; inset: 0; z-index: -1; background: rgba(0, 0, 0, 0.46); transition: background-color 220ms ease; }
.collection-card__empty-mark { position: absolute; top: 20px; right: 28px; z-index: -1; color: #3d3d3b; font-size: 220px; font-weight: 650; line-height: 1; }
.collection-card__content { position: relative; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; height: 100%; padding: clamp(24px, 4vw, 42px); }
.collection-card__meta { margin-bottom: auto; font-size: 12px; font-weight: 650; letter-spacing: 0; text-transform: uppercase; }
.collection-card strong { display: block; margin: 110px 0 14px; font-size: 52px; line-height: 1; }
.collection-card__content > span:not(.collection-card__meta):not(.collection-card__link) { max-width: 430px; color: #e5e5e2; font-size: 15px; }
.collection-card__link { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-size: 13px; font-weight: 700; }
.collection-card:hover img { transform: scale(1.035); }
.collection-card:hover .collection-card__shade { background: rgba(0, 0, 0, 0.34); }
.featured-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px 20px; }
.featured-product-card { min-width: 0; }
.featured-product-card__image { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #e8e8e5; border-radius: var(--radius); }
.featured-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 440ms ease; }
.featured-product-card__placeholder { display: block; width: 100%; height: 100%; background: #e6e6e2; }
.featured-product-card:hover .featured-product-card__image img { transform: scale(1.035); }
.featured-product-card__body { display: flex; justify-content: space-between; gap: 20px; padding: 18px 2px 0; border-top: 1px solid transparent; }
.featured-product-card__body p { margin-bottom: 6px; color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.featured-product-card__body h2,
.featured-product-card__body h3 { margin: 0; font-size: 20px; }
.featured-product-card__body h2 a,
.featured-product-card__body h3 a { text-decoration: none; }
.featured-product-card__body > span { color: var(--muted); font-size: 12px; font-weight: 600; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: clamp(42px, 6vw, 72px); }
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading > p { max-width: 410px; margin-bottom: 5px; color: var(--muted); }
.section-heading--light > div { max-width: 850px; }

.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: #454545; border: 1px solid #454545; }
.capability-card { min-width: 0; background: var(--ink); }
.capability-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.72); }
.capability-card__body { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 18px 28px; }
.capability-card__body span { color: var(--gold); font-size: 12px; font-weight: 700; }
.capability-card__body h3 { margin: 0; font-size: 19px; }

.category-list { border-top: 1px solid var(--line); }
.category-list a { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 20px; min-height: 118px; border-bottom: 1px solid var(--line); text-decoration: none; }
.category-list a > span:first-child { color: var(--muted); font-size: 13px; }
.category-list h3 { margin: 0; font-size: 58px; font-weight: 540; }
.category-list a > span:last-child { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.category-list a:hover h3,
.category-list a:hover > span:last-child { color: var(--gold-dark); border-color: var(--gold); }

.reason-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #cdcdca; border-left: 1px solid #cdcdca; }
.reason-grid article { min-height: 280px; padding: 28px; border-right: 1px solid #cdcdca; border-bottom: 1px solid #cdcdca; }
.reason-grid article > span { color: var(--gold-dark); font-size: 12px; font-weight: 700; }
.reason-grid h3 { margin: 74px 0 18px; font-size: 22px; }
.reason-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.resource-card { min-width: 0; border-top: 1px solid var(--ink); }
.resource-card a { display: block; text-decoration: none; }
.resource-card__image { display: block; width: 100%; aspect-ratio: 4 / 3; margin: 18px 0 24px; overflow: hidden; border-radius: var(--radius); background: #e6e6e2; }
.resource-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 440ms ease; }
.resource-card:hover .resource-card__image img { transform: scale(1.035); }
.resource-card__placeholder { display: block; width: 100%; height: 100%; background: #e6e6e2; }
.resource-card .resource-card__meta { margin-bottom: 8px; color: var(--gold-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.resource-card h3 { margin-bottom: 10px; }
.resource-card h2 { margin-bottom: 10px; font-size: 24px; }
.resource-card p { color: var(--muted); font-size: 15px; }

.catalogue-layout { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 140px); align-items: start; }
.catalogue-intro h2 { max-width: 600px; }
.catalogue-intro > p:not(.section-label) { max-width: 520px; margin-bottom: 30px; color: var(--muted); }
.catalogue-stack { border-top: 1px solid #bdbdb8; }
.catalogue-stack > * { display: flex; align-items: center; justify-content: space-between; min-height: 96px; padding: 18px 6px; border-bottom: 1px solid #bdbdb8; text-decoration: none; font-size: 19px; font-weight: 600; }
.catalogue-stack small { color: var(--muted); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0; }

.contact-cta { padding-block: clamp(58px, 7vw, 86px); background: var(--gold); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-cta .section-label { color: #3e2a0c; }
.contact-cta h2 { max-width: 820px; margin: 0; }

.site-footer { padding-top: 78px; background: var(--ink); color: #efefed; }
.site-footer__top { display: grid; grid-template-columns: 1.3fr repeat(4, minmax(130px, 0.7fr)); gap: clamp(28px, 5vw, 72px); padding-bottom: 72px; }
.site-footer__top--without-social { grid-template-columns: 1.3fr repeat(3, minmax(130px, 0.7fr)); }
.footer-brand img { width: 116px; height: 58px; object-fit: contain; padding: 4px; background: var(--paper); }
.footer-brand p { max-width: 280px; margin: 24px 0 0; color: #aaa; font-size: 14px; }
.footer-heading { margin: 0 0 25px; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0; }
.footer-links { margin: 0; padding: 0; list-style: none; color: #bebebb; font-size: 14px; }
.footer-links li + li { margin-top: 12px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid #373737; color: #888; font-size: 12px; }
.site-footer__bottom p { margin: 0; }

.page-hero { padding-block: clamp(90px, 10vw, 150px); background: var(--mist); }
.page-hero h1 { max-width: 960px; margin: 0 0 28px; font-size: 72px; }
.page-hero p:not(.section-label) { max-width: 720px; margin: 0; color: var(--muted); font-size: 19px; }
.breadcrumbs { display: flex; gap: 10px; margin-bottom: 50px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.page-hero--visual { position: relative; min-height: clamp(560px, 72svh, 640px); display: flex; align-items: flex-end; color: var(--paper); background: var(--ink); isolation: isolate; overflow: hidden; }
.page-hero__media,
.page-hero__overlay { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { z-index: -1; background: rgba(0, 0, 0, 0.44); }
.page-hero--visual .page-hero__content { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); }
.page-hero--visual .breadcrumbs,
.page-hero--visual .page-hero__content > p:last-child { color: #dfdfdc; }

.factory-tour { scroll-margin-top: calc(var(--header-height) + 24px); border-bottom: 1px solid var(--line); background: #f3f4f2; color: var(--ink); }
.factory-tour__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr); align-items: stretch; padding-block: clamp(64px, 5vw, 84px); }
.factory-tour__media { position: relative; width: 100%; min-width: 0; min-height: 500px; overflow: hidden; border-radius: var(--radius); background: #242424; color: var(--paper); }
.factory-tour__media::after { position: absolute; inset: 0; background: rgba(17, 17, 17, 0.18); content: ""; pointer-events: none; }
.factory-tour__media img { width: 100%; height: 100%; object-fit: cover; }
.factory-tour__badge { position: absolute; z-index: 1; left: 28px; bottom: 28px; display: inline-flex; align-items: center; gap: 14px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, 0.36); border-radius: var(--radius); background: rgba(17, 17, 17, 0.88); }
.factory-tour__badge strong { color: #d5a85d; font-size: 28px; line-height: 1; }
.factory-tour__badge span { font-size: 13px; font-weight: 700; }
.factory-tour__content { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: clamp(32px, 4.5vw, 72px); }
.factory-tour .section-label { color: #8a622d; }
.factory-tour__content h2 { max-width: 470px; margin: 0 0 24px; overflow-wrap: break-word; font-size: 50px; text-wrap: balance; }
.factory-tour__content > p:not(.section-label, .factory-tour__note) { max-width: 480px; margin: 0; color: #5f625f; }
.factory-tour__content .button { margin-top: 34px; }
.factory-tour__note { margin: 14px 0 0; color: #686b68; font-size: 12px; }
.factory-tour__media { align-self: center; min-height: 0; aspect-ratio: 16 / 10; }

.entry-content { padding-block: 72px 110px; }
.entry-content > * + * { margin-top: 1.5em; }
.entry-content img { border-radius: var(--radius); }
.page-builder-content { width: 100%; padding: 0; }

.foundation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.foundation-grid article { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.foundation-grid span { color: var(--gold-dark); font-size: 12px; }
.foundation-grid h2 { margin: 58px 0 14px; font-size: 23px; }
.foundation-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.foundation-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.foundation-grid--resources { gap: 18px; border: 0; background: transparent; }
.foundation-grid--resources article { position: relative; min-height: 360px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.foundation-grid--resources article:not(.has-link) { padding: 28px; }
.foundation-grid--resources article > a { position: relative; z-index: 0; display: flex; min-height: 360px; flex-direction: column; justify-content: flex-end; padding: 28px; overflow: hidden; color: var(--ink); text-decoration: none; isolation: isolate; }
.foundation-grid--resources article > a > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 440ms ease; }
.resource-category-card__shade { position: absolute; inset: 0; z-index: -1; background: rgba(0, 0, 0, 0.48); }
.foundation-grid--resources .has-image > a { color: var(--paper); }
.foundation-grid--resources .has-image .foundation-card__number { color: #d8ad68; }
.foundation-grid--resources .has-image p { color: #e2e2df; }
.foundation-grid--resources article > a:hover > img { transform: scale(1.035); }
.manufacturing-process { background: var(--mist); }
.manufacturing-process__intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); align-items: end; gap: clamp(42px, 7vw, 110px); margin-bottom: clamp(50px, 6vw, 78px); }
.manufacturing-process__intro h2 { max-width: 760px; margin: 0; font-size: 54px; text-wrap: balance; }
.manufacturing-process__intro > p { max-width: 470px; margin: 0; color: var(--muted); }
.manufacturing-process__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.manufacturing-process-card { grid-column: span 2; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.manufacturing-process-card__media { overflow: hidden; background: #d8d8d5; }
.manufacturing-process-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 420ms ease; }
.manufacturing-process-card:hover .manufacturing-process-card__media img { transform: scale(1.025); }
.manufacturing-process-card__body { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-content: start; min-height: 190px; padding: 24px; }
.manufacturing-process-card__body > span { grid-row: 1 / span 2; padding-top: 5px; color: var(--gold-dark); font-size: 12px; font-weight: 700; }
.manufacturing-process-card__body h3 { margin: 0; font-size: 26px; line-height: 1.15; }
.manufacturing-process-card__body p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }

.category-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.category-directory a { display: grid; grid-template-columns: 1fr auto; align-content: space-between; min-height: 240px; padding: 28px; background: var(--paper); text-decoration: none; }
.category-directory a > span:first-child { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.category-directory h2 { align-self: end; margin: 70px 0 0; font-size: 26px; }
.category-directory--large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-directory--large a { min-height: 320px; }
.category-directory--large h2 { font-size: 50px; }

.catalogue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.catalogue-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.catalogue-card__cover { display: grid; place-items: center; aspect-ratio: 3 / 4; background: #e2e1de; color: var(--muted); font-size: 14px; }
.catalogue-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.catalogue-card__body { padding: 24px; }
.catalogue-card__body h2 { font-size: 24px; }
.catalogue-card__body p { color: var(--muted); font-size: 14px; }
.catalogue-card__actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 24px; }
.empty-state { grid-column: 1 / -1; padding: clamp(36px, 7vw, 90px); border: 1px solid var(--line); background: var(--paper); }
.empty-state h2 { font-size: 32px; }
.empty-state p { max-width: 620px; margin: 0; color: var(--muted); }
.empty-state .button { margin-top: 28px; }

.archive-filter { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-bottom: clamp(42px, 6vw, 72px); border-bottom: 1px solid var(--line); }
#product-browser { scroll-margin-top: 112px; }
.archive-filter a { padding: 0 0 13px; border-bottom: 2px solid transparent; color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.archive-filter a:hover,
.archive-filter a.is-current { border-color: var(--gold); color: var(--ink); }
.archive-filter--primary.has-secondary { margin-bottom: 14px; }
.archive-filter--secondary { margin-bottom: clamp(42px, 6vw, 72px); padding: 14px 18px 0; background: var(--mist); border-bottom: 0; }
.archive-pagination { margin-top: 64px; }
.archive-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.archive-pagination .page-numbers { display: grid; min-width: 42px; min-height: 42px; place-items: center; padding: 6px 12px; border: 1px solid var(--line); text-decoration: none; }
.archive-pagination .page-numbers.current { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.contact-layout { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 10vw, 150px); }
.contact-details h2 { margin-bottom: 42px; font-size: 30px; }
.contact-details dl { margin: 0; }
.contact-details dl div { padding-block: 18px; border-top: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.contact-details dd { margin: 7px 0 0; }
.contact-form { display: grid; gap: 24px; }
.contact-form label { display: grid; gap: 9px; font-size: 14px; font-weight: 600; }
.contact-form input,
.contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #bababa; border-radius: 6px; background: var(--paper); color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold-dark); outline: 2px solid rgba(184, 138, 68, 0.25); }
.contact-form .button { justify-self: start; }
.form-honeypot { position: absolute; left: -9999px; }
.form-notice { margin-bottom: 24px; padding: 14px 16px; border-radius: 6px; font-size: 14px; }
.form-notice--success { background: #e8f3ea; color: #174c25; }
.form-notice--error { background: #f9e8e6; color: #70231b; }
.map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }
.map-section { padding-top: clamp(70px, 8vw, 110px); background: var(--mist); }
.map-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding-bottom: 42px; }
.map-section__heading h2 { max-width: 760px; margin: 0; font-size: 50px; }

.about-story__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: clamp(50px, 10vw, 150px); align-items: end; }
.about-story__grid h2 { max-width: 760px; margin: 0; }
.about-story__copy { max-width: 500px; color: var(--muted); }
.about-story__copy p { margin-bottom: 28px; }
.about-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(60px, 9vw, 120px); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-facts > div { min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts strong { display: block; margin-bottom: 44px; color: var(--gold-dark); font-size: 50px; line-height: 1; }
.about-facts span { color: var(--muted); font-size: 14px; }
.about-direction__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 42px; border-top: 1px solid #cfcfcb; }
.about-direction article { min-width: 0; padding: clamp(32px, 5vw, 64px) clamp(0px, 4vw, 58px) 0 0; }
.about-direction article + article { padding-left: clamp(28px, 5vw, 70px); border-left: 1px solid #cfcfcb; }
.about-direction article > span { color: var(--gold-dark); font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.about-direction h2 { margin: 42px 0 24px; font-size: 44px; }
.about-direction p { max-width: 540px; margin: 0; color: var(--muted); }
.about-timeline__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.about-timeline article { min-width: 0; padding: 28px 32px 10px 0; }
.about-timeline article + article { padding-left: 32px; border-left: 1px solid var(--line); }
.about-timeline article > span { color: var(--gold-dark); font-size: 13px; font-weight: 700; }
.about-timeline h3 { margin: 58px 0 18px; font-size: 23px; }
.about-timeline p { margin: 0; color: var(--muted); font-size: 15px; }

.reveal-enabled [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.single-featured { margin-top: 70px; }
.single-featured img { width: 100%; max-height: 760px; object-fit: cover; }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.product-detail__media { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); background: #e6e6e2; }
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__placeholder { display: block; width: 100%; height: 100%; background: #e6e6e2; }
.product-detail__content h2 { margin-bottom: 34px; font-size: 50px; }
.product-detail__meta { margin: 0 0 34px; border-top: 1px solid var(--line); }
.product-detail__meta div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.product-detail__meta dt { color: var(--muted); font-size: 13px; font-weight: 600; }
.product-detail__meta dd { margin: 0; }
.product-detail__description { margin-bottom: 32px; color: var(--muted); }
.post-list article { padding-block: 30px; border-bottom: 1px solid var(--line); }
.post-list h2 { font-size: 30px; }
.error-page { min-height: 70vh; padding-block: clamp(130px, 16vw, 220px); }
.error-page h1 { max-width: 850px; }
.error-page > p:not(.section-label) { max-width: 620px; color: var(--muted); }

@media (max-width: 1120px) {
	.header-navigation { gap: 18px; }
	.primary-menu { gap: 14px; }
	.primary-menu a { font-size: 13px; }
	.header-cta { padding-inline: 15px; }
	.site-footer__top { grid-template-columns: 1.2fr repeat(2, 1fr); }
	.site-footer__top--without-social { grid-template-columns: 1.2fr repeat(2, 1fr); }
	.footer-brand { grid-row: span 2; }
}

@media (max-width: 1100px) {
	:root { --header-height: 72px; }
	.menu-toggle { display: inline-flex; align-items: center; gap: 12px; padding: 10px 0; }
	.menu-toggle__icon { display: grid; gap: 6px; width: 24px; }
	.menu-toggle__icon span { display: block; height: 2px; background: currentColor; transition: transform 160ms ease; }
	.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child { transform: translateY(4px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child { transform: translateY(-4px) rotate(-45deg); }
	.header-navigation { position: fixed; inset: var(--header-height) 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 25px; padding: 28px var(--gutter) 40px; background: var(--paper); color: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity 160ms ease, transform 160ms ease, visibility 160ms; overflow-y: auto; }
	.admin-bar .header-navigation { top: calc(var(--header-height) + 32px); }
	.header-navigation.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
	.primary-menu { display: block; }
	.primary-menu li { border-bottom: 1px solid var(--line); }
	.primary-menu a { padding: 16px 0; font-size: 22px; }
	.header-cta { align-self: flex-start; }
}

@media (max-width: 900px) {
	.split-intro,
	.split-intro > div,
	.catalogue-layout,
	.contact-layout,
	.about-story__grid { grid-template-columns: 1fr; }
	.split-intro { gap: 28px; }
	.split-intro > div { gap: 28px; }
	.section-heading { align-items: start; flex-direction: column; gap: 25px; }
	.capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.reason-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.resource-grid,
	.catalogue-grid,
	.featured-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.collection-card,
	.collection-card--bedroom,
	.collection-card--living-room,
	.collection-card--kitchen,
	.collection-card--office { grid-column: span 6; }
	.foundation-grid,
	.category-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer__top--without-social { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-brand { grid-column: 1 / -1; grid-row: auto; }
	.map-section__heading { align-items: start; flex-direction: column; gap: 24px; }
	.manufacturing-process__intro { grid-template-columns: 1fr; gap: 28px; }
	.manufacturing-process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.manufacturing-process-card { grid-column: auto; }
	.factory-tour__inner { grid-template-columns: 1fr; }
	.factory-tour__media { min-height: 0; aspect-ratio: 16 / 10; }
	.factory-tour__content { max-width: 720px; padding: 46px 0 0; }
	.product-detail__grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .header-navigation { top: calc(var(--header-height) + 46px); }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	h1 { font-size: 44px; }
	h2 { font-size: 34px; }
	.home-hero { min-height: 700px; }
	.home-hero__content { padding-bottom: 32px; }
	.home-hero__location { padding-top: 46px; }
	.section { padding-block: 76px; }
	.capability-grid,
	.reason-grid,
	.resource-grid,
	.catalogue-grid,
	.featured-product-grid,
	.foundation-grid,
	.category-directory,
	.category-directory--large { grid-template-columns: 1fr; }
	.about-facts,
	.about-direction__grid,
	.about-timeline__grid { grid-template-columns: 1fr; }
	.about-direction article + article,
	.about-timeline article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
	.about-direction article { padding-right: 0; }
	.about-timeline article { padding: 30px 0; }
	.collection-grid { grid-template-columns: 1fr; }
	.collection-card,
	.collection-card--bedroom,
	.collection-card--living-room,
	.collection-card--kitchen,
	.collection-card--office { grid-column: auto; min-height: 520px; }
	.collection-card strong { margin-top: 90px; }
	.category-list a { grid-template-columns: 42px 1fr auto; min-height: 96px; }
	.category-list h3 { font-size: 31px; }
	.category-list a > span:last-child { width: 38px; height: 38px; }
	.reason-grid article { min-height: 230px; }
	.reason-grid h3 { margin-top: 48px; }
	.contact-cta__inner { align-items: flex-start; flex-direction: column; gap: 32px; }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.site-footer__top--without-social { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.site-footer__bottom { flex-direction: column; }
	.page-hero { padding-block: 80px; }
	.page-hero h1 { font-size: 43px; }
	.page-hero--visual { min-height: 600px; }
	.breadcrumbs { margin-bottom: 34px; }
	.catalogue-card__actions { align-items: flex-start; flex-direction: column; }
	.manufacturing-process__grid { grid-template-columns: 1fr; }
	.manufacturing-process-card { grid-column: auto; }
	.manufacturing-process-card__body { min-height: 0; }
	.factory-tour__inner { padding-block: 64px; }
	.factory-tour__media { aspect-ratio: 4 / 3; }
	.factory-tour__badge { left: 18px; bottom: 18px; gap: 10px; padding: 11px 13px; }
	.factory-tour__badge strong { font-size: 24px; }
	.factory-tour__content { padding-top: 38px; }
	.factory-tour__content h2 { font-size: 36px; }
	.foundation-grid--resources article,
	.foundation-grid--resources article > a { min-height: 320px; }
	.archive-filter { gap: 8px 20px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.has-motion-preview .home-hero::before { animation: none; transform: none; }
	*,
	*::before,
	*::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Editorial manufacturing system: v0.6.0. */
:root {
	--ink: #161918;
	--paper: #fafaf8;
	--mist: #eef0ed;
	--gold: #a87335;
	--gold-dark: #7c5325;
	--muted: #65747b;
	--line: #cfd3cf;
	--radius: 4px;
	--header-height: 84px;
	--font-display: "Instrument Serif", Georgia, serif;
}

body {
	background: var(--paper);
	color: var(--ink);
}

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

h1 {
	font-size: 78px;
	line-height: 0.98;
}

h2 {
	font-size: 54px;
	line-height: 1.02;
}

.section {
	padding-block: clamp(92px, 10vw, 144px);
}

.section-label {
	margin-bottom: 18px;
	color: var(--gold-dark);
	font-size: 12px;
	font-weight: 760;
}

.section--dark {
	background: var(--ink);
}

.section--mist {
	background: var(--mist);
}

.button {
	min-height: 50px;
	padding-inline: 22px;
	border-radius: 3px;
}

.button--gold {
	background: var(--gold);
	color: #101210;
}

.button--gold:hover {
	background: #bb8847;
}

.button--dark {
	background: var(--ink);
	color: var(--paper);
}

.button--outline {
	border-color: currentColor;
}

.text-link span[aria-hidden="true"],
.button span[aria-hidden="true"] {
	transition: transform 180ms ease;
}

.text-link:hover span[aria-hidden="true"],
.button:hover span[aria-hidden="true"] {
	transform: translate(3px, -1px);
}

.site-header {
	height: var(--header-height);
	background: rgba(250, 250, 248, 0.96);
	border-color: rgba(22, 25, 24, 0.13);
	backdrop-filter: blur(12px);
}

.has-transparent-header .site-header {
	background: rgba(22, 25, 24, 0.12);
	border-color: rgba(250, 250, 248, 0.26);
	backdrop-filter: blur(4px);
}

.site-header.is-scrolled,
.has-transparent-header .site-header.is-scrolled {
	background: rgba(250, 250, 248, 0.96);
	border-color: rgba(22, 25, 24, 0.13);
	box-shadow: 0 10px 28px rgba(22, 25, 24, 0.06);
	backdrop-filter: blur(12px);
}

.site-brand {
	width: 108px;
	height: 50px;
	padding: 6px 10px;
	border: 1px solid rgba(22, 25, 24, 0.09);
	border-radius: 2px;
}

.primary-menu a {
	position: relative;
	font-size: 13px;
	font-weight: 580;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

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

.primary-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.submenu-toggle {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.submenu-toggle__icon {
	display: block;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 160ms ease;
}

.menu-item.is-submenu-open > .submenu-toggle .submenu-toggle__icon {
	transform: translateY(2px) rotate(225deg);
}

@media (min-width: 1101px) {
	.header-navigation,
	.primary-navigation,
	.primary-menu {
		height: 100%;
	}

	.primary-menu > .menu-item {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}

	.primary-menu > .menu-item-has-children {
		display: flex;
		align-items: center;
	}

	.primary-menu > .menu-item-has-children > a {
		padding-right: 0;
	}

	.primary-menu > .menu-item-has-children > .submenu-toggle {
		display: none;
	}

	.primary-menu .sub-menu {
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		z-index: 20;
		width: 260px;
		padding: 10px;
		background: rgba(250, 250, 248, 0.99);
		color: var(--ink);
		border: 1px solid rgba(22, 25, 24, 0.14);
		border-radius: 4px;
		box-shadow: 0 22px 50px rgba(22, 25, 24, 0.16);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(8px);
		transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
	}

	.primary-menu .sub-menu::before {
		position: absolute;
		top: -9px;
		right: 0;
		left: 0;
		height: 9px;
		content: "";
	}

	.primary-menu .menu-item-has-children.is-submenu-open > .sub-menu,
	html:not(.byk-navigation-ready) .primary-menu .menu-item-has-children:hover > .sub-menu,
	html:not(.byk-navigation-ready) .primary-menu .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-menu .sub-menu li {
		position: relative;
	}

	.primary-menu .sub-menu a {
		padding: 10px 12px;
		color: var(--ink);
		font-size: 14px;
		font-weight: 520;
		line-height: 1.35;
		white-space: normal;
	}

	.primary-menu .sub-menu a::after {
		display: none;
	}

	.primary-menu .sub-menu a:hover,
	.primary-menu .sub-menu .current-menu-item > a {
		background: var(--mist);
		color: var(--gold-dark);
	}

	.primary-menu .sub-menu .menu-item-has-children > a {
		padding-right: 42px;
	}

	.primary-menu .sub-menu .submenu-toggle {
		position: absolute;
		top: 3px;
		right: 5px;
		color: var(--ink);
	}

	.primary-menu .sub-menu .submenu-toggle__icon {
		transform: translateX(-2px) rotate(-45deg);
	}

	.primary-menu .sub-menu .is-submenu-open > .submenu-toggle .submenu-toggle__icon {
		transform: translateX(2px) rotate(135deg);
	}

	.primary-menu .sub-menu .sub-menu {
		top: -11px;
		left: calc(100% + 8px);
	}

	.primary-menu > .menu-item--mega {
		position: static;
	}

	.primary-menu > .menu-item--mega > .sub-menu {
		top: 100%;
		left: 50%;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0;
		width: min(1180px, calc(100vw - 40px));
		padding: 24px;
		transform: translate(-50%, 8px);
	}

	.primary-menu > .menu-item--mega.is-submenu-open > .sub-menu,
	html:not(.byk-navigation-ready) .primary-menu > .menu-item--mega:hover > .sub-menu,
	html:not(.byk-navigation-ready) .primary-menu > .menu-item--mega:focus-within > .sub-menu {
		transform: translate(-50%, 0);
	}

	.primary-menu > .menu-item--mega > .sub-menu > li {
		min-width: 0;
		padding: 4px 20px 6px;
		border-left: 1px solid var(--line);
	}

	.primary-menu > .menu-item--mega > .sub-menu > li:first-child {
		border-left: 0;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > a {
		padding: 0 0 12px;
		border-bottom: 1px solid var(--ink);
		background: transparent;
		color: var(--ink);
		font-size: 15px;
		font-weight: 680;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > a:hover {
		border-color: var(--gold);
		color: var(--gold-dark);
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > .submenu-toggle {
		display: none;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu {
		position: static;
		width: auto;
		padding: 8px 0 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu::before {
		display: none;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu a {
		padding: 7px 0;
		background: transparent;
		color: var(--muted);
		font-size: 13px;
	}

	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu a:hover,
	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu .current-menu-item > a {
		color: var(--gold-dark);
	}
}

.home-hero {
	height: calc(100svh - 34px);
	min-height: 650px;
	max-height: 840px;
	background-position: center;
	overflow: hidden;
}

.has-motion-preview .home-hero::before {
	inset: -1.5%;
	transform: scale(1.035);
	animation: byk-hero-settle 10s cubic-bezier(0.18, 0.72, 0.28, 1) both;
}

@keyframes byk-hero-settle {
	to { transform: scale(1); }
}

.home-hero__overlay {
	background: rgba(13, 16, 15, 0.42);
}

.home-hero__content {
	justify-content: center;
	padding-block: calc(var(--header-height) + 74px) 38px;
}

.home-hero__copy {
	width: min(840px, 76%);
}

.home-hero h1 {
	max-width: 820px;
	margin-bottom: 30px;
	text-wrap: balance;
}

.home-hero__copy > p {
	max-width: 590px;
	margin-bottom: 38px;
	font-size: 20px;
	line-height: 1.55;
}

.home-hero__location {
	position: absolute;
	right: var(--gutter);
	bottom: 34px;
	left: var(--gutter);
	margin: 0 auto;
	padding-top: 0;
	width: min(calc(100% - (var(--gutter) * 2)), var(--container));
	color: rgba(250, 250, 248, 0.86);
	font-size: 11px;
}

.product-index {
	padding-block: clamp(104px, 11vw, 156px);
	background: var(--paper);
}

.product-index__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: end;
	gap: 72px;
	margin-bottom: 70px;
}

.product-index__header h2 {
	max-width: 780px;
	margin: 0;
}

.product-index__header > p {
	max-width: 430px;
	margin: 0 0 4px;
	color: var(--muted);
}

.product-index__layout {
	display: grid;
	grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
	gap: clamp(46px, 7vw, 96px);
	align-items: start;
}

.product-index__list {
	border-top: 1px solid var(--ink);
}

.product-index__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px;
	align-items: center;
	min-height: 116px;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	text-decoration: none;
	transition: color 180ms ease, padding-left 180ms ease;
}

.product-index__item:hover,
.product-index__item:focus-visible,
.product-index__item.is-active {
	padding-left: 12px;
	color: var(--ink);
}

.product-index__item-copy {
	display: grid;
	gap: 9px;
}

.product-index__item-copy strong {
	font-size: 38px;
	font-weight: 520;
	line-height: 1;
}

.product-index__item-copy small {
	font-size: 12px;
	text-transform: uppercase;
}

.product-index__arrow {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.product-index__item:hover .product-index__arrow,
.product-index__item:focus-visible .product-index__arrow,
.product-index__item.is-active .product-index__arrow {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--ink);
}

.product-index__mobile-media {
	display: none;
}

.product-index__preview {
	display: block;
	min-width: 0;
	text-decoration: none;
}

.product-index__preview-media {
	position: relative;
	display: grid;
	aspect-ratio: 16 / 10;
	place-items: center;
	overflow: hidden;
	background: var(--ink);
	color: var(--paper);
}

.product-index__preview-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 220ms ease, transform 700ms ease;
}

.product-index__preview:hover .product-index__preview-media img {
	transform: scale(1.018);
}

.product-index__preview-empty {
	position: absolute;
	font-family: var(--font-display);
	font-size: 66px;
	font-style: italic;
}

.product-index__preview:not(.is-empty) .product-index__preview-empty {
	display: none;
}

.product-index__preview.is-updating img {
	opacity: 0.24;
}

.product-index__preview-caption {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 30px;
	align-items: start;
	padding: 23px 0 0;
	border-top: 1px solid var(--ink);
}

.product-index__preview-caption > span:first-child {
	display: grid;
	grid-template-columns: minmax(120px, 0.35fr) minmax(0, 0.65fr);
	gap: 28px;
}

.product-index__preview-caption strong {
	font-size: 20px;
	font-weight: 650;
}

.product-index__preview-caption small {
	max-width: 440px;
	color: var(--muted);
	font-size: 14px;
}

.featured-products {
	border-top: 1px solid var(--line);
}

.featured-product-grid {
	gap: 54px 22px;
}

.featured-product-card {
	padding-top: 14px;
	border-top: 1px solid var(--ink);
}

.featured-product-card__image {
	border-radius: 0;
}

.featured-product-card__body {
	padding-top: 20px;
}

.featured-product-card__body h2,
.featured-product-card__body h3 {
	font-size: 19px;
}

.home-company {
	border-top: 1px solid var(--line);
	background: var(--paper);
}

.home-company__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: clamp(64px, 9vw, 130px);
	align-items: center;
}

.home-company__media {
	margin: 0;
	overflow: hidden;
}

.home-company__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-company__content {
	max-width: 520px;
}

.home-company__content h2 {
	margin-bottom: 30px;
}

.home-company__content > p:not(.section-label) {
	margin-bottom: 32px;
	color: var(--muted);
}

.section--intro {
	border-top: 1px solid var(--line);
}

.split-intro h2 {
	font-size: 48px;
}

.manufacturing-preview {
	overflow: hidden;
}

.manufacturing-preview .section-heading {
	align-items: end;
}

.manufacturing-preview .section-heading h2 {
	max-width: 900px;
}

.manufacturing-preview .section-heading h2 em {
	font-family: var(--font-display);
	font-weight: 400;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	border: 0;
	background: transparent;
}

.capability-card {
	background: transparent;
}

.capability-card img {
	aspect-ratio: 4 / 5;
	filter: saturate(0.82) contrast(1.02);
	transition: filter 220ms ease, transform 500ms ease;
}

.capability-card:hover img {
	filter: saturate(1);
	transform: scale(1.015);
}

.capability-card__body {
	display: block;
	padding: 18px 2px 0;
	border-top: 1px solid rgba(250, 250, 248, 0.34);
}

.capability-card__body span {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
}

.capability-card__body h3 {
	font-size: 16px;
	line-height: 1.25;
}

.reason-grid {
	border-color: #bdc3bf;
}

.reason-grid article {
	border-color: #bdc3bf;
}

.reason-grid h3 {
	font-size: 21px;
}

.home-library {
	padding-block: clamp(96px, 10vw, 142px);
	background: var(--paper);
}

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

.home-library__panel {
	min-width: 0;
	padding-right: clamp(38px, 6vw, 84px);
}

.home-library__panel + .home-library__panel {
	padding-right: 0;
	padding-left: clamp(38px, 6vw, 84px);
	border-left: 1px solid var(--line);
}

.home-library__header {
	min-height: 220px;
}

.home-library__header h2 {
	max-width: 560px;
	font-size: 40px;
}

.home-library__rows {
	margin-bottom: 30px;
	border-top: 1px solid var(--ink);
}

.home-library__rows > * {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 76px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.home-library__rows small {
	color: var(--muted);
	font-size: 10px;
	font-weight: 650;
	text-transform: uppercase;
}

.contact-cta {
	background: var(--gold);
}

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

.contact-cta .button--dark:hover {
	background: #2b302e;
}

.site-footer {
	background: var(--ink);
}

.footer-heading {
	color: #c38b48;
}

.page-hero--visual {
	min-height: 660px;
}

.page-hero__overlay {
	background: rgba(13, 16, 15, 0.4);
}

.page-hero--visual .page-hero__content {
	padding-bottom: 86px;
}

.page-hero--visual h1 {
	max-width: 990px;
	font-size: 72px;
	text-wrap: balance;
}

.product-range-hero .page-hero__media img {
	transition: transform 9s cubic-bezier(0.18, 0.72, 0.28, 1);
}

.product-range-hero:hover .page-hero__media img {
	transform: scale(1.018);
}

.product-range-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255, 255, 255, 0.09) calc(100% - 1px));
	background-size: 25% 100%;
}

.product-range-hero .page-hero__content {
	position: relative;
	z-index: 1;
}

.range-index {
	background: var(--paper);
}

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

.range-card {
	position: relative;
	display: block;
	min-height: 520px;
	overflow: hidden;
	background: var(--ink);
	color: var(--paper);
	text-decoration: none;
	isolation: isolate;
}

.range-card img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.range-card__shade {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(13, 16, 15, 0.46);
	transition: background-color 220ms ease;
}

.range-card__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 520px;
	padding: 38px;
}

.range-card__meta {
	margin-bottom: auto;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.range-card__content strong {
	margin-bottom: 14px;
	font-size: 48px;
	font-weight: 540;
	line-height: 1;
}

.range-card__content > span:not(.range-card__meta):not(.range-card__link) {
	max-width: 470px;
	color: rgba(250, 250, 248, 0.82);
	font-size: 14px;
}

.range-card__link {
	margin-top: 24px;
	font-size: 13px;
	font-weight: 700;
}

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

.range-card:hover .range-card__shade {
	background: rgba(13, 16, 15, 0.32);
}

.range-card.is-empty::before {
	position: absolute;
	top: 30px;
	right: 34px;
	color: rgba(250, 250, 248, 0.1);
	font-family: var(--font-display);
	font-size: 140px;
	font-style: italic;
	content: "BYK";
}

@media (max-width: 1120px) {
	h1 { font-size: 68px; }
	h2 { font-size: 48px; }
	.product-index__item-copy strong { font-size: 34px; }
	.capability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 16px; }
	.capability-card img { aspect-ratio: 4 / 3; }
}

@media (max-width: 1100px) {
	:root { --header-height: 72px; }
	.site-header,
	.site-header.is-scrolled,
	.has-transparent-header .site-header,
	.has-transparent-header .site-header.is-scrolled {
		background: rgba(250, 250, 248, 0.98);
		color: var(--ink);
		border-color: var(--line);
		backdrop-filter: none;
	}
	.primary-menu a::after { display: none; }
	.header-navigation { background: var(--paper); }
	.primary-menu > .menu-item-has-children,
	.primary-menu .sub-menu .menu-item-has-children {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 48px;
		align-items: center;
	}
	.primary-menu > .menu-item-has-children > a,
	.primary-menu .sub-menu .menu-item-has-children > a {
		grid-row: 1;
		grid-column: 1;
		padding-right: 8px;
	}
	.primary-menu > .menu-item-has-children > .submenu-toggle,
	.primary-menu .sub-menu .menu-item-has-children > .submenu-toggle {
		position: static;
		grid-row: 1;
		grid-column: 2;
		width: 48px;
		height: 54px;
		color: var(--ink);
	}
	.primary-menu .sub-menu,
	.primary-menu > .menu-item--mega > .sub-menu,
	.primary-menu .sub-menu .sub-menu {
		position: static;
		display: none;
		grid-row: 2;
		grid-column: 1 / -1;
		width: 100%;
		padding: 6px 0 12px 18px;
		background: transparent;
		border: 0;
		border-top: 1px solid var(--line);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}
	.primary-menu .menu-item-has-children.is-submenu-open > .sub-menu,
	.primary-menu > .menu-item--mega.is-submenu-open > .sub-menu {
		display: block;
	}
	.primary-menu .sub-menu li,
	.primary-menu > .menu-item--mega > .sub-menu > li {
		padding: 0;
		border: 0;
		border-bottom: 1px solid rgba(22, 25, 24, 0.1);
	}
	.primary-menu .sub-menu li:last-child,
	.primary-menu > .menu-item--mega > .sub-menu > li:last-child {
		border-bottom: 0;
	}
	.primary-menu .sub-menu a,
	.primary-menu > .menu-item--mega > .sub-menu > li > a,
	.primary-menu > .menu-item--mega > .sub-menu > li > .sub-menu a {
		padding: 12px 0;
		border: 0;
		background: transparent;
		color: var(--ink);
		font-size: 16px;
		font-weight: 560;
		line-height: 1.35;
		white-space: normal;
	}
	.primary-menu > .menu-item--mega > .sub-menu > li > a {
		font-weight: 680;
	}
	.primary-menu .sub-menu .sub-menu {
		padding-left: 16px;
	}
}

@media (max-width: 980px) {
	.product-index__header,
	.product-index__layout,
	.home-company__grid {
		grid-template-columns: 1fr;
	}

	.product-index__header {
		gap: 26px;
	}

	.product-index__header > p {
		max-width: 620px;
	}

	.product-index__preview {
		max-width: 760px;
	}

	.home-company__content {
		max-width: 760px;
	}

	.home-company__media {
		max-width: 820px;
	}

	.home-library__grid {
		grid-template-columns: 1fr;
	}

	.home-library__panel,
	.home-library__panel + .home-library__panel {
		padding-inline: 0;
	}

	.home-library__panel + .home-library__panel {
		margin-top: 86px;
		padding-top: 86px;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.home-library__header {
		min-height: 0;
		margin-bottom: 42px;
	}

	.range-card,
	.range-card__content {
		min-height: 460px;
	}
}

@media (max-width: 720px) {
	h1 { font-size: 48px; }
	h2 { font-size: 38px; }
	.section { padding-block: 84px; }

	.home-hero {
		height: calc(100svh - 30px);
		min-height: 610px;
		max-height: 780px;
		background-position: 58% center;
	}

	.has-motion-preview .home-hero::before {
		background-position: 58% center;
	}

	.home-hero__content {
		justify-content: flex-end;
		padding-block: calc(var(--header-height) + 62px) 76px;
	}

	.home-hero__copy {
		width: 100%;
	}

	.home-hero__copy > p {
		font-size: 17px;
	}

	.home-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.home-hero__actions .button {
		width: 100%;
	}

	.home-hero__location {
		bottom: 24px;
	}

	.product-index {
		padding-block: 88px;
	}

	.product-index__header {
		margin-bottom: 46px;
	}

	.product-index__layout {
		gap: 0;
	}

	.product-index__item {
		display: grid;
		grid-template-columns: 112px minmax(0, 1fr) 34px;
		gap: 16px;
		min-height: 132px;
		padding-block: 14px;
	}

	.product-index__item:hover,
	.product-index__item:focus-visible,
	.product-index__item.is-active {
		padding-left: 0;
	}

	.product-index__mobile-media {
		display: grid;
		width: 112px;
		aspect-ratio: 4 / 3;
		place-items: center;
		overflow: hidden;
		background: var(--ink);
		color: var(--paper);
		font-family: var(--font-display);
		font-style: italic;
	}

	.product-index__mobile-media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.product-index__item-copy strong {
		font-size: 26px;
	}

	.product-index__item-copy small {
		font-size: 10px;
	}

	.product-index__arrow {
		width: 34px;
		height: 34px;
	}

	.product-index__preview {
		display: none;
	}

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

	.featured-product-card {
		padding-top: 8px;
	}

	.featured-product-card__body {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		padding-top: 14px;
	}

	.featured-product-card__body h2,
	.featured-product-card__body h3 {
		font-size: 16px;
	}

	.home-company__grid {
		gap: 48px;
	}

	.split-intro h2 {
		font-size: 38px;
	}

	.capability-grid {
		display: flex;
		gap: 14px;
		margin-right: calc(var(--gutter) * -1);
		padding-right: var(--gutter);
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.capability-card {
		flex: 0 0 74%;
		scroll-snap-align: start;
	}

	.capability-card img {
		aspect-ratio: 4 / 3;
	}

	.home-library__header h2 {
		font-size: 34px;
	}

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

	.page-hero--visual {
		min-height: 580px;
	}

	.page-hero--visual .page-hero__content {
		padding-bottom: 64px;
	}

	.page-hero--visual h1 {
		font-size: 46px;
	}

	.range-gallery {
		grid-template-columns: 1fr;
	}

	.range-card,
	.range-card__content {
		min-height: 430px;
	}

	.range-card__content {
		padding: 28px;
	}

	.range-card__content strong {
		font-size: 40px;
	}
}

@media (max-width: 420px) {
	h1 { font-size: 43px; }
	h2 { font-size: 35px; }

	.product-index__item {
		grid-template-columns: 94px minmax(0, 1fr) 30px;
		gap: 12px;
	}

	.product-index__mobile-media {
		width: 94px;
	}

	.product-index__item-copy strong {
		font-size: 23px;
	}

	.product-index__arrow {
		width: 30px;
		height: 30px;
	}

	.featured-product-card__body p,
	.featured-product-card__body > span {
		font-size: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.has-motion-preview .home-hero::before,
	.product-range-hero .page-hero__media img {
		animation: none;
		transform: none;
	}
}

/* Independent brand-showcase Home Hero rotator. */
.home-hero--rotator {
	--hero-interval: 4500ms;
	background: var(--ink);
}

.has-motion-preview .home-hero--rotator::before {
	content: none;
}

.home-hero__slides {
	position: absolute;
	inset: 0;
	z-index: -3;
	background: var(--ink);
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1100ms ease, visibility 0s linear 1100ms;
}

.home-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	transition: opacity 1100ms ease, visibility 0s linear 0s;
}

.home-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__slide.is-active img {
	animation: byk-home-hero-drift 7s cubic-bezier(0.18, 0.72, 0.28, 1) both;
}

@keyframes byk-home-hero-drift {
	from { transform: scale(1.015); }
	to { transform: scale(1.055); }
}

.home-hero--rotator .home-hero__overlay {
	background: rgba(13, 16, 15, 0.44);
}

.home-hero--rotator .home-hero__content {
	position: relative;
	padding-bottom: 142px;
}

.home-hero__footer {
	position: absolute;
	right: 0;
	bottom: 28px;
	left: 0;
	display: grid;
	grid-template-columns: minmax(190px, 1fr) auto;
	align-items: end;
	gap: clamp(28px, 4vw, 68px);
}

.home-hero--rotator .home-hero__location {
	position: static;
	width: auto;
	margin: 0;
	padding: 0 0 11px;
}

.home-hero__showcase-controls {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: end;
}

.home-hero__showcase-control {
	display: grid;
	grid-template-columns: auto 42px;
	align-items: center;
	gap: 9px;
	min-width: 64px;
	padding: 10px 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.58);
	font: inherit;
	cursor: pointer;
	transition: color 180ms ease;
}

.home-hero__showcase-control:hover,
.home-hero__showcase-control:focus-visible,
.home-hero__showcase-control.is-active {
	color: var(--paper);
}

.home-hero__showcase-number {
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.home-hero__showcase-progress {
	position: relative;
	display: block;
	width: 42px;
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.36);
}

.home-hero__showcase-progress::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left center;
}

.home-hero__showcase-control.is-active .home-hero__showcase-progress::after {
	animation: byk-home-hero-progress var(--hero-interval) linear forwards;
}

.home-hero--rotator.is-paused .home-hero__showcase-progress::after {
	animation-play-state: paused;
}

@keyframes byk-home-hero-progress {
	to { transform: scaleX(1); }
}

@media (max-width: 1000px) {
	.home-hero__footer {
		grid-template-columns: minmax(150px, 1fr) auto;
		gap: 28px;
	}

	.home-hero__showcase-controls {
		gap: 12px;
	}
}

@media (max-width: 720px) {
	.home-hero--rotator .home-hero__content {
		padding-bottom: 108px;
	}

	.home-hero__slide img {
		object-position: 58% center;
	}

	.home-hero__footer {
		bottom: 18px;
		display: block;
	}

	.home-hero--rotator .home-hero__location {
		display: none;
	}

	.home-hero__showcase-controls {
		justify-content: flex-start;
		justify-self: start;
		gap: 14px;
	}

	.home-hero__showcase-control {
		grid-template-columns: auto 34px;
		gap: 7px;
		min-width: 50px;
		padding-block: 8px;
	}

	.home-hero__showcase-progress {
		width: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__slide,
	.home-hero__slide.is-active {
		transition: none;
	}

	.home-hero__slide.is-active img,
	.home-hero__showcase-control.is-active .home-hero__showcase-progress::after {
		animation: none;
		transform: none;
	}
}

/* Precision Grid Home system: v0.8.1. */
:root {
	--ink: #171817;
	--paper: #f8f8f5;
	--mist: #ecefeb;
	--gold: #b78338;
	--gold-dark: #86591f;
	--muted: #687378;
	--line: #cdd2ce;
	--radius: 6px;
	--header-height: 88px;
}

body {
	overflow-x: hidden;
}

.site-header {
	height: var(--header-height);
	background: rgba(248, 248, 245, 0.97);
	border-color: rgba(23, 24, 23, 0.12);
	backdrop-filter: blur(14px);
}

.has-transparent-header .site-header {
	background: linear-gradient(180deg, rgba(10, 12, 11, 0.48), rgba(10, 12, 11, 0.08));
	border-color: rgba(255, 255, 255, 0.22);
	backdrop-filter: none;
}

.site-header.is-scrolled,
.has-transparent-header .site-header.is-scrolled {
	background: rgba(248, 248, 245, 0.97);
	border-color: rgba(23, 24, 23, 0.12);
	box-shadow: 0 12px 34px rgba(23, 24, 23, 0.07);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	width: auto;
	height: 54px;
	gap: 12px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: inherit;
	text-decoration: none;
}

.site-brand__mark {
	display: grid;
	width: 78px;
	height: 48px;
	padding: 5px 8px;
	place-items: center;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(23, 24, 23, 0.09);
	border-radius: 2px;
}

.site-brand__name {
	font-size: 12px;
	font-weight: 680;
	line-height: 1.2;
	white-space: nowrap;
}

.primary-menu {
	gap: clamp(14px, 1.65vw, 25px);
}

.primary-menu a {
	font-size: 12px;
	font-weight: 620;
}

.header-navigation {
	gap: 22px;
}

.header-cta {
	min-height: 48px;
	padding-inline: 21px;
}

.home-hero {
	height: 100svh;
	min-height: 720px;
	max-height: 920px;
	background: var(--ink);
	overflow: hidden;
}

.home-hero__slides {
	z-index: 0;
}

.home-hero__slide {
	transition: opacity 800ms ease, visibility 0s linear 800ms;
}

.home-hero__slide.is-active {
	transition: opacity 800ms ease, visibility 0s linear 0s;
}

.home-hero__slide.is-active img {
	animation: byk-home-hero-drift 12s cubic-bezier(0.18, 0.72, 0.28, 1) both;
}

.home-hero--rotator .home-hero__overlay {
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(11, 13, 12, 0.64) 0%, rgba(11, 13, 12, 0.38) 45%, rgba(11, 13, 12, 0.16) 78%),
		linear-gradient(0deg, rgba(11, 13, 12, 0.46) 0%, transparent 48%);
}

.home-hero__grid {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 96px;
	left: 0;
	z-index: 3;
	pointer-events: none;
	background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255, 255, 255, 0.14) calc(100% - 1px));
	background-size: 25% 100%;
}

.home-hero--rotator .home-hero__content {
	position: relative;
	z-index: 4;
	justify-content: flex-end;
	padding-block: calc(var(--header-height) + 74px) 178px;
}

.home-hero__copy {
	width: min(720px, 68%);
}

.home-hero__eyebrow {
	margin-bottom: 20px;
	color: #d8a555;
	font-size: 11px;
	font-weight: 760;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-hero h1 {
	max-width: 720px;
	margin-bottom: 26px;
	font-size: 76px;
	font-weight: 590;
	line-height: 1;
}

.home-hero__copy > p:not(.home-hero__eyebrow) {
	max-width: 540px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	line-height: 1.55;
}

.home-hero__actions {
	gap: 10px;
}

.home-hero__actions .button {
	min-height: 52px;
	padding-inline: 21px;
	border-radius: 4px;
}

.home-hero__rail {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	height: 96px;
	background: rgba(18, 20, 19, 0.94);
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(12px);
}

.home-hero__showcase-controls {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	height: 100%;
	gap: 0;
}

.home-hero__showcase-control {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: 100%;
	min-width: 0;
	min-height: 96px;
	gap: 15px;
	padding: 18px clamp(20px, 2.4vw, 40px);
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: rgba(255, 255, 255, 0.65);
	text-align: left;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.home-hero__showcase-control:last-child {
	border-right: 0;
}

.home-hero__showcase-control:hover,
.home-hero__showcase-control:focus-visible,
.home-hero__showcase-control.is-active {
	background: rgba(255, 255, 255, 0.035);
	color: #ffffff;
}

.home-hero__showcase-number {
	color: rgba(255, 255, 255, 0.56);
	font-size: 23px;
	font-weight: 500;
}

.home-hero__showcase-control.is-active .home-hero__showcase-number {
	color: #d59a43;
}

.home-hero__showcase-label {
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

.home-hero__showcase-arrow {
	font-size: 21px;
	transition: transform 180ms ease;
}

.home-hero__showcase-control:hover .home-hero__showcase-arrow,
.home-hero__showcase-control:focus-visible .home-hero__showcase-arrow {
	transform: translateX(4px);
}

.home-hero__showcase-progress {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: auto;
	height: 2px;
	background: transparent;
}

.home-hero__showcase-progress::after {
	background: #d59a43;
}

.product-index {
	padding-block: 122px 136px;
	background: #f3f3ef;
}

.product-index__header {
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	align-items: end;
	gap: 74px;
	margin-bottom: 76px;
}

.product-index__header h2 {
	max-width: 690px;
	font-size: 56px;
	line-height: 1.03;
}

.product-index__header > p {
	max-width: 410px;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.65;
}

.product-index__layout {
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 80px;
}

.product-index__list {
	border-color: rgba(23, 24, 23, 0.78);
}

.product-index__item {
	grid-template-columns: 34px minmax(0, 1fr) 24px;
	min-height: 96px;
	gap: 14px;
	padding: 0;
	color: #687378;
	transition: color 180ms ease;
}

.product-index__item:hover,
.product-index__item:focus-visible,
.product-index__item.is-active {
	padding-left: 0;
	color: var(--ink);
}

.product-index__number {
	font-size: 13px;
	font-weight: 650;
}

.product-index__item.is-active .product-index__number {
	color: var(--gold);
}

.product-index__item-copy {
	display: block;
}

.product-index__item-copy strong {
	font-size: 19px;
	font-weight: 570;
	line-height: 1.2;
}

.product-index__item-copy small {
	display: none;
}

.product-index__arrow {
	display: grid;
	width: 24px;
	height: 28px;
	place-items: center;
	border: 0;
	border-radius: 0;
	font-size: 20px;
	transition: color 180ms ease, transform 180ms ease;
}

.product-index__item:hover .product-index__arrow,
.product-index__item:focus-visible .product-index__arrow,
.product-index__item.is-active .product-index__arrow {
	background: transparent;
	color: var(--gold);
	transform: translateX(4px);
}

.product-index__measure {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	color: var(--muted);
}

.product-index__measure > span {
	height: 1px;
	background: rgba(23, 24, 23, 0.56);
}

.product-index__measure small {
	font-size: 10px;
	font-weight: 680;
	line-height: 1;
}

.product-index__preview-media {
	aspect-ratio: 16 / 10;
	background: var(--ink);
}

.product-index__preview-media img {
	transition: opacity 220ms ease, transform 600ms cubic-bezier(0.22, 0.68, 0.25, 1);
}

.product-index__preview:hover .product-index__preview-media img {
	transform: scale(1.012);
}

.product-index__preview-caption {
	padding-top: 22px;
	border-top: 0;
}

.product-index__preview-caption > span:first-child {
	grid-template-columns: minmax(120px, 0.28fr) minmax(0, 0.72fr);
	gap: 0;
}

.product-index__preview-caption strong {
	padding-right: 28px;
	font-size: 20px;
}

.product-index__preview-caption small {
	min-height: 38px;
	padding-left: 28px;
	border-left: 1px solid rgba(23, 24, 23, 0.28);
	font-size: 13px;
	line-height: 1.55;
}

body.has-home-intro::before,
body.has-home-intro::after {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 900;
	width: 50%;
	pointer-events: none;
	background: var(--ink);
	content: "";
	will-change: transform;
}

body.has-home-intro::before {
	left: 0;
	animation: byk-home-panel-left 560ms cubic-bezier(0.66, 0, 0.2, 1) 70ms both;
}

body.has-home-intro::after {
	right: 0;
	animation: byk-home-panel-right 560ms cubic-bezier(0.66, 0, 0.2, 1) 70ms both;
}

.has-home-intro .home-hero__copy > * {
	animation: byk-home-copy-enter 480ms cubic-bezier(0.2, 0.72, 0.24, 1) 390ms both;
}

.has-home-intro .home-hero__copy > :nth-child(2) {
	animation-delay: 440ms;
}

.has-home-intro .home-hero__copy > :nth-child(3) {
	animation-delay: 490ms;
}

.has-home-intro .home-hero__copy > :nth-child(4) {
	animation-delay: 540ms;
}

.has-home-intro .home-hero__rail {
	animation: byk-home-rail-enter 420ms ease 520ms both;
}

@keyframes byk-home-panel-left {
	to { transform: translateX(-101%); }
}

@keyframes byk-home-panel-right {
	to { transform: translateX(101%); }
}

@keyframes byk-home-copy-enter {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes byk-home-rail-enter {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

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

	.home-hero h1 {
		font-size: 68px;
	}

	.product-index__layout {
		grid-template-columns: 210px minmax(0, 1fr);
		gap: 58px;
	}
}

@media (max-width: 1100px) {
	:root { --header-height: 74px; }

	.site-header,
	.site-header.is-scrolled,
	.has-transparent-header .site-header,
	.has-transparent-header .site-header.is-scrolled {
		background: rgba(248, 248, 245, 0.98);
		color: var(--ink);
		border-color: var(--line);
		backdrop-filter: none;
	}

	.site-brand {
		height: 48px;
	}

	.site-brand__mark {
		width: 76px;
		height: 46px;
	}

	.home-hero {
		min-height: 680px;
		max-height: 860px;
	}

	.home-hero h1 {
		font-size: 62px;
	}

	.product-index__header h2 {
		font-size: 50px;
	}
}

@media (max-width: 980px) {
	.product-index__header,
	.product-index__layout {
		grid-template-columns: 1fr;
	}

	.product-index__header {
		gap: 28px;
		margin-bottom: 54px;
	}

	.product-index__layout {
		gap: 54px;
	}

	.product-index__list {
		max-width: 620px;
	}
}

@media (max-width: 720px) {
	.home-hero {
		height: 760px;
		min-height: 660px;
		max-height: 820px;
	}

	.home-hero__grid {
		display: none;
	}

	.product-range-hero__grid {
		display: none;
	}

	.home-hero--rotator .home-hero__content {
		justify-content: flex-end;
		padding-block: calc(var(--header-height) + 52px) 132px;
	}

	.home-hero__copy {
		width: 100%;
	}

	.home-hero__eyebrow {
		margin-bottom: 15px;
		font-size: 10px;
	}

	.home-hero h1 {
		max-width: 520px;
		margin-bottom: 21px;
		font-size: 48px;
		line-height: 1.02;
	}

	.home-hero__copy > p:not(.home-hero__eyebrow) {
		max-width: 470px;
		margin-bottom: 26px;
		font-size: 16px;
	}

	.home-hero__actions {
		flex-direction: row;
	}

	.home-hero__actions .button {
		width: auto;
		min-height: 48px;
		padding-inline: 16px;
	}

	.home-hero__rail {
		height: 80px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
	}

	.home-hero__rail::-webkit-scrollbar {
		display: none;
	}

	.home-hero__showcase-controls {
		display: flex;
		width: max-content;
		min-width: 100%;
	}

	.home-hero__showcase-control {
		flex: 0 0 164px;
		min-height: 80px;
		gap: 10px;
		padding: 14px 16px;
	}

	.home-hero__showcase-number {
		font-size: 17px;
	}

	.home-hero__showcase-label {
		font-size: 12px;
	}

	.home-hero__showcase-arrow {
		font-size: 16px;
	}

	.product-index {
		padding-block: 84px 94px;
	}

	.product-index__header h2 {
		font-size: 40px;
	}

	.product-index__header > p {
		font-size: 15px;
	}

	.product-index__layout {
		gap: 0;
	}

	.product-index__item {
		grid-template-columns: 30px 104px minmax(0, 1fr) 26px;
		gap: 12px;
		min-height: 126px;
		padding-block: 12px;
	}

	.product-index__mobile-media {
		display: grid;
		width: 104px;
		aspect-ratio: 4 / 3;
		place-items: center;
		overflow: hidden;
		background: var(--ink);
		color: var(--paper);
	}

	.product-index__item-copy strong {
		font-size: 23px;
	}

	.product-index__preview {
		display: none;
	}

	body.has-home-intro::before {
		width: 100%;
		animation: byk-home-mobile-fade 260ms ease 60ms both;
	}

	body.has-home-intro::after {
		display: none;
	}

	.has-home-intro .home-hero__copy > * {
		animation-delay: 180ms;
	}

	.has-home-intro .home-hero__rail {
		animation-delay: 230ms;
	}
}

@media (max-width: 430px) {
	.home-hero h1 {
		font-size: 43px;
	}

	.home-hero__copy > p:not(.home-hero__eyebrow) {
		font-size: 15px;
	}

	.home-hero__actions .button {
		font-size: 12px;
	}

	.product-index__item {
		grid-template-columns: 26px 88px minmax(0, 1fr) 24px;
		gap: 10px;
	}

	.product-index__mobile-media {
		width: 88px;
	}

	.product-index__item-copy strong {
		font-size: 20px;
	}
}

@keyframes byk-home-mobile-fade {
	from { opacity: 1; }
	to { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	body.has-home-intro::before,
	body.has-home-intro::after {
		display: none;
	}

	.has-home-intro .home-hero__copy > *,
	.has-home-intro .home-hero__rail {
		animation: none;
	}
}
