/*
 * BUNORR theme styles.
 * All values transcribed from the approved design references
 * (BUNORR.dc.html, Product Detail.dc.html). Tokens first, then components.
 */

/* ------------------------------------------------------------------ */
/* Tokens                                                              */
/* ------------------------------------------------------------------ */

:root {
	--bn-bg: #F4F1EA;
	--bn-ink: #15130F;
	--bn-accent: #573219;
	--bn-card: #E9E4D9;
	--bn-paper: rgba(244, 241, 234, 0.88);
	--bn-muted-50: rgba(21, 19, 15, 0.5);
	--bn-muted-55: rgba(21, 19, 15, 0.55);
	--bn-muted-70: rgba(21, 19, 15, 0.7);
	--bn-muted-85: rgba(21, 19, 15, 0.85);
	--bn-hairline: rgba(21, 19, 15, 0.25);
	--bn-hairline-light: rgba(21, 19, 15, 0.15);
	--bn-gutter: 24px;
	--bn-font: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
	--bn-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ */
/* Base                                                                */
/* ------------------------------------------------------------------ */

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

html {
	scroll-behavior: smooth;
	/* Stop iOS Safari inflating large type after layout — without this
	   the fitted wordmark overflows the viewport on real iPhones. */
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: var(--bn-bg);
	color: var(--bn-ink);
	font-family: var(--bn-font);
	font-size: 14px;
	line-height: 1.45;
	letter-spacing: 0.005em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

::selection {
	background: var(--bn-ink);
	color: var(--bn-bg);
}

/* Fabric grain: a fixed noise wash over everything, so the ivory reads
   as cloth rather than a flat hex. Tune or remove via --bn-grain-opacity. */

body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
	opacity: var(--bn-grain-opacity, 0.05);
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 240px 240px;
}

a {
	-webkit-tap-highlight-color: transparent;
	color: inherit;
}

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

:focus-visible {
	outline: 2px solid var(--bn-ink);
	outline-offset: 3px;
}

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

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.bn-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--bn-ink);
	color: var(--bn-bg);
	padding: 12px 20px;
	font-size: 13px;
	text-decoration: none;
}

.bn-skip-link:focus {
	left: var(--bn-gutter);
}

/* ------------------------------------------------------------------ */
/* Shared: eyebrow, dividers, dots                                     */
/* ------------------------------------------------------------------ */

.bn-eyebrow {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bn-muted-55);
}

.bn-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bn-accent);
	display: inline-block;
	flex-shrink: 0;
}

.bn-rule-heavy {
	margin: 0 var(--bn-gutter);
	border-top: 5px solid var(--bn-ink);
}

.bn-rule-thin {
	margin: 0 var(--bn-gutter);
	border-top: 1px solid var(--bn-hairline);
}

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */

.bn-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px var(--bn-gutter);
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bn-paper);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.bn-header__logo {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.bn-header__logo img {
	height: 58px;
	width: auto;
	display: block;
}

.single-product .bn-header__logo img {
	height: 42px;
}

.bn-header__nav {
	display: flex;
	gap: 36px;
	align-items: center;
}

.bn-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 36px;
	align-items: center;
}

.bn-header__nav a {
	color: var(--bn-ink);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.bn-header__nav a:hover {
	color: var(--bn-accent);
}

.bn-header__dots {
	display: inline-flex;
	gap: 5px;
	align-items: center;
}

.bn-header__dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: inline-block;
}

.bn-header__dots span:nth-child(1) {
	background: var(--bn-ink);
}

.bn-header__dots span:nth-child(2) {
	border: 1px solid var(--bn-ink);
}

.bn-header__dots span:nth-child(3) {
	background: var(--bn-accent);
}

/* ------------------------------------------------------------------ */
/* Homepage: wordmark hero + meta row                                  */
/* ------------------------------------------------------------------ */

.bn-hero {
	padding: 2vw var(--bn-gutter) 0 var(--bn-gutter);
	overflow: hidden;
	position: relative;
}

.bn-wordmark {
	position: relative;
}

.bn-wordmark__chars {
	display: inline-flex;
	align-items: flex-end;
	overflow: hidden;
}

.bn-wordmark__char {
	display: inline-block;
}

/* Entrance: letters rise out of a mask, staggered left to right. The
   fit script adds .bn-ready only after the size has settled. */

