/* Locky components: port of the design system's bundle.css (lk- prefix), adapted to core block wrappers.
   Fonts come from theme.json fontFace; nothing is loaded from a font CDN. Mobile breakpoint 782px. */

:root {
	--bg: var(--wp--preset--color--bg);
	--bg-2: var(--wp--preset--color--bg-2);
	--surface: var(--wp--preset--color--surface);
	--surface-2: var(--wp--preset--color--surface-2);
	--line: var(--wp--preset--color--line);
	--line-2: var(--wp--preset--color--line-2);
	--text: var(--wp--preset--color--text);
	--muted: var(--wp--preset--color--muted);
	--muted-2: var(--wp--preset--color--muted-2);
	--gold: var(--wp--preset--color--gold);
	--gold-bright: var(--wp--preset--color--gold-bright);
	--gold-deep: var(--wp--preset--color--gold-deep);
	--gold-ink: var(--wp--preset--color--gold-ink);
	--gold-tint: var(--wp--preset--color--gold-tint);
	--font-display: var(--wp--preset--font-family--display);
	--font-body: var(--wp--preset--font-family--body);
	--radius-input: 12px;
	--radius-card: 16px;
	--radius-panel: 22px;
	--radius-pill: 999px;
	--shadow-card: var(--wp--preset--shadow--shadow-card);
	--shadow-image: var(--wp--preset--shadow--shadow-image);
	--glow-gold: var(--wp--preset--shadow--glow-gold);
	--container: 1180px;
	--section-y: 96px;
	--section-gap: 56px;
	--gutter: 16px;
	--page-x: max(var(--gutter), calc((100% - var(--container)) / 2));
}
@media (max-width: 781px) {
	:root { --section-y: 64px; --section-gap: 40px; }
}

/* Page frame: template parts and sections sit flush. */
:root .wp-site-blocks > * { margin-block: 0; }
.wp-block-post-content > .lk-section { margin-block-start: 0; }

/* Section wrapper and head */
.lk-section { padding: var(--section-y) var(--gutter); }
.lk-section--alt { background: var(--bg-2); }
.wp-block-group.lk-section > * + * { margin-block-start: var(--section-gap); }
.lk-section-head { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.lk-section-head.is-left { align-items: flex-start; text-align: left; }
.wp-block-group.lk-section-head > * { margin-block: 0; }
.lk-lead { margin: 0; max-width: 620px; font-size: var(--wp--preset--font-size--body-lg); line-height: 1.6; color: var(--muted); text-wrap: pretty; }
@media (max-width: 781px) {
	.lk-section-head { gap: 12px; }
}

/* Flex components space their children with gap; cancel the flow-layout margins core adds. */
:root :is(.lk-card, .lk-step, .lk-step-top, .lk-feature, .lk-price, .lk-price-head, .lk-price-rows, .lk-price-row, .lk-loc, .lk-loc-body, .lk-loc-line,
	.lk-review, .lk-stars, .lk-review-by, .lk-contact, .lk-contact-top, .lk-contact-text, .lk-cta, .lk-cta-text, .lk-lockers, .lk-locker, .lk-door) > * { margin-block: 0; }

.lk-icon { display: block; flex-shrink: 0; }
.lk-row { display: flex; align-items: center; gap: 12px; }
.lk-wrap { flex-wrap: wrap; }
.lk-gold { color: var(--gold); }
.lk-caption { font-size: 14px; line-height: 1.5; color: var(--muted-2); }
.lk-text { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.lk-text-sm { font-size: 15px; line-height: 1.5; }
.lk-h3 { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; color: var(--text); }
.lk-overline { font-family: var(--font-display); font-weight: 600; font-size: 13px; line-height: 1.2; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.lk-overline-muted { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.lk-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); box-sizing: border-box; }
.lk-lift { transition: transform .2s ease-out, border-color .2s ease-out; }
.lk-lift:hover { transform: translateY(-3px); border-color: rgba(239,184,11,0.35); }
.lk-iconbtn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: var(--text);
	display: inline-flex; align-items: center; justify-content: center; padding: 0; cursor: pointer; box-sizing: border-box; text-decoration: none; }
:where(.lk-btn, .lk-iconbtn, .lk-lang-seg, .lk-contact, .lk-lockup, .lk-nav a, .lk-footer a, .wp-block-button__link):focus-visible,
.lk-faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Button (chrome markup) */
.lk-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; padding: 0 26px; border: 0;
	border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: 0.005em;
	text-decoration: none; white-space: nowrap; cursor: pointer; box-sizing: border-box; transition: background-color .2s, border-color .2s; }
