/* =========================================================================
   Bleksmiðjan — front-end theme styles
   Palette CSS vars (--bg, --fg, --accent, …) are emitted per-page in header.php.
   This file only *consumes* them, plus static tokens below.
   ========================================================================= */

:root {
	--font-serif: 'Bodoni Moda', Georgia, serif;
	--font-sans:  'Archivo', system-ui, sans-serif;
	--font-mono:  'Space Mono', ui-monospace, monospace;
	--maxw: 1300px;
	--maxw-wide: 1500px;
	--pad-x: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg, #0a0a0b); }
/* `html body` (specificity 0,0,2) so stray legacy rules like a leftover Divi
   `body{background-color:#e9e9e9}` injected after this file cannot override the
   palette background. Keep the palette var as the single source of truth. */
html body {
	margin: 0;
	background: var(--bg, #0a0a0b);
	color: var(--fg, #e9e4da);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { color: var(--fg, #e9e4da); text-decoration: none; transition: color .25s; }
a:hover { color: var(--accent, #fff); }
img { max-width: 100%; display: block; }
::selection { background: var(--accent, #e9e4da); color: var(--solid-ink, #0a0a0b); }
:focus-visible { outline: 2px solid var(--accent, #c8a24a); outline-offset: 3px; }

@keyframes bkKen  { from { transform: scale(1.03); } to { transform: scale(1.15) translate(-2%, -1.5%); } }
@keyframes bkBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
@keyframes bkRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bkFade { from { opacity: 0; } to { opacity: 1; } }

/* Scroll-reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); }
[data-reveal].is-in {
	opacity: 1; transform: none;
	transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}

/* Custom cursor (added by theme.js on fine pointers) */
.bk-cursor-ring, .bk-cursor-dot {
	position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999;
	transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.bk-cursor-ring {
	width: 34px; height: 34px; border: 1px solid rgba(233,228,218,.6); border-radius: 50%;
	transition: width .22s, height .22s, background .22s;
}
.bk-cursor-dot { width: 5px; height: 5px; background: #e9e4da; border-radius: 50%; }
body.bk-cursor-active { cursor: none; }
body.bk-cursor-active a, body.bk-cursor-active button, body.bk-cursor-active [data-hover] { cursor: none; }

/* ---- Shared type + components -------------------------------------------- */
.bk-kicker {
	display: block; font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .22em; color: var(--mono, #7a756c); text-transform: uppercase;
}
.bk-h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(32px, 4.4vw, 58px); line-height: 1; margin: 16px 0 0; }
.bk-h2--lg { font-size: clamp(34px, 5vw, 68px); }
.bk-h2--xl { font-size: clamp(40px, 6vw, 92px); line-height: .95; margin: 0 0 30px; }
.bk-tag {
	position: absolute; bottom: 12px; left: 12px; font-family: var(--font-mono);
	font-size: 10px; letter-spacing: .08em; color: #e9e4da; background: rgba(10,10,11,.5); padding: 4px 9px;
}
.bk-link-mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--muted, #a9a39a); }
.bk-link-mono:hover { color: var(--accent, #fff); }

.bk-btn {
	display: inline-flex; align-items: center; gap: 10px; border-radius: 100px;
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
	padding: 15px 34px; transition: background .3s, color .3s, border-color .3s; cursor: pointer;
}
.bk-btn--solid { background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); border: 1px solid var(--solid, #e9e4da); }
.bk-btn--solid:hover { background: var(--accent, #c8a24a); color: var(--solid-ink, #0a0a0b); border-color: var(--accent, #c8a24a); }
.bk-btn--outline { background: transparent; color: var(--fg, #e9e4da); border: 1px solid var(--line, rgba(233,228,218,.4)); padding: 14px 32px; }
.bk-btn--outline:hover { background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); border-color: var(--solid, #e9e4da); }

.bk-pill {
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--fg, #c3bdb3);
	border: 1px solid var(--line, rgba(255,255,255,.14)); border-radius: 100px; padding: 9px 18px; transition: .3s;
}
.bk-pill:hover { background: var(--accent, #e9e4da); color: var(--solid-ink, #0a0a0b); border-color: var(--accent, #e9e4da); }

.bk-placeholder {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	background-image: repeating-linear-gradient(135deg, rgba(233,228,218,.05) 0 9px, rgba(233,228,218,.09) 9px 18px);
}
.bk-placeholder span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--mono, #7a756c); text-align: center; padding: 10px; }

.bk-section { max-width: var(--maxw); margin: 0 auto; padding: 110px var(--pad-x); }
.bk-section--narrow { max-width: 800px; padding-top: 160px; }

/* ---- Header -------------------------------------------------------------- */
.bk-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
	display: flex; justify-content: space-between; align-items: center;
	padding: 16px 30px; background: var(--header-bg, rgba(10,10,11,.55));
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line, rgba(255,255,255,.08));
}
.bk-header__logo { height: 38px; width: 38px; filter: var(--logo-filter, none); }
/* Text fallback shown by the logo <img> onerror handler if the crest fails to load. */
.bk-header__wordmark { font-family: var(--font-serif); font-size: 22px; font-weight: 500; letter-spacing: .01em; color: var(--fg, #e9e4da); white-space: nowrap; }
.bk-nav { display: flex; gap: 28px; align-items: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: var(--muted, #b7b1a7); }
.bk-nav a { color: var(--muted, #b7b1a7); }
.bk-nav a:hover { color: var(--fg, #fff); }
.bk-nav a.is-active { color: var(--fg, #fff); border-bottom: 1px solid var(--accent, #c8a24a); padding-bottom: 3px; }
.bk-nav__cta { color: var(--fg, #e9e4da); border: 1px solid var(--line, rgba(233,228,218,.35)); border-radius: 100px; padding: 6px 16px; background: none; font: inherit; cursor: pointer; }
.bk-nav__cta:hover { background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); border-color: var(--solid, #e9e4da); }

.bk-main { display: block; }

/* ---- Hero ---------------------------------------------------------------- */
.bk-hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.bk-hero__slides, .bk-hero__slide { position: absolute; inset: 0; }
.bk-hero__slide { opacity: 0; z-index: 1; transition: opacity 1.2s ease; }
.bk-hero__slide.is-active { opacity: 1; z-index: 2; }
.bk-hero__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) brightness(.7); }
.bk-hero__slide.is-active img { animation: bkKen 8s ease-out both; }
.bk-hero__scrim { position: absolute; inset: 0; z-index: 3; background: linear-gradient(to top, rgba(8,8,9,.94) 3%, rgba(8,8,9,.28) 46%, rgba(8,8,9,.6) 100%); }
.bk-hero__inner { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; padding: 0 46px 118px; max-width: 1000px; }
.bk-hero__kicker { font-size: 11px; letter-spacing: .34em; color: #c3bdb3; }
.bk-hero__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(58px, 10.5vw, 164px); line-height: .86; letter-spacing: -.02em; margin: 20px 0 0; color: #f2efe8; }
.bk-hero__sub { max-width: 460px; margin: 22px 0 0; color: #c3bdb3; font-size: 16px; line-height: 1.7; }
.bk-hero__inner .bk-btn { margin-top: 28px; background: #e9e4da; color: #0a0a0b; border-color: #e9e4da; }
.bk-hero__inner .bk-btn:hover { background: var(--accent, #c8a24a); }
.bk-hero__controls { position: absolute; right: 46px; bottom: 40px; z-index: 6; display: flex; align-items: center; gap: 16px; }
.bk-hero__caption { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: #c3bdb3; animation: bkFade .8s ease both; }
.bk-hero__dots { display: flex; gap: 9px; }
.bk-hero__dot { height: 3px; width: 20px; border: none; padding: 0; background: rgba(233,228,218,.35); transition: .4s; cursor: pointer; }
.bk-hero__dot.is-active { width: 40px; background: #e9e4da; }
.bk-hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 6; font-family: var(--font-mono); font-size: 18px; color: #8a8578; animation: bkBounce 2.4s ease-in-out infinite; }

/* ---- Statement ----------------------------------------------------------- */
.bk-statement { max-width: 1000px; padding: 130px var(--pad-x) 96px; }
.bk-statement__text { font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 4.2vw, 52px); line-height: 1.25; letter-spacing: -.01em; margin: 34px 0 0; color: var(--fg, #e9e4da); }

/* ---- Artists ------------------------------------------------------------- */
.bk-artists { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--pad-x) 40px; scroll-margin-top: 80px; }
.bk-artists__grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 60px; align-items: center; }
.bk-artists__list { margin-top: 20px; }
.bk-artists__item {
	display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; background: none;
	border: none; border-top: 1px solid var(--line, rgba(255,255,255,.12)); padding: 20px 0; color: var(--fg, #e9e4da); cursor: pointer;
}
.bk-artists__num { font-family: var(--font-mono); font-size: 12px; color: var(--mono, #7a756c); width: 22px; }
.bk-artists__name { font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 44px); line-height: 1; flex: 1; opacity: .5; transition: opacity .3s; }
.bk-artists__item.is-active .bk-artists__name { opacity: 1; }
.bk-artists__rule { width: 0; height: 1px; background: var(--fg, #e9e4da); transition: width .3s; }
.bk-artists__item.is-active .bk-artists__rule { width: 34px; }

.bk-artists__panel { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--panel, #0c0c0e); border: 1px solid var(--line, rgba(255,255,255,.1)); }
.bk-artists__card { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
.bk-artists__card.is-active { opacity: 1; visibility: visible; }
.bk-artists__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.bk-artists__hint { display: none; margin-top: 14px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--mono, #7a756c); }
.bk-artists__cardscrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,9,.9) 3%, transparent 48%); }
.bk-artists__tag { position: absolute; top: 16px; left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #e9e4da; background: rgba(10,10,11,.5); padding: 5px 10px; }
.bk-artists__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.bk-artists__cardname { font-family: var(--font-serif); font-size: 32px; line-height: 1; color: #f2efe8; }
.bk-artists__style { color: #c3bdb3; font-size: 14px; line-height: 1.6; margin: 10px 0 0; max-width: 400px; }
.bk-artists__ig { display: inline-block; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: #cfc9bf; }
.bk-artists__portfolio { display: inline-block; margin-top: 12px; margin-left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--accent, #c8a24a); }

/* ---- Gallery ------------------------------------------------------------- */
.bk-gallery { max-width: var(--maxw-wide); padding: 60px var(--pad-x) 40px; }
.bk-gallery__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.bk-gallery__title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 50px); line-height: 1; }
.bk-gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 155px; gap: 10px; }
.bk-gallery__tile { position: relative; overflow: hidden; background: var(--panel, #0c0c0e); }
.bk-gallery__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.bk-gallery__tile:hover img { transform: scale(1.06); }

/* ---- Göt ----------------------------------------------------------------- */
.bk-got { border-top: 1px solid var(--line, rgba(255,255,255,.12)); background: var(--panel, #0c0c0e); margin-top: 80px; scroll-margin-top: 80px; }
.bk-got__grid { max-width: var(--maxw); margin: 0 auto; padding: 110px var(--pad-x); display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.bk-got__portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-got__portrait { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg, #0a0a0b); border: 1px solid var(--line, rgba(255,255,255,.1)); }
.bk-got__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.bk-got__portraitscrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,9,.78), transparent 46%); }
.bk-got__portraitname { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-serif); font-style: italic; font-size: 22px; color: #f2efe8; }
.bk-got__text { color: var(--muted, #a9a39a); font-size: 16px; line-height: 1.75; margin: 24px 0 0; max-width: 480px; }
.bk-got__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 30px 0 0; font-family: var(--font-mono); font-size: 13px; color: var(--fg, #c3bdb3); }
.bk-got__listitem { border-top: 1px solid var(--line, rgba(255,255,255,.12)); padding: 12px 0; }
.bk-got__body .bk-btn { margin-top: 32px; }

/* ---- Services + prices --------------------------------------------------- */
.bk-services { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.bk-services__list { margin-top: 20px; }
.bk-services__item { border-top: 1px solid var(--line, rgba(255,255,255,.12)); padding: 26px 0; }
.bk-services__title { font-family: var(--font-serif); font-size: 30px; margin-bottom: 8px; }
.bk-services__desc { color: var(--muted, #a9a39a); font-size: 15px; line-height: 1.6; margin: 0; max-width: 420px; }
.bk-prices { margin-top: 20px; }
.bk-prices__row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line, rgba(255,255,255,.12)); padding: 18px 0; gap: 20px; }
.bk-prices__label { font-size: 16px; color: var(--fg, #cfc9bf); }
.bk-prices__value { font-family: var(--font-mono); font-size: 14px; color: var(--fg, #e9e4da); white-space: nowrap; }
.bk-prices__note { font-family: var(--font-mono); font-size: 11px; color: var(--mono, #7a756c); margin: 18px 0 0; line-height: 1.7; }

/* ---- Shop ---------------------------------------------------------------- */
.bk-shop { border-top: 1px solid var(--line, rgba(255,255,255,.12)); background: var(--panel, #0c0c0e); scroll-margin-top: 80px; }
.bk-shop__head { max-width: 1400px; margin: 0 auto; padding: 100px var(--pad-x) 30px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.bk-shop__title { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 64px); margin-top: 10px; line-height: 1; }
.bk-shop__intro { color: var(--muted, #a9a39a); font-size: 15px; margin: 14px 0 0; max-width: 440px; line-height: 1.7; }
.bk-shop__cats { max-width: 1400px; margin: 0 auto; padding: 10px var(--pad-x) 0; display: flex; flex-wrap: wrap; gap: 10px; }
.bk-shop__grid { max-width: 1400px; margin: 0 auto; padding: 30px var(--pad-x) 100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bk-product { display: block; }
.bk-product__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg, #0d0d0f); border: 1px solid var(--line, rgba(255,255,255,.08)); }
.bk-product__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .5s ease; }
.bk-product__img--hover { opacity: 0; }
.bk-product:hover .bk-product__img--hover { opacity: 1; }
.bk-product:hover .bk-product__img { transform: scale(1.04); }
.bk-product__cat { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; color: #0a0a0b; background: rgba(236,231,221,.85); padding: 4px 8px; z-index: 2; }
.bk-product__name { font-size: 14px; color: var(--fg, #e9e4da); margin-top: 12px; line-height: 1.3; }
.bk-product__price { font-family: var(--font-mono); font-size: 12px; color: var(--muted, #a9a39a); margin-top: 4px; }
.bk-product__price del { opacity: .5; margin-right: 6px; }

/* ---- Studio band --------------------------------------------------------- */
.bk-studio { position: relative; height: 76vh; overflow: hidden; margin-top: 40px; }
.bk-studio__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: bkKen 24s ease-in-out infinite alternate; }
.bk-studio__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,9,.86), rgba(8,8,9,.14) 55%); }
.bk-studio__inner { position: absolute; left: 0; right: 0; bottom: 0; padding: 0 46px 60px; max-width: 900px; }
.bk-studio__inner .bk-kicker { color: #c3bdb3; letter-spacing: .24em; }
.bk-studio__heading { font-family: var(--font-serif); font-size: clamp(32px, 5.5vw, 76px); line-height: 1; margin-top: 14px; color: #f2efe8; }

/* ---- Contact ------------------------------------------------------------- */
.bk-contact { border-top: 1px solid var(--line, rgba(255,255,255,.12)); display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; scroll-margin-top: 80px; }
.bk-contact__info { font-family: var(--font-mono); font-size: 13px; line-height: 2.1; color: var(--muted, #a9a39a); }
.bk-contact__label { color: var(--fg, #e9e4da); margin-bottom: 14px; }
.bk-contact__label--mt { margin-top: 24px; }
.bk-contact__row { display: flex; justify-content: space-between; gap: 20px; }
.bk-contact__strong { color: var(--fg, #e9e4da); }

/* ---- Footer -------------------------------------------------------------- */
.bk-footer {
	border-top: 1px solid var(--line, rgba(255,255,255,.12)); padding: 34px var(--pad-x);
	display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--mono, #7a756c);
}
.bk-footer__links { display: inline-flex; align-items: center; gap: 22px; }
.bk-footer a, .bk-footer__book { color: var(--mono, #7a756c); text-decoration: none; }
.bk-footer a:hover, .bk-footer__book:hover { color: var(--fg, #e9e4da); }
.bk-footer__book { background: none; border: none; padding: 0; cursor: pointer; font: inherit; letter-spacing: inherit; }

/* ---- Booking popup ------------------------------------------------------- */
.bk-book[hidden] { display: none; }
.bk-book {
	position: fixed; inset: 0; z-index: 9800; display: flex; align-items: center; justify-content: center; padding: 24px;
	background: rgba(6,6,7,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	opacity: 0; transition: opacity .3s ease;
}
.bk-book.is-open { opacity: 1; }
.bk-book__panel {
	position: relative; width: 100%; max-width: 440px; padding: 40px 34px 34px;
	background: var(--panel, #0c0c0e); border: 1px solid var(--line, rgba(255,255,255,.15)); color: var(--fg, #e9e4da);
	transform: translateY(14px); transition: transform .3s ease;
}
.bk-book.is-open .bk-book__panel { transform: translateY(0); }
.bk-book__close {
	position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
	background: none; border: 1px solid var(--line, rgba(255,255,255,.2)); border-radius: 50%; color: var(--fg, #e9e4da);
	font-size: 13px; line-height: 1; cursor: pointer; -webkit-appearance: none;
}
.bk-book__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em; color: var(--mono, #7a756c); }
.bk-book__title { font-family: var(--font-serif); font-weight: 500; font-size: 32px; line-height: 1.05; margin: 14px 0 0; }
.bk-book__lead { color: var(--muted, #a9a39a); font-size: 14.5px; line-height: 1.65; margin: 14px 0 26px; }
.bk-book__actions { display: flex; flex-direction: column; gap: 12px; }
.bk-book__actions--end { align-items: flex-end; }
.bk-book__btn {
	display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; padding: 18px 22px; border-radius: 100px;
	font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; cursor: pointer; text-decoration: none;
	border: 1px solid transparent; -webkit-appearance: none;
}
.bk-book__btn--solid { background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); }
.bk-book__btn--ghost { background: none; color: var(--fg, #e9e4da); border-color: var(--line, rgba(233,228,218,.4)); }
.bk-book__btn--accent { padding: 18px 32px; justify-content: flex-start; background: var(--accent, #c8a24a); color: #0a0a0b; }

/* ---- Mobile nav drawer --------------------------------------------------- */
.bk-burger {
	display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
	background: none; border: 1px solid var(--line, rgba(233,228,218,.28)); border-radius: 12px;
	color: var(--fg, #e9e4da); cursor: pointer; padding: 0; -webkit-appearance: none;
}
.bk-menu[hidden] { display: none; }
.bk-menu {
	position: fixed; inset: 0; z-index: 9700; background: var(--bg, #0a0a0b); color: var(--fg, #e9e4da);
	display: flex; flex-direction: column; justify-content: center; gap: 4px;
	padding: 96px 26px calc(34px + env(safe-area-inset-bottom, 0px));
	transform: translateY(-100%); transition: transform .5s cubic-bezier(.4, 0, .15, 1);
	overflow-y: auto;
}
.bk-menu.is-open { transform: translateY(0); }
.bk-menu__close {
	position: absolute; top: 16px; right: 18px; width: 44px; height: 44px; background: none;
	border: 1px solid var(--line, rgba(255,255,255,.22)); border-radius: 12px; color: var(--fg, #e9e4da);
	font-size: 20px; line-height: 1; cursor: pointer; -webkit-appearance: none;
}
.bk-menu__brand { position: absolute; top: 16px; left: 20px; display: inline-flex; align-items: center; height: 44px; }
/* `.bk-menu` prefix lifts specificity above WooCommerce's `.woocommerce-page img`
   (height:auto), which otherwise blows the crest up to natural size on the shop. */
.bk-menu .bk-menu__logo { height: 30px; width: auto; display: block; filter: var(--logo-filter, none); }
.bk-menu__nav { display: flex; flex-direction: column; gap: 2px; }
.bk-menu__link {
	display: flex; align-items: baseline; gap: 16px; text-decoration: none; color: var(--fg, #e9e4da);
	font-family: var(--font-serif); font-weight: 500; font-size: clamp(40px, 13vw, 64px); line-height: 1.04; padding: 6px 0;
}
.bk-menu__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--mono, #7a756c); }
.bk-menu__link.is-current .bk-menu__num,
.bk-menu__link.is-current .bk-menu__label { color: var(--accent, #c8a24a); }
.bk-menu__cta {
	align-self: flex-start; margin-top: 30px; padding: 15px 34px; border-radius: 100px; border: none; cursor: pointer;
	background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); text-decoration: none;
	font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
}
.bk-menu__contact { margin-top: 28px; font-family: var(--font-mono); font-size: 13px; line-height: 2; color: var(--muted, #a9a39a); }
.bk-menu__contact a { color: var(--fg, #e9e4da); text-decoration: none; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 820px) {
	:root { --pad-x: 22px; }
	.bk-header { padding: 12px 18px; }
	.bk-header__logo { height: 28px; }
	.bk-nav { gap: 14px; font-size: 10px; }
	.bk-nav a:not(.bk-nav__cta) { display: none; }
	/* Mobile header stays logo + burger; the burger menu already carries BÓKA TÍMA. */
	.bk-nav__cta { display: none; }
	.bk-burger { display: inline-flex; }
	.bk-hero__inner { padding: 0 22px 96px; }
	.bk-hero__controls { right: 22px; }
	.bk-section { padding: 70px var(--pad-x); }
	.bk-statement { padding: 90px var(--pad-x) 60px; }
	.bk-artists__grid,
	.bk-got__grid,
	.bk-services,
	.bk-contact { grid-template-columns: 1fr; gap: 40px; }
	.bk-got__grid { padding: 70px var(--pad-x); }
	.bk-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
	.bk-gallery__tile { grid-column: span 1 !important; grid-row: span 1 !important; }
	.bk-shop__grid { grid-template-columns: repeat(2, 1fr); }
	.bk-studio { height: 56vh; }
	.bk-studio__inner { padding: 0 22px 40px; }

	/* Artist section: desktop click/hover swap → horizontal swipe rail (CSS only). */
	.bk-artists__grid { gap: 26px; }
	.bk-artists__list { display: none; }
	.bk-artists__panel {
		position: relative; aspect-ratio: auto; overflow-x: auto; overflow-y: hidden;
		display: flex; gap: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
		border: none; background: none;
		margin: 0 calc(var(--pad-x) * -1); padding: 0 var(--pad-x);
	}
	.bk-artists__card {
		position: relative; inset: auto; flex: 0 0 78%; opacity: 1; visibility: visible;
		aspect-ratio: 4/5; scroll-snap-align: center;
		border: 1px solid var(--line, rgba(255,255,255,.1)); overflow: hidden;
	}
	.bk-artists__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
	.bk-artists__hint { display: block; }
}

@media (prefers-reduced-motion: reduce) {
	.bk-hero__slide.is-active img,
	.bk-studio__img,
	.bk-hero__scroll { animation: none; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* Preview iframe tweaks (editor) */
body.bk-preview { cursor: auto; }

/* =========================================================================
   Cart button + drawer overlay (global — header button on every page).
   ========================================================================= */
html.bk-noscroll, html.bk-noscroll body { overflow: hidden; }

.bk-nav__cart { position: relative; display: inline-flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--line, rgba(255,255,255,.22)); border-radius: 100px; padding: 6px 15px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--fg, #e9e4da); cursor: pointer; transition: background .3s, color .3s; }
.bk-nav__cart:hover { background: var(--solid, #e9e4da); color: var(--solid-ink, #0a0a0b); }
.bk-nav__cart svg { display: block; }
.bk-cart-count { min-width: 10px; text-align: center; display: inline-block; }
.bk-cart-count.is-pop { animation: bkCartPop .4s ease; }
@keyframes bkCartPop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

.bk-cart-backdrop { position: fixed; inset: 0; z-index: 9500; background: rgba(20,18,15,.42); backdrop-filter: blur(2px); opacity: 0; transition: opacity .35s; }
.bk-cart-backdrop.is-open { opacity: 1; }

.bk-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 9600; width: 440px; max-width: 100%; background: var(--bg, #0a0a0b); color: var(--fg, #e9e4da); border-left: 1px solid var(--line, rgba(255,255,255,.14)); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .42s cubic-bezier(.3,.8,.25,1); box-shadow: -24px 0 70px rgba(0,0,0,.28); }
.bk-cart-drawer.is-open { transform: translateX(0); }
.bk-cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line, rgba(255,255,255,.12)); }
.bk-cart-drawer__title { display: flex; align-items: baseline; gap: 12px; }
.bk-cart-drawer__name { font-family: var(--font-serif); font-size: 26px; }
.bk-cart-drawer__qty { font-family: var(--font-mono); font-size: 12px; color: var(--muted, #a9a39a); }
.bk-cart-drawer__close { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--line, rgba(255,255,255,.2)); border-radius: 50%; color: var(--fg, #e9e4da); cursor: pointer; transition: background .25s, color .25s; }
.bk-cart-drawer__close:hover { background: var(--fg, #e9e4da); color: var(--bg, #0a0a0b); }
.bk-cart-drawer__content { flex: 1; min-height: 0; display: flex; flex-direction: column; overflow: hidden; }

/* Drawer scroll area = the items list; footer/empty stay pinned */
.bk-cart-items { list-style: none; margin: 0; padding: 8px 26px; flex: 1; min-height: 0; overflow-y: auto; }
.bk-cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line, rgba(255,255,255,.1)); }
.bk-cart-item__media { position: relative; width: 78px; height: 78px; flex: none; overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.bk-cart-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* WooCommerce core (.woocommerce ul.cart_list li img) forces 32px on the mini-cart
   thumbnail; the <ul> keeps those classes for WC fragments. Outrank it (3 classes). */
.bk-cart-drawer .bk-cart-item .bk-cart-item__media img { width: 100%; height: 100%; }
.bk-cart-item__body { flex: 1; min-width: 0; }
.bk-cart-item__top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.bk-cart-item__name { font-family: var(--font-serif); font-size: 18px; line-height: 1.1; color: var(--fg); }
.bk-cart-item__name:hover { color: var(--accent); }
.bk-cart-item__remove { background: none; border: none; color: var(--muted); cursor: pointer; padding: 0; flex: none; line-height: 0; }
.bk-cart-item__remove:hover { color: var(--accent); }
.bk-cart-item__material { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 3px; }
.bk-cart-item__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.bk-qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; -webkit-user-select: none; user-select: none; }
.bk-qty.is-loading { opacity: .5; pointer-events: none; }
.bk-qty__btn { width: 32px; height: 32px; background: none; border: none; font-size: 16px; color: var(--fg); cursor: pointer; line-height: 1; }
.bk-qty__val { min-width: 22px; text-align: center; font-family: var(--font-mono); font-size: 13px; }
.bk-cart-item__total { font-family: var(--font-mono); font-size: 13px; color: var(--fg); }
/* Inline stock-limit notice under a cart line. */
.bk-qty__note { margin-top: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; color: #b5493a; opacity: 0; max-height: 0; overflow: hidden; transition: opacity .25s ease, max-height .25s ease; }
.bk-qty__note.is-show { opacity: 1; max-height: 40px; }

.bk-cart-foot { flex: none; border-top: 1px solid var(--line); padding: 22px 26px 26px; }
.bk-cart-foot__row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.bk-cart-foot__val { color: var(--fg); }
.bk-cart-foot__val .amount { color: var(--fg); }
.bk-cart-foot__ship { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--accent); margin: 4px 0 16px; }
.bk-cart-foot__pay { display: block; width: 100%; text-align: center; padding: 16px; background: var(--fg); color: var(--bg); border: none; border-radius: 100px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; cursor: pointer; transition: background .3s, color .3s; }
.bk-cart-foot__pay:hover { background: var(--accent); color: #fff; }
.bk-cart-foot__cont { display: block; width: 100%; margin-top: 10px; padding: 12px; background: none; border: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); cursor: pointer; }
.bk-cart-foot__cont:hover { color: var(--fg); }

.bk-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 26px; color: var(--muted); }
.bk-cart-empty__title { font-family: var(--font-serif); font-size: 22px; margin: 18px 0 0; color: var(--fg); }
.bk-cart-empty__cta { margin-top: 18px; background: none; border: 1px solid var(--line); border-radius: 100px; padding: 11px 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--fg); cursor: pointer; }
.bk-cart-empty__cta:hover { background: var(--fg); color: var(--bg); }

@media (max-width: 820px) {
	.bk-cart-drawer { width: 100%; }
}