html.bn-js .bn-wordmark .bn-wordmark__char {
	transform: translateY(115%);
	transition: transform 0.9s var(--bn-ease);
	transition-delay: calc(var(--bn-char, 0) * 55ms);
}

html.bn-js .bn-wordmark.bn-ready .bn-wordmark__char {
	transform: none;
}

html.bn-js .bn-wordmark .bn-wordmark__reg {
	opacity: 0;
	transition: opacity 0.6s ease 0.6s;
}

html.bn-js .bn-wordmark.bn-ready .bn-wordmark__reg {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	html.bn-js .bn-wordmark .bn-wordmark__char,
	html.bn-js .bn-wordmark .bn-wordmark__reg {
		transform: none;
		opacity: 1;
		transition: none;
	}
}

.bn-wordmark {
	margin: 0;
	font-size: 21vw;
	line-height: 0.85;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--bn-ink);
	text-transform: uppercase;
	white-space: nowrap;
	display: flex;
	align-items: flex-end;
}

.bn-wordmark__reg {
	font-size: 0.1em;
	letter-spacing: 0;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0.06em;
	margin-left: 0.13em;
	flex-shrink: 0;
}

.bn-hero__rule {
	margin: 28px var(--bn-gutter) 0 var(--bn-gutter);
	border-top: 5px solid var(--bn-ink);
}

.bn-meta {
	display: grid;
	grid-template-columns: 1fr 1.6fr 1.6fr;
	gap: var(--bn-gutter);
	padding: 18px var(--bn-gutter) 64px var(--bn-gutter);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bn-meta__label {
	color: var(--bn-ink);
}

.bn-meta__studio-title {
	color: var(--bn-muted-50);
	margin-bottom: 10px;
}

.bn-meta__blurb {
	margin: 0;
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 13px;
	line-height: 1.55;
	max-width: 420px;
	color: var(--bn-ink);
}

.bn-meta__copyright {
	color: var(--bn-muted-50);
	margin-top: 6px;
}

.bn-meta__menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bn-meta__menu-list a {
	color: var(--bn-ink);
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 2px 0;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	transition: color 0.3s ease, background-size 0.5s var(--bn-ease);
}

.bn-meta__menu-list a:hover {
	color: var(--bn-accent);
	background-size: 100% 1px;
}

/* Category / tag archive header (term pages reuse the shop grid). */

.bn-archive-header {
	padding: 24px var(--bn-gutter) 48px var(--bn-gutter);
}

.bn-archive-header h1 {
	margin: 10px 0 0 0;
	font-size: clamp(38px, 6vw, 88px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--bn-ink);
}

.bn-archive-header__intro {
	margin: 20px 0 0 0;
	font-size: 15px;
	line-height: 1.6;
	max-width: 34em;
	color: var(--bn-muted-70);
}

/* ------------------------------------------------------------------ */
/* Product grid (shop archive / homepage)                              */
/* ------------------------------------------------------------------ */

.bn-shop {
	padding: 0 var(--bn-gutter) 140px var(--bn-gutter);
}

ul.products.bn-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: var(--bn-gutter);
	row-gap: 96px;
	align-items: end;
}

.bn-grid li.product {
	grid-column: span 2;
	margin: 0;
}

/* Every 5th product is the wide "feature" card (5:4). */
.bn-grid li.product:nth-child(5n) {
	grid-column: span 4;
}

.bn-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bn-card__media {
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
	aspect-ratio: 4 / 5;
}

.bn-grid li.product:nth-child(5n) .bn-card__media {
	aspect-ratio: 5 / 4;
}

.bn-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1.2s var(--bn-ease);
}

.bn-card__link:hover .bn-card__media img,
.bn-card__link:focus-visible .bn-card__media img {
	transform: scale(1.035);
}

/* Hover crossfade: the first gallery image (detail shot) fades in over
   the featured image, the Zara-style second frame. */

.bn-card__media img.bn-card__alt {
	opacity: 0;
	transition: opacity 0.7s ease, transform 1.2s var(--bn-ease);
}

.bn-card__link:hover .bn-card__media img.bn-card__alt,
.bn-card__link:focus-visible .bn-card__media img.bn-card__alt {
	opacity: 1;
}

/* Badges: quiet uppercase labels from product tags ("New Launch",
   "Best Seller", …), overlaid on card imagery. */