/* Buttons styled as links: the contact form's submit, and booking links rendered as popup buttons (inc/booking.php); zero specificity, so the button classes win. */
:where(button.lk-btn, button.wp-block-button__link) { margin: 0; font: inherit; line-height: inherit; letter-spacing: inherit; text-align: center; cursor: pointer; -webkit-appearance: none; appearance: none; }
.lk-btn-sm { height: 48px; padding: 0 20px; font-size: 15px; }
.lk-btn-lg { height: 56px; padding: 0 28px; font-size: 17px; }
.lk-btn-full { width: 100%; }
.lk-btn-primary, .lk-btn-primary:visited { background: var(--gold); color: var(--gold-ink); }
.lk-btn-primary:hover, .lk-btn-primary:focus { background: var(--gold-bright); color: var(--gold-ink); }
.lk-btn-primary:active { background: var(--gold-deep); }
.lk-btn-glow { box-shadow: var(--glow-gold); }
.lk-btn-secondary, .lk-btn-secondary:visited { background: transparent; color: var(--text); border: 1.5px solid var(--line-2); }
.lk-btn-secondary .lk-icon { color: var(--gold); }
.lk-btn-secondary:hover, .lk-btn-secondary:focus { border-color: var(--gold); color: var(--text); }
.lk-btn-secondary:active { background: var(--surface-2); border-color: var(--gold-deep); }
.lk-btn-dark { background: var(--bg); color: var(--text); }
.lk-btn-dark .lk-icon { color: var(--gold); }
.lk-btn-dark:hover { background: var(--surface-2); color: var(--text); }
.lk-btn-dark:focus-visible { outline-color: var(--gold-ink); }
.lk-btn-text { height: auto; min-height: 48px; padding: 0 4px; background: none; color: var(--gold); }
.lk-btn-text:hover { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 4px; }
.lk-btn-text:active { color: var(--gold-deep); }
.lk-btn[disabled], .lk-btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }

/* Button (core/button). Default style = gold pill from theme.json elements.button. */
.wp-block-button__link { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding-block: 0;
	box-sizing: border-box; white-space: nowrap; transition: background-color .2s, border-color .2s, color .2s; }
.wp-block-button.is-size-sm .wp-block-button__link { min-height: 48px; padding-inline: 20px; font-size: 15px; }
.wp-block-button.is-size-lg .wp-block-button__link { min-height: 56px; padding-inline: 28px; font-size: 17px; }
.wp-block-button.is-full, .wp-block-button.is-full .wp-block-button__link { width: 100%; }
.wp-block-button.has-glow .wp-block-button__link { box-shadow: var(--glow-gold); }
.wp-block-button.has-arrow .wp-block-button__link::after { content: ""; flex-shrink: 0; width: 18px; height: 18px; background: currentColor;
	-webkit-mask: url(../icons/arrow-right.svg) center / contain no-repeat; mask: url(../icons/arrow-right.svg) center / contain no-repeat; }
.wp-block-button.is-style-secondary .wp-block-button__link { background: transparent; color: var(--text); border: 1.5px solid var(--line-2); }
.wp-block-button.is-style-secondary .wp-block-button__link:is(:hover, :focus) { background: transparent; color: var(--text); border-color: var(--gold); }
.wp-block-button.is-style-secondary .wp-block-button__link:active { background: var(--surface-2); border-color: var(--gold-deep); }
.wp-block-button.is-style-secondary.has-arrow .wp-block-button__link::after { background: var(--gold); }
.wp-block-button.is-style-dark .wp-block-button__link { background: var(--bg); color: var(--text); }
.wp-block-button.is-style-dark .wp-block-button__link:is(:hover, :focus) { background: var(--surface-2); color: var(--text); }
.wp-block-button.is-style-dark .wp-block-button__link:focus-visible { outline-color: var(--gold-ink); }
.wp-block-button.is-style-dark.has-arrow .wp-block-button__link::after { background: var(--gold); }
.wp-block-button.is-style-text .wp-block-button__link { min-height: 48px; padding: 0 4px; background: none; color: var(--gold); box-shadow: none; }
.wp-block-button.is-style-text .wp-block-button__link:is(:hover, :focus) { background: none; color: var(--gold-bright); text-decoration: underline; text-underline-offset: 4px; }
.wp-block-button.is-style-text .wp-block-button__link:active { color: var(--gold-deep); }
.wp-block-buttons { gap: 12px; }