.bn-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	gap: 6px;
	z-index: 1;
}

.bn-badge {
	display: inline-block;
	background: var(--bn-paper);
	color: var(--bn-ink);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 10px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.bn-badge--inline {
	background: none;
	color: var(--bn-accent);
	padding: 0;
	font-size: 10px;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.bn-eyebrow-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.bn-card__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 14px;
	gap: 12px;
}

.bn-card__name,
.bn-card__price {
	font-size: 15px;
	font-weight: 400;
	color: var(--bn-ink);
}

.bn-card__price .woocommerce-Price-amount {
	font-weight: 400;
}

.bn-card .bn-eyebrow {
	margin-top: 6px;
}

/* ------------------------------------------------------------------ */
/* Product detail                                                      */
/* ------------------------------------------------------------------ */

.bn-breadcrumb {
	padding: 18px var(--bn-gutter) 0 var(--bn-gutter);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bn-muted-50);
	display: flex;
	gap: 8px;
	align-items: center;
}

.bn-breadcrumb a {
	color: var(--bn-muted-50);
	text-decoration: none;
	transition: color 0.3s ease;
}

.bn-breadcrumb a:hover {
	color: var(--bn-ink);
}

.bn-breadcrumb .bn-breadcrumb__current {
	color: var(--bn-ink);
}

.bn-product {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 48px;
	padding: var(--bn-gutter) var(--bn-gutter) 96px var(--bn-gutter);
	align-items: start;
}

/* Gallery */

.bn-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.bn-gallery__item {
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
	aspect-ratio: 4 / 5;
	cursor: zoom-in;
	padding: 0;
	border: 0;
	appearance: none;
	font: inherit;
	display: block;
	width: 100%;
}

.bn-gallery__item:first-child {
	grid-column: 1 / -1;
}

.bn-gallery__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s var(--bn-ease);
}

.bn-gallery__item.bn-zoomed {
	cursor: zoom-out;
}

.bn-gallery__item.bn-zoomed img {
	transform: scale(1.7);
}

/* Info column */

.bn-product__info {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
}

.bn-product__info .product_title {
	margin: 14px 0 0 0;
	font-size: clamp(32px, 4.5vw, 56px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--bn-ink);
}

.bn-product__info .price {
	margin: 14px 0 0 0;
	font-size: 22px;
	font-weight: 500;
	color: var(--bn-ink);
}

.bn-product__info .woocommerce-product-details__short-description {
	max-width: 32em;
}

.bn-product__info .woocommerce-product-details__short-description p {
	margin: 28px 0 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--bn-muted-85);
}

/* WhatsApp CTA */

.bn-wa-btn {
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--bn-ink);
	color: var(--bn-bg);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 18px 28px;
	min-height: 56px;
	transition: background 0.3s ease;
	border: 0;
	cursor: pointer;
}

.bn-wa-btn:hover,
.bn-wa-btn:focus-visible {
	background: var(--bn-accent);
	color: var(--bn-bg);
}

.bn-wa-note {
	margin-top: 12px;
	font-size: 12px;
	color: var(--bn-muted-50);
	text-align: center;
}

/* Native add-to-cart (purchase mode: native) inherits the CTA look. */

.bn-product__info form.cart {
	margin-top: 36px;
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.bn-product__info form.cart .quantity input.qty {
	height: 100%;
	min-height: 56px;
	width: 72px;
	border: 1px solid var(--bn-ink);
	background: transparent;
	font-family: var(--bn-font);
	font-size: 15px;
	text-align: center;
	color: var(--bn-ink);
}

.bn-product__info form.cart .single_add_to_cart_button {
	flex: 1;
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bn-ink);
	color: var(--bn-bg);
	font-family: var(--bn-font);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 18px 28px;
	min-height: 56px;
	border: 0;
	cursor: pointer;
	transition: background 0.3s ease;
}

.bn-product__info form.cart .single_add_to_cart_button:hover {
	background: var(--bn-accent);
}

/* Spec table */

.bn-specs {
	margin: 44px 0 0 0;
	border-top: 1px solid var(--bn-hairline);
}

.bn-specs dt,
.bn-specs dd {
	margin: 0;
}

.bn-specs__row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 12px 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--bn-hairline-light);
	font-size: 13px;
}

.bn-specs__row:last-child {
	border-bottom: 0;
}

.bn-specs__label {
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 10px;
	color: var(--bn-muted-50);
	padding-top: 2px;
}

.bn-specs__value {
	white-space: pre-line;
}

/* ------------------------------------------------------------------ */
/* Statement + footer (shared)                                         */
/* ------------------------------------------------------------------ */

.bn-statement-section {
	padding: 56px var(--bn-gutter) 64px var(--bn-gutter);
}

.bn-statement {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
}

.bn-statement h2 {
	margin: 0;
	font-size: clamp(38px, 6vw, 88px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.03em;
	max-width: 12em;
	text-wrap: balance;
	color: var(--bn-ink);
}

.bn-statement img {
	height: clamp(150px, 19vw, 280px);
	width: auto;
	display: block;
	flex-shrink: 0;
}

.bn-footer {
	padding: 0 var(--bn-gutter) 40px var(--bn-gutter);
}

.bn-footer__brand {
	margin: 0;
	padding: 48px 0 40px 0;
	font-size: clamp(17px, 2vw, 24px);
	line-height: 1.4;
	max-width: 34em;
	color: var(--bn-ink);
}

.bn-footer__rule {
	border-top: 1px solid var(--bn-hairline);
	margin: 0 0 40px 0;
}

.bn-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr 1fr;
	gap: var(--bn-gutter);
	font-size: 12px;
	letter-spacing: 0.03em;
}

.bn-footer-grid img {
	height: 64px;
	width: auto;
	display: block;
}

.bn-footer__copyright {
	color: var(--bn-muted-50);
	margin-top: 12px;
}

.bn-footer__delivery {
	color: var(--bn-muted-70);
	line-height: 1.7;
}

.bn-footer-links,
.bn-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bn-footer-links a,
.bn-footer__social a {
	color: var(--bn-ink);
	text-decoration: none;
	padding: 2px 0;
	transition: color 0.3s ease;
}

.bn-footer-links a:hover,
.bn-footer__social a:hover {
	color: var(--bn-accent);
}

/* ------------------------------------------------------------------ */
/* Editorial pages (Shipping & Care, Privacy, Contact)                 */
/* ------------------------------------------------------------------ */

.bn-page {
	padding: 40px var(--bn-gutter) 96px var(--bn-gutter);
	max-width: 820px;
}

.bn-page h1 {
	font-size: clamp(32px, 4.5vw, 56px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 32px 0;
}

.bn-page .bn-page__content {
	font-size: 15px;
	line-height: 1.6;
	color: var(--bn-muted-85);
}

.bn-page .bn-page__content a {
	color: var(--bn-ink);
}

.bn-page .bn-page__content a:hover {
	color: var(--bn-accent);
}

/* ------------------------------------------------------------------ */
/* WooCommerce notices (minimal, on-brand)                             */
/* ------------------------------------------------------------------ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	list-style: none;
	margin: 0 var(--bn-gutter) 24px var(--bn-gutter);
	padding: 14px 18px;
	border: 1px solid var(--bn-hairline);
	font-size: 13px;
	background: var(--bn-card);
}

/* ------------------------------------------------------------------ */
/* Motion layer                                                        */
/*                                                                     */
/* Transform/opacity only (compositor-friendly, zero CLS). Everything  */
/* is gated on html.bn-js so content is never hidden without JS, and   */
/* prefers-reduced-motion disables it entirely.                        */
/* ------------------------------------------------------------------ */

html.bn-js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.9s var(--bn-ease),
		transform 0.9s var(--bn-ease);
	transition-delay: var(--bn-reveal-delay, 0s);
}

html.bn-js [data-reveal].bn-inview {
	opacity: 1;
	transform: none;
}

/* Variant: heavy rules draw in from the left instead of rising. */

html.bn-js [data-reveal='rule'] {
	opacity: 1;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1.1s var(--bn-ease);
	transition-delay: var(--bn-reveal-delay, 0.15s);
}

html.bn-js [data-reveal='rule'].bn-inview {
	transform: none;
}

/* Cross-page transitions (Chrome 126+ / Safari 18.2+; a normal load
   elsewhere). The header carries its own view-transition-name, so it
   holds perfectly still while the page content cross-fades and rises
   beneath it — the "app-like" trick. */