/* Badge, chip, language switch, icon tile */
.lk-badge { display: inline-flex; align-items: center; gap: 10px; height: 34px; padding: 0 14px; border-radius: var(--radius-pill);
	background: var(--gold-tint); border: 1px solid rgba(239,184,11,0.28); color: var(--gold); font-family: var(--font-display);
	font-weight: 600; font-size: 13px; letter-spacing: 0.06em; white-space: nowrap; box-sizing: border-box; }
.lk-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(239,184,11,0.18); }
.lk-chip { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: var(--radius-pill);
	background: var(--surface); border: 1px solid var(--line); font-family: var(--font-body); font-size: 14px; font-weight: 500;
	color: var(--text); white-space: nowrap; box-sizing: border-box; }
.lk-chip .lk-icon { color: var(--gold); }
.lk-lang { display: inline-flex; align-items: center; gap: 2px; padding: 3px; height: 48px; border-radius: var(--radius-pill);
	border: 1px solid var(--line-2); box-sizing: border-box; }
.lk-lang-seg { display: flex; align-items: center; justify-content: center; width: 44px; height: 40px; border-radius: var(--radius-pill);
	color: var(--muted); font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-decoration: none; }
.lk-lang-seg:hover { color: var(--text); }
.lk-lang-seg.is-active { background: var(--surface-2); color: var(--text); }
.lk-tile { width: 48px; height: 48px; margin: 0; border-radius: 14px; background: var(--gold-tint); border: 1px solid rgba(239,184,11,0.22);
	color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-sizing: border-box; }
.lk-tile-sm { width: 40px; height: 40px; border-radius: 12px; }
.lk-tile img { display: block; }

/* Step + feature cards */
.lk-step { display: flex; flex-direction: column; gap: 16px; padding: 28px; box-shadow: var(--shadow-card); }
.lk-step-top { display: flex; align-items: center; justify-content: space-between; }
.lk-step-num { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--gold); }
.lk-feature { display: flex; flex-direction: column; gap: 14px; padding: 24px; }
.lk-feature-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.3; letter-spacing: 0; color: var(--text); }

/* Price card */
.lk-price { position: relative; display: flex; flex-direction: column; gap: 20px; padding: 32px; box-shadow: var(--shadow-card); }
.lk-price.is-popular { border: 1.5px solid rgba(239,184,11,0.7); box-shadow: var(--glow-gold); padding-top: 40px; }
.lk-price-flag { position: absolute; top: -15px; left: 32px; height: 30px; margin: 0; padding: 0 14px; border-radius: var(--radius-pill); background: var(--gold);
	color: var(--gold-ink); font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
	display: flex; align-items: center; white-space: nowrap; }
.lk-price-head { display: flex; align-items: center; gap: 14px; }
.lk-price-name { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.2; letter-spacing: 0; color: var(--text); }
.lk-price-desc { font-size: 15px; line-height: 1.4; color: var(--muted); }
.lk-price-rows { display: flex; flex-direction: column; }
.lk-price-row { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--muted); }
.lk-price-val { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.01em; color: var(--text); font-variant-numeric: tabular-nums; }
.lk-price-val small { font-size: 15px; font-weight: 600; margin-left: 4px; color: var(--muted); }
.lk-price.is-compact { padding: 24px; gap: 16px; }
.lk-price.is-compact.is-popular { padding-top: 32px; }
.lk-price.is-compact .lk-price-name { font-size: 22px; }
.lk-price.is-compact .lk-price-row { padding: 10px 0; }
.lk-price.is-compact .lk-price-val { font-size: 22px; }

/* Location card */
.lk-loc { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-panel); box-shadow: var(--shadow-card); }
.lk-loc-img { display: block; width: 100%; height: 230px; margin: 0; object-fit: cover; object-position: 50% 45%; }
.lk-loc-body { display: flex; flex-direction: column; gap: 14px; padding: 28px; align-items: flex-start; }
.lk-loc-line { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--text); }
.lk-loc-line .lk-icon { color: var(--gold); }
.lk-loc-line.is-muted { color: var(--muted); }

/* FAQ: core/details with className lk-faq. Core's summary holds plain text, so the ring is drawn with ::after. */
.lk-faq { border-radius: var(--radius-card); background: var(--surface-2); border: 1px solid var(--line); box-sizing: border-box; }
.lk-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; min-height: 48px;
	list-style: none; cursor: pointer; border-radius: var(--radius-card);
	font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.35; color: var(--text); }