@media (prefers-reduced-motion: no-preference) {
	@view-transition {
		navigation: auto;
	}

	.bn-header {
		view-transition-name: bn-header;
	}

	@keyframes bn-vt-out {
		to {
			opacity: 0;
		}
	}

	@keyframes bn-vt-in {
		from {
			opacity: 0;
			transform: translateY(10px);
		}
	}

	::view-transition-old(root) {
		animation: bn-vt-out 0.22s ease both;
	}

	::view-transition-new(root) {
		animation: bn-vt-in 0.38s var(--bn-ease) both;
	}
}

@media (prefers-reduced-motion: reduce) {
	html.bn-js [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Header: hairline fades in once the page scrolls under it. */

.bn-header::after {
	content: '';
	position: absolute;
	left: var(--bn-gutter);
	right: var(--bn-gutter);
	bottom: 0;
	border-bottom: 1px solid var(--bn-hairline-light);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.bn-header.bn-scrolled::after {
	opacity: 1;
}

/* Header logo: settles slightly on press. */

.bn-header__logo img {
	transition: transform 0.6s var(--bn-ease);
}

.bn-header__logo:hover img {
	transform: scale(1.04);
}

.bn-header__logo:active img {
	transform: scale(0.97);
}

/* Sliding underline for footer + breadcrumb links. */

.bn-footer-links a,
.bn-footer__social a,
.bn-breadcrumb a {
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	transition: color 0.3s ease, background-size 0.5s var(--bn-ease);
}

.bn-footer-links a:hover,
.bn-footer__social a:hover,
.bn-breadcrumb a:hover {
	background-size: 100% 1px;
}

/* Buttons: gentle settle on press. */

.bn-wa-btn,
.bn-product__info form.cart .single_add_to_cart_button {
	transition: background 0.3s ease, transform 0.25s var(--bn-ease);
}

.bn-wa-btn:active,
.bn-product__info form.cart .single_add_to_cart_button:active {
	transform: scale(0.985);
}

/* Product cards: name drifts to the accent alongside the image scale. */

.bn-card__name {
	transition: color 0.4s ease;
}

.bn-card__link:hover .bn-card__name {
	color: var(--bn-accent);
}

/* ------------------------------------------------------------------ */
/* Subtle brand color touches                                          */
/* ------------------------------------------------------------------ */

/* The statement's "by hand" underline carries the accent. */

.bn-statement h2 u {
	text-decoration-color: var(--bn-accent);
	text-decoration-thickness: 0.055em;
	text-underline-offset: 0.09em;
}

/* ------------------------------------------------------------------ */
/* Blog — archive (home.php / archive.php)                             */
/* ------------------------------------------------------------------ */

.bn-blog {
	padding: 16px var(--bn-gutter) 120px var(--bn-gutter);
}

.bn-blog__header {
	padding: 24px 0 40px 0;
}

.bn-blog__header h1 {
	margin: 10px 0 0 0;
	font-size: clamp(38px, 6vw, 88px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--bn-ink);
}

.bn-blog__intro {
	margin: 20px 0 0 0;
	font-size: 15px;
	line-height: 1.6;
	max-width: 34em;
	color: var(--bn-muted-70);
}

/* Image-led card grid: the first card spans the full row (editorial
   feature), the rest sit two across. */

.bn-blog__grid {
	list-style: none;
	margin: 0;
	padding: 40px 0 0 0;
	border-top: 1px solid var(--bn-hairline);
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: var(--bn-gutter);
	row-gap: 72px;
	align-items: start;
}

.bn-blog__card:first-child {
	grid-column: 1 / -1;
}

.bn-blog__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bn-blog__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
}

.bn-blog__card:first-child .bn-blog__media {
	aspect-ratio: 21 / 9;
}

.bn-blog__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--bn-ease);
}

.bn-blog__card-link:hover .bn-blog__media img,
.bn-blog__card-link:focus-visible .bn-blog__media img {
	transform: scale(1.035);
}

.bn-blog__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bn-muted-55);
}

.bn-blog__card .bn-blog__meta {
	margin-top: 18px;
}

.bn-blog__title {
	margin: 12px 0 0 0;
	font-size: clamp(20px, 2.4vw, 30px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--bn-ink);
	transition: color 0.4s ease;
	max-width: 22em;
}

.bn-blog__card:first-child .bn-blog__title {
	font-size: clamp(24px, 3.2vw, 40px);
}

.bn-blog__card-link:hover .bn-blog__title {
	color: var(--bn-accent);
}

.bn-blog__excerpt {
	margin: 12px 0 0 0;
	font-size: 14px;
	line-height: 1.6;
	max-width: 40em;
	color: var(--bn-muted-70);
}

.bn-blog__more {
	display: inline-block;
	margin-top: 16px;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bn-ink);
	transition: color 0.3s ease, transform 0.4s var(--bn-ease);
}

.bn-blog__card-link:hover .bn-blog__more {
	color: var(--bn-accent);
	transform: translateX(4px);
}

/* Archive pagination (appears only once the blog outgrows a page). */

.bn-blog .pagination {
	margin-top: 48px;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bn-blog .pagination .nav-links {
	display: flex;
	gap: 20px;
}

.bn-blog .pagination a,
.bn-blog .pagination .current {
	color: var(--bn-ink);
	text-decoration: none;
	padding: 2px 0;
}

.bn-blog .pagination a:hover {
	color: var(--bn-accent);
}

.bn-blog .pagination .current {
	border-bottom: 1px solid var(--bn-ink);
}

/* ------------------------------------------------------------------ */
/* Blog — single post (single.php)                                     */
/* ------------------------------------------------------------------ */

.bn-post {
	padding: 8px var(--bn-gutter) 96px var(--bn-gutter);
}

.bn-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 720px) 300px;
	justify-content: center;
	gap: 72px;
	align-items: start;
}

.bn-post__main {
	min-width: 0;
	max-width: 720px;
}

.bn-post__header {
	padding: 40px 0 8px 0;
}

.bn-post__byline {
	margin-top: 18px;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--bn-muted-70);
}

.bn-post__byline a {
	color: var(--bn-ink);
	text-decoration: underline;
	text-decoration-color: var(--bn-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.bn-post__byline a:hover {
	color: var(--bn-accent);
}

/* Rail: one quiet product card, sticky beside the reading column. */

.bn-post__rail {
	position: sticky;
	top: 96px;
	padding-top: 48px;
}

.bn-rail-card {
	border: 1px solid var(--bn-hairline-light);
	padding: 24px;
}

.bn-rail-card__lede {
	margin: 12px 0 18px 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--bn-muted-85);
}

.bn-rail-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bn-rail-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
}

.bn-rail-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--bn-ease);
}

.bn-rail-card__link:hover .bn-rail-card__media img {
	transform: scale(1.035);
}

.bn-rail-card__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin-top: 12px;
	font-size: 14px;
}

.bn-rail-card__name {
	transition: color 0.4s ease;
}

.bn-rail-card__link:hover .bn-rail-card__name {
	color: var(--bn-accent);
}

.bn-rail-card__cta {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bn-ink);
	color: var(--bn-bg);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 14px 20px;
	min-height: 48px;
	transition: background 0.3s ease, transform 0.25s var(--bn-ease);
}

.bn-rail-card__cta:hover,
.bn-rail-card__cta:focus-visible {
	background: var(--bn-accent);
	color: var(--bn-bg);
}

.bn-rail-card__cta:active {
	transform: scale(0.985);
}

.bn-rail-card__note {
	margin: 10px 0 0 0;
	font-size: 11px;
	text-align: center;
	color: var(--bn-muted-50);
}

.bn-post__header .bn-eyebrow {
	color: var(--bn-muted-55);
}

.bn-post__header h1 {
	margin: 18px 0 0 0;
	font-size: clamp(32px, 4.6vw, 60px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--bn-ink);
	text-wrap: balance;
}

.bn-post__media {
	margin: 40px 0 0 0;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
}

.bn-post__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bn-post__content {
	margin-top: 48px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--bn-muted-85);
}

.bn-post__content > * {
	margin: 0 0 1.5em 0;
}

.bn-post__content h2 {
	margin: 2.2em 0 0.8em 0;
	font-size: clamp(21px, 2.4vw, 28px);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--bn-ink);
}

.bn-post__content h3 {
	margin: 2em 0 0.7em 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--bn-ink);
}