.lk-faq summary::-webkit-details-marker { display: none; }
.lk-faq summary::after { content: ""; flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); box-sizing: border-box;
	background: linear-gradient(var(--gold), var(--gold)) center / 14px 2px no-repeat, linear-gradient(var(--gold), var(--gold)) center / 2px 14px no-repeat; }
.lk-faq[open] summary::after { background: linear-gradient(var(--gold), var(--gold)) center / 14px 2px no-repeat; }
.lk-faq-q { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.35; color: var(--text); }
.lk-faq > :not(summary) { margin: 0; padding: 0 24px 24px; max-width: 640px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.lk-faq-a p { margin: 0; }

/* Review card */
.lk-review { display: flex; flex-direction: column; gap: 16px; padding: 24px; }
.lk-stars { display: flex; gap: 3px; color: var(--gold); }
.lk-star.is-off { color: var(--line-2); }
.lk-review-quote { margin: 0; flex-grow: 1; font-size: 17px; line-height: 1.6; color: var(--text); }
.lk-review-by { display: flex; align-items: center; gap: 12px; }
.lk-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--muted);
	font-family: var(--font-display); font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lk-review-name { display: block; font-weight: 600; font-size: 15px; color: var(--text); }
.lk-review-date { display: block; font-size: 14px; color: var(--muted); }

/* Contact channel card */
.lk-contact { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 24px; min-height: 168px; text-decoration: none; }
.lk-contact-top { display: flex; justify-content: space-between; align-items: flex-start; color: var(--muted); }
.lk-contact-text { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.lk-contact-label { font-size: 14px; color: var(--muted); }
.lk-contact-value { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.35; color: var(--text); overflow-wrap: break-word; /* break at <wbr> or spaces first, mid-word only as a last resort */ }

/* Big letters on lockers (pattern lockers-word): group lk-lockers > group lk-locker > [group lk-door-top > p lk-door-plate] + p lk-door-letter.
   The lock and the bottom door are drawn with pseudo-elements so the pattern only carries editable text. Set --col-w, --col-h, --seam. */
.lk-lockers { display: flex; flex-shrink: 0; --col-w: 112px; --col-h: 320px; --seam: 3px; }
.lk-lockers, .lk-lockers-yellow { --lk-door: var(--gold); --lk-seam: var(--gold-ink); --lk-letter: var(--gold-ink); --lk-lock: var(--gold-ink); --lk-lock-dot: #3a2f10;
	--lk-plate: var(--text); --lk-plate-ink: var(--gold-ink); --lk-door-line: rgba(21,15,2,0.28); }
.lk-lockers-dark { --lk-door: #18181b; --lk-seam: #050506; --lk-letter: var(--gold); --lk-lock: #000000; --lk-lock-dot: var(--gold);
	--lk-plate: rgba(239,184,11,0.16); --lk-plate-ink: var(--gold); --lk-door-line: rgba(255,255,255,0.07); }
.lk-locker { width: var(--col-w); height: var(--col-h); display: flex; flex-direction: column; gap: var(--seam); padding: var(--seam);
	background: var(--lk-seam); border-radius: 5px; box-sizing: border-box; flex-shrink: 0; }
.lk-door, .lk-locker::after { --inset: max(3px, calc(var(--col-w) * 0.05)); position: relative; border-radius: 3px; background: var(--lk-door);
	box-shadow: inset 0 0 0 var(--inset) var(--lk-door), inset 0 0 0 calc(var(--inset) + 1px) var(--lk-door-line); box-sizing: border-box; }
.lk-door-top { height: calc(var(--col-h) * 0.2); flex-shrink: 0;
	--lh: max(5px, calc(var(--col-w) * 0.075)); --lw: max(10px, calc(var(--col-w) * 0.16)); --ld: calc(var(--lh) * 0.45); }
.lk-door-letter { height: calc(var(--col-h) * 0.46); flex-shrink: 0; display: flex; align-items: center; justify-content: center;
	padding-top: calc(var(--col-h) * 0.018); font-family: var(--font-display); font-weight: 800; line-height: 1; letter-spacing: 0; color: var(--lk-letter);
	font-size: min(calc(var(--col-h) * 0.3036), calc(var(--col-w) * 0.86)); }
.lk-door-bottom, .lk-locker::after { flex-grow: 1; }
.lk-locker::after { content: ""; }
.lk-door-top::before, .lk-door-lock { content: ""; position: absolute; top: calc(var(--inset) * 1.3); left: calc(var(--inset) + 2px);
	width: var(--lw); height: var(--lh); border-radius: 99px; background: var(--lk-lock); }
.lk-door-top::after { content: ""; position: absolute; top: calc(var(--inset) * 1.3 + (var(--lh) - var(--ld)) / 2); left: calc(var(--inset) + 2px + (var(--lw) - var(--ld)) / 2);
	width: var(--ld); height: var(--ld); border-radius: 50%; background: var(--lk-lock-dot); }
.lk-door-plate { --ph: max(8px, calc(var(--col-w) * 0.1)); position: absolute; top: calc(var(--inset) * 1.3); left: 50%; transform: translateX(-50%); margin: 0;
	width: max(14px, calc(var(--col-w) * 0.2)); height: var(--ph); line-height: var(--ph); font-size: max(6px, calc(var(--ph) * 0.62));
	border-radius: 2px; background: var(--lk-plate); color: var(--lk-plate-ink); font-family: var(--font-display); font-weight: 700; text-align: center; letter-spacing: 0.04em; }
@media (max-width: 781px) {
	.lk-lockers { --col-w: 64px; --col-h: 166px; --seam: 2px; }
}

/* CTA band (the yellow band: once per page, final CTA) */
.lk-cta { display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 80px var(--cta-x, var(--page-x)); background: var(--gold); color: var(--gold-ink); box-sizing: border-box; }
.lk-cta-text { display: flex; flex-direction: column; gap: 20px; max-width: 500px; }
.lk-cta-title { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: 1.1; letter-spacing: -0.02em; color: var(--gold-ink); text-wrap: balance; }
.lk-cta-p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(21,15,2,0.82); }
.lk-cta.is-mobile { flex-direction: column; align-items: stretch; gap: 28px; padding: 56px 16px 64px; }
.lk-cta.is-mobile .lk-cta-title { font-size: 30px; }
.lk-cta.is-mobile .lk-cta-p { font-size: 16px; }
.lk-cta.is-mobile .lk-lockers { align-self: center; }

/* Lockup */
.lk-mark { color: var(--gold); display: block; flex-shrink: 0; }
.lk-mark-ink { fill: var(--bg); }
.lk-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.lk-lockup-text { display: flex; flex-direction: column; gap: 5px; }
.lk-lockup-word { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: 0.04em; line-height: 1; color: var(--text); }
.lk-lockup-tag { font-family: var(--font-display); font-weight: 600; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); line-height: 1; white-space: nowrap; }
.lk-lockup-full { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text); }
.lk-lockup-full-word { font-family: var(--font-display); font-weight: 800; font-size: 76px; line-height: 0.95; letter-spacing: 0.02em; }
.lk-lockup-full-city { display: flex; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: 0.12em; color: var(--gold); }
.lk-rule { width: 90px; height: 3px; border-radius: 2px; background: var(--gold); }
.lk-lockup-full-tag { margin-top: 4px; font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.1; letter-spacing: 0.04em; }
.lk-lockup-full-sub { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.22em; }
.lk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Site header ([marketing_header] in parts/header.html). Sticky on the template-part wrapper, 76px desktop, 64px below 1200px. */
.lk-header-part { position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 50; }
.lk-header { position: relative; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 var(--header-x, var(--page-x));
	background: rgba(11,11,12,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-sizing: border-box; }
.lk-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.lk-nav a { display: flex; align-items: center; min-height: 48px; color: var(--muted); font-size: 15px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.lk-nav a:hover { color: var(--text); }
.lk-header.is-mobile { height: 64px; padding: 0 16px; }
.lk-header.is-mobile .lk-row { gap: 8px; }
.lk-header.is-mobile .lk-btn { padding: 0 18px; }
.lk-label-short, .lk-menu { display: none; }

/* Mobile menu: native <details>, so it opens without JavaScript. */
.lk-menu > summary { list-style: none; }
.lk-menu > summary::-webkit-details-marker { display: none; }
.lk-menu:not([open]) .lk-menu-close, .lk-menu[open] .lk-menu-open { display: none; }
.lk-menu-panel { position: absolute; top: 100%; left: 0; right: 0; height: calc(100dvh - 64px - var(--wp-admin--admin-bar--height, 0px)); overflow-y: auto;
	padding: 16px 16px 32px; display: flex; flex-direction: column; gap: 28px; background: var(--bg); box-sizing: border-box; }
.lk-menu-list { margin: 0; padding: 0; list-style: none; }
.lk-menu-list li { border-bottom: 1px solid var(--line); }
.lk-menu-list a { display: flex; align-items: center; justify-content: space-between; min-height: 64px; font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--text); text-decoration: none; }
.lk-menu-list .lk-icon { color: var(--muted-2); }
.lk-menu-lang { display: flex; align-items: center; justify-content: space-between; font-size: 15px; color: var(--muted); }
.lk-menu-contact { display: flex; flex-direction: column; gap: 8px; margin: 0; font-size: 15px; color: var(--muted); }
.lk-menu-contact a { display: flex; align-items: center; gap: 10px; min-height: 44px; color: var(--text); text-decoration: none; }
.lk-menu-contact .lk-icon { color: var(--gold); }

@media (max-width: 1199px) {
	.lk-header { height: 64px; padding: 0 16px; }
	.lk-header .lk-lockup .lk-mark { width: 32px; height: 32px; }
	.lk-header .lk-lockup-word { font-size: 18px; }
	.lk-header .lk-lockup-tag, .lk-header .lk-nav, .lk-header-actions > .lk-lang, .lk-label-long { display: none; }
	.lk-header-actions { gap: 8px; }
	.lk-header-actions > .lk-btn { padding: 0 18px; }
	.lk-label-short, .lk-menu { display: block; }
	.lk-header-actions:has(.lk-menu[open]) > .lk-btn { display: none; }
	html:has(.lk-menu[open]) { overflow: hidden; }
}

/* Site footer ([marketing_footer] in parts/footer.html) */
.lk-footer { display: flex; flex-direction: column; gap: 48px; padding: 64px var(--footer-x, var(--page-x)) 32px; background: var(--bg); border-top: 1px solid var(--line); box-sizing: border-box; }
.lk-footer p { margin: 0; }
.lk-footer-top { display: flex; justify-content: space-between; gap: 48px; }
.lk-footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.lk-footer-desc { font-size: 15px; line-height: 1.6; color: var(--muted); }
.lk-footer-social { display: flex; gap: 10px; }
.lk-footer-cols { display: flex; gap: 56px; }
.lk-footer-col { display: flex; flex-direction: column; gap: 4px; min-width: 150px; }
.lk-footer-col a { display: flex; align-items: center; min-height: 36px; color: var(--muted); font-size: 15px; text-decoration: none; }
.lk-footer-col a:hover { color: var(--text); }
.lk-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); }
.lk-footer.is-mobile { padding: 48px 16px 32px; gap: 32px; }
.lk-footer.is-mobile .lk-footer-top { flex-direction: column; gap: 32px; }
.lk-footer.is-mobile .lk-footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
.lk-footer.is-mobile .lk-footer-col { min-width: 0; }
.lk-footer.is-mobile .lk-footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
@media (max-width: 781px) {
	.lk-footer { padding: 48px 16px 32px; gap: 32px; }
	.lk-footer-top { flex-direction: column; gap: 32px; }
	.lk-footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
	.lk-footer-col { min-width: 0; }
	.lk-footer-col a { min-height: 44px; }
	.lk-footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
}