.bn-post__content a {
	color: var(--bn-ink);
	text-decoration: underline;
	text-decoration-color: var(--bn-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.bn-post__content a:hover {
	color: var(--bn-accent);
}

.bn-post__content blockquote {
	margin: 2.2em 0;
	padding: 0 0 0 28px;
	border-left: 2px solid var(--bn-accent);
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--bn-ink);
}

.bn-post__content blockquote p {
	margin: 0;
}

.bn-post__content blockquote cite {
	display: block;
	margin-top: 14px;
	font-size: 10px;
	font-style: normal;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bn-muted-55);
}

.bn-post__content ul,
.bn-post__content ol {
	padding-left: 1.2em;
}

.bn-post__content li {
	margin-bottom: 0.5em;
}

.bn-post__content li::marker {
	color: var(--bn-accent);
}

.bn-post__content img {
	display: block;
	width: 100%;
	height: auto;
}

.bn-post__content hr {
	border: 0;
	border-top: 1px solid var(--bn-hairline-light);
	margin: 2.5em 0;
}

/* Categories & tags after the article. */

.bn-post__terms {
	margin-top: 48px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bn-term {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bn-muted-70);
	text-decoration: none;
	border: 1px solid var(--bn-hairline-light);
	padding: 7px 12px;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.bn-term--cat {
	color: var(--bn-accent);
	border-color: var(--bn-accent);
}

.bn-term:hover {
	color: var(--bn-accent);
	border-color: var(--bn-accent);
}

/* Author block (EEAT): name + studio bio. */

.bn-author {
	margin-top: 40px;
	padding: 24px;
	border: 1px solid var(--bn-hairline-light);
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.bn-author img.bn-author__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--bn-card);
}

.bn-author__body {
	min-width: 0;
}

.bn-author__name {
	display: inline-block;
	margin-top: 12px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--bn-ink);
	text-decoration: none;
	transition: color 0.3s ease;
}

.bn-author__name:hover {
	color: var(--bn-accent);
}

.bn-author__bio {
	margin: 10px 0 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--bn-muted-70);
}

.bn-post__footer {
	margin-top: 64px;
	padding-top: 28px;
	border-top: 1px solid var(--bn-hairline);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	font-size: 13px;
}

.bn-post__footer a {
	color: var(--bn-ink);
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	transition: color 0.3s ease, background-size 0.5s var(--bn-ease);
}

.bn-post__footer a:hover {
	background-size: 100% 1px;
	color: var(--bn-accent);
}

/* "More like this" — related articles. */

.bn-related {
	margin-top: 72px;
	border-top: 1px solid var(--bn-hairline);
}

.bn-related__inner {
	max-width: 1092px;
	margin: 0 auto;
}

.bn-related__heading {
	margin: 40px 0 8px 0;
	font-size: clamp(21px, 2.4vw, 28px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--bn-ink);
}

.bn-related__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--bn-gutter);
}

.bn-related__item {
	border-top: 1px solid var(--bn-hairline-light);
}

.bn-related__link {
	display: block;
	padding: 24px 0;
	text-decoration: none;
	color: inherit;
}

.bn-related__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--bn-card);
	position: relative;
	margin-bottom: 16px;
}

.bn-related__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--bn-ease);
}

.bn-related__link:hover .bn-related__media img {
	transform: scale(1.035);
}

.bn-related__title {
	display: block;
	margin-top: 12px;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--bn-ink);
	transition: color 0.4s ease;
}

.bn-related__link:hover .bn-related__title {
	color: var(--bn-accent);
}

.bn-related__excerpt {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.55;
	color: var(--bn-muted-70);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* Contact page                                                        */
/* ------------------------------------------------------------------ */

.bn-contact {
	padding: 40px var(--bn-gutter) 120px var(--bn-gutter);
	max-width: 720px;
}

.bn-contact h1 {
	margin: 14px 0 0 0;
	font-size: clamp(32px, 4.6vw, 60px);
	line-height: 1.04;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.bn-contact__content {
	margin-top: 28px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--bn-muted-85);
	max-width: 34em;
}

.bn-contact__content p {
	margin: 0 0 1.2em 0;
}

.bn-contact .bn-wa-btn {
	max-width: 420px;
}

.bn-contact .bn-wa-note {
	max-width: 420px;
}

.bn-contact__rows {
	margin-top: 56px;
	border-top: 1px solid var(--bn-hairline);
}

.bn-contact__row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 12px 20px;
	padding: 22px 0;
	border-bottom: 1px solid var(--bn-hairline-light);
	font-size: 14px;
}