/* 404 ([marketing_404] in templates/404.html) */
.lk-404 { display: flex; flex-direction: column; align-items: center; gap: 44px; padding: 72px var(--gutter) 96px; text-align: center; box-sizing: border-box;
	background: radial-gradient(520px 360px at 50% 30%, rgba(239,184,11,0.10), rgba(239,184,11,0) 70%), var(--bg); }
.lk-404 .lk-lockers { gap: 12px; --col-w: 150px; --col-h: 400px; --seam: 4px; }
.lk-404-text { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lk-404-text h1 { margin: 0; font-size: 44px; line-height: 1.15; letter-spacing: -0.02em; }
.lk-404-text p { margin: 0; max-width: 460px; }
.lk-404-actions { display: flex; gap: 12px; }
@media (max-width: 781px) {
	.lk-404 { gap: 32px; padding: 48px 16px 64px; }
	.lk-404 .lk-lockers { gap: 8px; --col-w: 92px; --col-h: 250px; --seam: 3px; }
	.lk-404-text h1 { font-size: 30px; }
	.lk-404-actions { flex-direction: column; align-self: stretch; }
	.lk-404-actions .lk-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.lk-lift, .lk-btn, .wp-block-button__link { transition: none; }
	.lk-lift:hover { transform: none; }
}