.bn-contact__label {
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 10px;
	color: var(--bn-muted-50);
	padding-top: 3px;
}

.bn-contact__row a {
	color: var(--bn-ink);
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	transition: color 0.3s ease, background-size 0.5s var(--bn-ease);
}

.bn-contact__row a:hover {
	color: var(--bn-accent);
	background-size: 100% 1px;
}

/* ------------------------------------------------------------------ */
/* Mobile sticky order bar (product pages, ≤860px)                     */
/* ------------------------------------------------------------------ */

.bn-mobile-cta {
	display: none;
}

@media (max-width: 860px) {
	.bn-mobile-cta {
		display: flex;
		align-items: center;
		gap: 16px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		padding: 12px var(--bn-gutter);
		padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		background: var(--bn-paper);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border-top: 1px solid var(--bn-hairline-light);
		transform: translateY(110%);
		transition: transform 0.5s var(--bn-ease);
	}

	body.bn-mobile-cta-visible .bn-mobile-cta {
		transform: none;
	}

	.bn-mobile-cta__info {
		display: flex;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
	}

	.bn-mobile-cta__name {
		font-size: 13px;
		font-weight: 600;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.bn-mobile-cta__price {
		font-size: 12px;
		color: var(--bn-muted-70);
	}

	.bn-mobile-cta__btn {
		margin: 0 0 0 auto;
		min-height: 44px;
		padding: 12px 18px;
		font-size: 13px;
		flex-shrink: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bn-mobile-cta {
		transition: none;
	}
}

/* ------------------------------------------------------------------ */
/* Breakpoint: 860px                                                   */
/* ------------------------------------------------------------------ */

@media (max-width: 860px) {
	.bn-meta {
		grid-template-columns: 1fr 1fr;
		row-gap: 28px;
		padding-bottom: 44px;
	}

	.bn-meta__studio {
		grid-column: 1 / -1;
	}

	ul.products.bn-grid {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}

	.bn-grid li.product,
	.bn-grid li.product:nth-child(5n) {
		grid-column: auto;
	}

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

	.bn-product__info {
		position: static;
		padding-top: 32px;
	}

	.bn-gallery {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.bn-gallery::-webkit-scrollbar {
		display: none;
	}

	.bn-gallery__item {
		flex: 0 0 82%;
		scroll-snap-align: start;
	}

	.bn-gallery__item:first-child {
		grid-column: unset;
	}

	.bn-statement-section {
		padding-bottom: 24px;
	}

	.bn-footer__brand {
		padding-top: 16px;
	}

	.bn-statement {
		justify-content: flex-start;
		gap: 24px;
	}

	.bn-statement h2 {
		flex: 0 1 auto;
		font-size: clamp(19px, 5.4vw, 30px);
		line-height: 1.12;
		max-width: 62%;
	}

	.bn-statement img {
		flex: 0 0 auto;
		height: 96px;
		width: 96px;
	}

	.bn-footer-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 32px;
	}

	.bn-footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

	.bn-blog__grid {
		grid-template-columns: 1fr;
		row-gap: 56px;
	}

	.bn-blog__card:first-child .bn-blog__media {
		aspect-ratio: 3 / 2;
	}

	.bn-post__layout {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.bn-post__rail {
		position: static;
		padding-top: 56px;
		max-width: 420px;
	}

	.bn-related__list {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.bn-post__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* ------------------------------------------------------------------ */
/* Breakpoint: 560px                                                   */
/* ------------------------------------------------------------------ */

@media (max-width: 560px) {
	.bn-meta {
		grid-template-columns: 1fr 1fr;
		row-gap: 22px;
	}

	.bn-meta__brand {
		grid-column: 1;
	}

	.bn-meta__menu {
		grid-column: 2;
	}

	.bn-meta__studio {
		grid-column: 1 / -1;
	}

	.bn-footer-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 32px;
		column-gap: 20px;
	}

	.bn-footer-grid > div:nth-child(1) {
		grid-column: 1 / -1;
	}

	.bn-footer-grid > div:nth-child(2) {
		grid-column: 1 / -1;
	}

	.bn-footer-grid > div:nth-child(3) {
		grid-column: 1;
	}

	.bn-footer-grid > div:nth-child(4) {
		grid-column: 2;
	}
}
