/* Handmade Kapamilya — theme-level CSS.
 * Implements the Brand & Web Design System produced in claude.ai/design.
 * Mood: old-money sophistication, modern minimal.
 *
 * Rules:
 *  - Etna Bold for H1–H6 ONLY. Arial for everything else.
 *  - Product image containers are #FFFFFF, locked.
 *  - Square corners everywhere (border-radius: 0).
 *  - No gradients, no decorative shadows, no manufactured urgency.
 */

/* ---------- Fonts ---------- */

@font-face {
	font-family: 'Etna';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url('fonts/etna/etna-bold.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */

:root {
	/* Color */
	--hk-bg:          #F5EFE4;
	--hk-surface:     #EDE5D4;
	--hk-white:       #FFFFFF;
	--hk-ink:         #1A1714;
	--hk-body:        #2B2622;
	--hk-muted:       #7A7065;
	--hk-line:        #D9CFBD;
	--hk-accent:      #b79d70;
	--hk-accent-deep: #5E4823;
	--hk-success:     #5B7A4B;
	--hk-error:       #B0301C;

	/* Type */
	--font-display: 'Etna', 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-serif:   Georgia, 'Times New Roman', serif;

	--fs-display:  6rem;
	--fs-h1:       4rem;
	--fs-h2:       2.75rem;
	--fs-h3:       2rem;
	--fs-h4:       1.375rem;
	--fs-body:     1rem;
	--fs-sm:       0.875rem;
	--fs-cap:      0.8125rem;
	--fs-micro:    0.75rem;

	/* Spacing (7-step) */
	--s-1: 0.25rem;
	--s-2: 0.5rem;
	--s-3: 1rem;
	--s-4: 1.5rem;
	--s-5: 2.5rem;
	--s-6: 4rem;
	--s-7: 6rem;

	/* Layout */
	--w-read:    720px;
	--w-default: 1240px;
	--w-full:    1440px;
	--gutter:    1.5rem;

	/* Motion */
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--dur:  240ms;

	--hmk-header-height: 75px;
	--hmk-z-header: 1000;
	--hmk-z-drawer: 1100;
	--hmk-z-cart: 1100;
	--hmk-z-overlay: 1150;
	--hmk-z-modal: 1200;
}

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

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.55;
	color: var(--hk-body);
	background: var(--hk-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* overflow-x: clip (not hidden) so position:sticky on the header keeps
	   working. hidden on html/body creates a new scrolling context that
	   silently breaks sticky in most browsers. */
	overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--hk-ink);
	margin: 0;
}
h1 { font-size: var(--fs-h1); line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.015em; text-wrap: balance; }
h3 { font-size: var(--fs-h3); line-height: 1.15; letter-spacing: -0.01em; }
h4 { font-size: var(--fs-h4); line-height: 1.3; }
h5 { font-size: 1.125rem; line-height: 1.35; }
h6 { font-size: 1rem; line-height: 1.4; }

p { margin: 0; text-wrap: pretty; }

a {
	color: var(--hk-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: color var(--dur) var(--ease);
}
a:hover { color: var(--hk-accent-deep); }

:focus-visible {
	outline: 2px solid var(--hk-accent);
	outline-offset: 2px;
}

a, button, input[type="button"], input[type="submit"], .wp-block-button__link, summary {
	min-height: 44px;
}

/* ---------- Utility type ---------- */

.hk-eyebrow,
.hmk-eyebrow {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent-deep);
}

/* Bump every named __eyebrow to match the global size (was ~0.75rem). */
.hmk-hero__eyebrow,
.hmk-newsletter-modal__eyebrow,
.hmk-bolero__eyebrow,
.hmk-groomsmen__eyebrow,
.hmk-timeline__eyebrow,
.hmk-groom__eyebrow,
.hmk-about-slideshow__eyebrow,
.hmk-about-cta__eyebrow,
.hmk-footer__newsletter-eyebrow {
	font-size: 0.9375rem;
}

.hk-meta,
.hmk-meta {
	font-size: var(--fs-cap);
	color: var(--hk-muted);
}

.hk-label {
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hk-ink);
}

.hk-serif-lede {
	font-family: var(--font-serif);
	font-style: italic;
	line-height: 1.7;
	color: var(--hk-muted);
}

/* ---------- Hairline ---------- */

.hk-hair { border: 0; border-top: 1px solid var(--hk-line); margin: 0; }

/* ---------- Buttons (raised pill — global baseline) ----------
   Shape / shadow / motion pattern inspired by Google's Material "Button 17".
   Brand tokens (colors, typography, uppercase + letter-spacing) are preserved.
   Default primary color is --hk-accent (the old "Start Your Wedding Order" gold).
*/

.wp-block-button__link,
.hk-btn,
button.hmk-btn,
.hmk-btn,
.hmk-footer__newsletter-form button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce button[type="submit"],
.woocommerce input[type="submit"].button,
.woocommerce-page a.button,
.woocommerce-page button.button {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background: var(--hk-accent, #b79d70);
	border: 1px solid var(--hk-accent, #b79d70);
	border-radius: 9999px !important;
	box-shadow: rgba(26,23,20,.22) 0 1px 3px 0, rgba(26,23,20,.12) 0 4px 8px 3px;
	box-sizing: border-box;
	color: var(--hk-ink, #1A1714);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-body);
	font-size: var(--fs-micro, 0.75rem);
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: 0.14em;
	line-height: 1;
	min-height: 48px;
	padding: 0 1.75rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		box-shadow 280ms cubic-bezier(.4, 0, .2, 1),
		transform  270ms cubic-bezier(0, 0, .2, 1),
		background 200ms ease,
		color      200ms ease,
		border-color 200ms ease;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	will-change: transform;
}

.wp-block-button__link:hover,
.hk-btn:hover,
button.hmk-btn:hover,
.hmk-btn:hover,
.hmk-footer__newsletter-form button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button[type="submit"]:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover {
	background: var(--hk-accent-deep, #5E4823);
	border-color: var(--hk-accent-deep, #5E4823);
	color: var(--hk-bg, #F5EFE4);
	box-shadow: rgba(26,23,20,.28) 0 2px 3px 0, rgba(26,23,20,.15) 0 7px 14px 4px;
	transform: translateY(-1px);
}

.wp-block-button__link:active,
.hk-btn:active,
button.hmk-btn:active,
.hmk-btn:active,
.hmk-footer__newsletter-form button:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
	box-shadow: rgba(26,23,20,.3) 0 4px 4px 0, rgba(26,23,20,.15) 0 8px 12px 6px;
	transform: translateY(0);
	outline: none;
}

.wp-block-button__link:focus-visible,
.hk-btn:focus-visible,
.hmk-btn:focus-visible {
	outline: 2px solid var(--hk-accent-deep, #5E4823);
	outline-offset: 2px;
}

.wp-block-button__link:disabled,
.hk-btn:disabled,
.hmk-btn:disabled,
.hmk-footer__newsletter-form button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}

/* Outline / ghost variant (used on dark sections + sidebar "clear all") */
.is-style-outline .wp-block-button__link,
.hk-btn--secondary,
.hk-btn--ghost,
.hmk-btn--ghost {
	background: transparent;
	border-color: currentColor;
	color: var(--hk-ink, #1A1714);
	box-shadow: none;
}
.is-style-outline .wp-block-button__link:hover,
.hk-btn--secondary:hover,
.hk-btn--ghost:hover,
.hmk-btn--ghost:hover {
	background: var(--hk-ink, #1A1714);
	border-color: var(--hk-ink, #1A1714);
	color: var(--hk-bg, #F5EFE4);
	box-shadow: rgba(26,23,20,.28) 0 2px 3px 0, rgba(26,23,20,.15) 0 7px 14px 4px;
}

/* Legacy --accent variant is now identical to the default button — keep the
   class for back-compat with any markup still referencing it. */
.hk-btn--accent {
	background: var(--hk-accent, #b79d70);
	border-color: var(--hk-accent, #b79d70);
	color: var(--hk-ink, #1A1714);
}
.hk-btn--accent:hover {
	background: var(--hk-accent-deep, #5E4823);
	border-color: var(--hk-accent-deep, #5E4823);
	color: var(--hk-bg, #F5EFE4);
}

/* ---------- Product-image canvases: locked white ---------- */

.hmk-product-canvas,
.wc-block-components-product-image,
.woocommerce-product-gallery,
.wp-block-woocommerce-product-image-gallery,
.wp-block-woocommerce-product-image,
.wc-block-grid__product-image,
.wc-block-grid__product,
.wp-block-woocommerce-product-collection .wp-block-post,
.products li.product {
	background: var(--hk-white) !important;
}

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

/* Kill WordPress's implicit top padding on the site wrapper — otherwise the
   sticky header's "flow position" is a few px below y=0, and when it pins
   it visually pops up by that amount, creating a jitter. Must be 0 / 0. */
.wp-site-blocks {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* WordPress renders block template parts inside a wrapping <header
   class="wp-block-template-part">. For position: sticky to work across the
   whole page the sticky must be on that outer wrapper — sticky on an
   element stays within the bounds of its containing block, so if it's on
   the inner .hmk-header its "sticky window" ends the moment the tiny outer
   wrapper scrolls past. */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: var(--hmk-z-header);
	background: var(--hk-bg);
	/* overflow visible so the oversized logo / coin can hang below the
	   header line without being clipped */
	overflow: visible;
	margin: 0;
	padding: 0;
	/* Force a compositor layer from page load — prevents the subpixel
	   jitter that happens when the browser switches the element into a
	   sticky paint mode only after scroll. */
	will-change: transform;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Logged-in admin bar offset. WP's admin bar sits at the top (32px desktop,
   46px mobile). Without this offset, the sticky header slides UNDER the
   admin bar and the top ~32px of the header gets hidden — including the
   top of the coin and the icons. */
.admin-bar header.wp-block-template-part { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar header.wp-block-template-part { top: 46px; }
}

.hmk-header {
	background: var(--hk-bg);
	border-bottom: 2px solid #0d2a26;
	overflow: visible;
}

.hmk-header__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--s-4);
	padding: 0 var(--s-5);
	min-height: var(--hmk-header-height);
	max-width: none;
	position: relative;
}

/* Oversized logo on a coin:
   - The logo hangs half below the header line (150px logo, 75px header).
   - A circle behind the logo, colored the same as the header bg, gives a
     "logo on a coin" medallion effect. The top half of the coin blends
     invisibly into the header (both ivory). The bottom half hangs over
     whatever is below (hero image, page content) as a flat disc.
   - The coin sits above the header's bottom hairline (logo's z-index: 3
     creates a stacking context above the header's own border), so the
     hairline disappears where it crosses the coin — seamless circle. */
.hmk-header__logo {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: flex-start;
	text-decoration: none;
	padding: 0;
	pointer-events: auto;
	/* Positioning context for the coin ::before */
	isolation: isolate;
}
.hmk-header__logo::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 190px;
	height: 190px;
	background: var(--hk-bg);
	border-radius: 50%;
	z-index: -1;
	pointer-events: none;
}
/* 7px rim on the bottom half of the coin only — picks up where the header
   line stops on either side, curving around the bottom of the disc. */
.hmk-header__logo::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 190px;
	height: 190px;
	border-radius: 50%;
	border: 2px solid #0d2a26;
	clip-path: inset(50% 0 0 0);
	z-index: -1;
	pointer-events: none;
}
.hmk-header__logo img,
.hmk-header__logo .custom-logo-link img,
.hmk-header__logo-img {
	height: 150px;
	width: auto;
	display: block;
}
/* Light/dark logo swap — specificity has to beat .hmk-header__logo-img { display: block } */
.hmk-logo-swap { display: inline-block; position: relative; }
.hmk-header__logo .hmk-logo-swap__dark,
img.hmk-logo-swap__dark { display: none !important; }
html.hmk-dark .hmk-header__logo .hmk-logo-swap__light,
html.hmk-dark img.hmk-logo-swap__light { display: none !important; }
html.hmk-dark .hmk-header__logo .hmk-logo-swap__dark,
html.hmk-dark img.hmk-logo-swap__dark { display: block !important; }
.hmk-header__logo .hmk-wordmark {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--hk-ink);
	text-decoration: none;
	letter-spacing: 0;
	line-height: 1;
	padding-top: 1.5rem;
}

/* Mobile: smaller logo, still hanging half below the header line */
@media (max-width: 959px) {
	.hmk-header__logo img,
	.hmk-header__logo .custom-logo-link img,
	.hmk-header__logo-img {
		height: 80px;
	}
	.hmk-header__logo .hmk-wordmark {
		font-size: 1.25rem;
		padding-top: 0.75rem;
	}
	.hmk-header__logo::before,
	.hmk-header__logo::after {
		width: 110px;
		height: 110px;
	}
	.hmk-header__logo::after {
		border-width: 1.5px;
	}
}

.hmk-header__nav { justify-self: start; grid-column: 1; }
.hmk-header__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 var(--s-5);
	margin: 0;
	padding: 0;
	list-style: none;
}
.hmk-header__nav a {
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hk-ink);
	text-decoration: none;
	padding: 0.75rem 0;
	display: inline-block;
}
.hmk-header__nav a:hover { color: var(--hk-accent-deep); }

.hmk-header__actions {
	justify-self: end;
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	gap: var(--s-4);
}

.hmk-header__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	padding: 0;
	font-size: var(--fs-micro);
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hk-ink);
	background: transparent;
	border: none;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}
.hmk-header__action.hmk-header__phone {
	width: auto;
	padding: 0 var(--s-2);
	color: var(--hk-muted);
	letter-spacing: 0.12em;
}
.hmk-header__action:hover { color: var(--hk-accent-deep); }
.hmk-header__action svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	stroke-width: 1.5;
}
.hmk-header__phone-text { display: none; }
@media (min-width: 960px) {
	.hmk-header__phone-text { display: inline; }
}

.hmk-header__cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 14px;
	height: 14px;
	padding: 0 3px;
	background: var(--hk-accent);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 14px;
	text-align: center;
	border-radius: 0;
}
.hmk-header__cart-count:empty,
.hmk-header__cart-count[data-count="0"] { display: none; }

@media (max-width: 959px) {
	/* On mobile only the actions div is in normal flow (logo is absolute,
	   nav is display:none). Use flex with end-justify so the search /
	   cart / hamburger sit at the right edge of the header bar. */
	.hmk-header__inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding: 0 var(--s-3);
	}
	.hmk-header__nav { display: none; }
	.hmk-header__mobile-toggle { display: inline-flex; }
}
@media (min-width: 960px) {
	.hmk-header__mobile-toggle { display: none; }
}

.hmk-header__mobile-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--s-2);
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hk-ink);
}
.hmk-header__mobile-toggle svg { width: 20px; height: 20px; }

/* ---------- Mobile nav drawer ---------- */

.hmk-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: var(--hmk-z-drawer);
	background: rgba(26, 23, 20, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--dur) var(--ease);
}
.hmk-mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.hmk-mobile-drawer__panel {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: min(320px, 90vw);
	background: var(--hk-bg);
	padding: var(--s-4);
	transform: translateX(100%);
	transition: transform var(--dur) var(--ease);
	overflow-y: auto;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}
/* When the hamburger drawer is open, push the cart drawer to its left so
   the two never overlap. */
body.hmk-menu-open .hmk-cart-drawer__panel {
	right: min(320px, 90vw);
}
.hmk-mobile-drawer.is-open .hmk-mobile-drawer__panel { transform: translateX(0); }
.hmk-mobile-drawer__close {
	position: absolute;
	top: var(--s-3);
	right: var(--s-3);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.375rem;
	line-height: 1;
	color: var(--hk-ink);
	padding: var(--s-2);
	min-width: 44px;
	min-height: 44px;
}
.hmk-mobile-drawer__nav ul {
	list-style: none;
	margin: 3rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.hmk-mobile-drawer__nav a {
	display: block;
	padding: 1rem 0.25rem;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--hk-line);
}

/* ---------- Cart drawer (right side, Everlane-style) ---------- */

.hmk-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: var(--hmk-z-cart);
	pointer-events: none;
}
.hmk-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 23, 20, 0.4);
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}
.hmk-cart-drawer__panel {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: min(440px, 100vw);
	background: var(--hk-bg);
	transform: translateX(100%);
	transition: transform var(--dur) var(--ease);
	display: flex;
	flex-direction: column;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}
.hmk-cart-drawer.is-open { pointer-events: auto; }
.hmk-cart-drawer.is-open .hmk-cart-drawer__overlay { opacity: 1; }
.hmk-cart-drawer.is-open .hmk-cart-drawer__panel { transform: translateX(0); }

.hmk-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--s-4) var(--s-4);
	border-bottom: 1px solid var(--hk-line);
}
.hmk-cart-drawer__title {
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink);
	margin: 0;
}
.hmk-cart-drawer__close {
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--s-2);
	min-width: 44px;
	min-height: 44px;
	color: var(--hk-ink);
	font-size: 1.375rem;
	line-height: 1;
}
.hmk-cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: var(--s-3) var(--s-4) var(--s-3);
}
.hmk-cart-drawer__footer {
	padding: var(--s-4);
	border-top: 1px solid var(--hk-line);
	background: #fff;
}
.hmk-cart-drawer__totals {
	display: flex;
	justify-content: space-between;
	font-size: 0.9375rem;
	margin-bottom: var(--s-3);
	color: var(--hk-ink);
}
.hmk-cart-drawer__totals strong { font-weight: 700; font-size: 1rem; }
.hmk-cart-drawer__cta {
	display: block;
	width: 100%;
	padding: 1rem;
	background: var(--hk-ink);
	color: var(--hk-bg);
	text-align: center;
	text-decoration: none;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--fs-micro);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid var(--hk-ink);
	cursor: pointer;
	border-radius: 0;
}
.hmk-cart-drawer__cta:hover { background: var(--hk-accent-deep); border-color: var(--hk-accent-deep); }
.hmk-cart-drawer__secondary {
	display: block;
	text-align: center;
	margin-top: var(--s-3);
	font-size: var(--fs-micro);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hk-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hmk-cart-item {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: var(--s-3);
	padding: var(--s-3) 0;
	border-bottom: 1px solid var(--hk-line);
}
.hmk-cart-item__image {
	width: 72px;
	height: 90px;
	background: #fff;
	border: 1px solid var(--hk-line);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hmk-cart-item__image img { max-width: 100%; max-height: 100%; }
.hmk-cart-item__title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--hk-ink);
	margin: 0 0 0.25rem;
	text-decoration: none;
	display: block;
	font-family: var(--font-body);
}
.hmk-cart-item__meta { font-size: var(--fs-cap); color: var(--hk-muted); margin-bottom: var(--s-2); }
.hmk-cart-item__qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--hk-line);
	font-size: var(--fs-cap);
}
.hmk-cart-item__qty button {
	width: 28px; height: 28px; min-height: 28px;
	padding: 0;
	background: #fff;
	border: 0;
	cursor: pointer;
	color: var(--hk-ink);
}
.hmk-cart-item__qty span {
	min-width: 28px;
	display: grid;
	place-items: center;
	border-left: 1px solid var(--hk-line);
	border-right: 1px solid var(--hk-line);
	font-size: var(--fs-cap);
}
.hmk-cart-item__price { font-size: 0.9375rem; color: var(--hk-ink); font-weight: 700; }
.hmk-cart-item__remove {
	background: none;
	border: none;
	color: var(--hk-muted);
	font-size: var(--fs-micro);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
	min-height: auto;
}

.hmk-cart-empty { text-align: center; padding: var(--s-6) var(--s-3); color: var(--hk-muted); }
.hmk-cart-empty__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--hk-ink); margin: 0 0 var(--s-2); }

/* ---------- Hero ---------- */

.hmk-hero {
	position: relative;
	height: 760px;   /* was 720px: +20px top + 20px bottom */
	/* Force viewport-width regardless of parent constraints. WP's alignfull
	   layout rules were getting stripped by Perfmatters' Used CSS feature,
	   leaving the hero respecting its constrained parent on mobile. */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-size: cover;
	background-position: center 20%;
	overflow: hidden;
	color: #fff;
}
.hmk-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 23, 20, 0) 45%, rgba(26, 23, 20, 0.55) 100%);
}
.hmk-hero__copy {
	position: absolute;
	left: 3.5rem;
	bottom: 3.5rem;
	color: #fff;
	max-width: 560px;
	z-index: 2;
}
.hmk-hero__eyebrow {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--fs-micro);
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}
.hmk-hero__title {
	color: #fff !important;
	font-size: 4.25rem;
	line-height: 1.02;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}
.hmk-hero__lede {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.0625rem;
	line-height: 1.6;
	max-width: 460px;
	margin-bottom: 2rem;
	font-family: var(--font-serif);
	font-style: italic;
}
.hmk-hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hmk-hero__ctas .wp-block-button__link {
	background: #fff;
	color: var(--hk-ink);
	border-color: #fff;
}
.hmk-hero__ctas .wp-block-button__link:hover {
	background: var(--hk-accent);
	color: #fff;
	border-color: var(--hk-accent);
}
.hmk-hero__ctas .is-style-outline .wp-block-button__link {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
.hmk-hero__ctas .is-style-outline .wp-block-button__link:hover {
	background: #fff;
	color: var(--hk-ink);
}
.hmk-hero__corner {
	position: absolute;
	top: 2rem;
	right: 2.5rem;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-display);
	font-size: var(--fs-micro);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	z-index: 2;
}
.hmk-hero__corner::before {
	content: "";
	display: inline-block;
	width: 36px;
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
	vertical-align: middle;
	margin-right: 0.75rem;
}

@media (max-width: 959px) {
	.hmk-hero { height: 560px; }
	.hmk-hero__copy { left: 1.25rem; right: 1.25rem; bottom: 2rem; }
	.hmk-hero__title { font-size: 2.5rem; }
	.hmk-hero__corner { top: 1.25rem; right: 1.25rem; font-size: 0.625rem; letter-spacing: 0.2em; }
	.hmk-hero__corner::before { width: 20px; }
}

/* ---------- Editorial trio band ---------- */

.hmk-trio {
	padding: var(--s-7) var(--s-5) var(--s-6);
	max-width: 1320px;
	margin: 0 auto;
}
.hmk-trio__intro {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--s-7);
	margin-bottom: var(--s-6);
	align-items: end;
}
.hmk-trio__intro h2 { font-size: 3rem; line-height: 1.05; letter-spacing: -0.02em; }
.hmk-trio__lede { color: var(--hk-muted); font-size: 1rem; line-height: 1.75; max-width: 460px; font-family: var(--font-serif); font-style: italic; }
.hmk-trio__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.75rem;
}
.hmk-trio__fig { margin: 0; display: flex; flex-direction: column; }
.hmk-trio__fig--offset { margin-top: var(--s-6); }
.hmk-trio__fig--offset2 { margin-top: 1.5rem; }
.hmk-trio__img {
	aspect-ratio: 3 / 4;
	background-size: cover;
	background-position: center;
	background-color: var(--hk-surface);
	filter: saturate(0.92) contrast(1.02);
}
.hmk-trio__cap {
	padding: 1.25rem 0 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: baseline;
	border-top: 1px solid var(--hk-line);
	margin-top: 1.25rem;
}
.hmk-trio__num {
	font-family: var(--font-display);
	font-size: var(--fs-micro);
	color: var(--hk-accent-deep);
	letter-spacing: 0.3em;
}
.hmk-trio__t {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--hk-ink);
	line-height: 1.25;
	margin-bottom: 0.25rem;
	letter-spacing: -0.005em;
}
.hmk-trio__d {
	font-size: var(--fs-cap);
	color: var(--hk-muted);
	line-height: 1.55;
	font-family: var(--font-serif);
	font-style: italic;
}
.hmk-trio__price {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: var(--fs-micro);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink);
	text-decoration: none;
}

@media (max-width: 959px) {
	.hmk-trio { padding: var(--s-6) var(--s-3); }
	.hmk-trio__intro { grid-template-columns: 1fr; gap: var(--s-3); margin-bottom: var(--s-5); }
	.hmk-trio__intro h2 { font-size: 2rem; }
	.hmk-trio__grid { grid-template-columns: 1fr; gap: var(--s-4); }
	.hmk-trio__fig--offset, .hmk-trio__fig--offset2 { margin-top: 0; }
}

/* ---------- Product page (PDP) — right-sticky, multi-image-left ---------- */

.hmk-product-layout {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 0;
	background: var(--hk-white);
	align-items: start;
}

.hmk-product-layout__gallery {
	background: var(--hk-white);
	display: flex;
	flex-direction: column;
	gap: 0;
	border-right: 1px solid var(--hk-line);
}
/* Each product image fills the viewport vertically (acting as a scroll-snap
   target), but the image itself is contained inside a padded canvas — it's
   capped in width and shown in full (no crop, no heads cut off). */
.hmk-product-image {
	width: 100%;
	height: calc(100vh - var(--hmk-header-height, 88px));
	min-height: 520px;
	background: var(--hk-white);
	overflow: hidden;
	position: relative;
	border-bottom: 1px solid var(--hk-line);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	box-sizing: border-box;
}
.hmk-product-image:last-child { border-bottom: 0; }
.hmk-product-image__img,
.hmk-product-image img {
	width: auto;
	height: auto;
	max-width: min(100%, 560px);
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	background: var(--hk-white);
}
/* Scope scroll-snap to the product-page root so it doesn't interfere with
   other pages. Body.single-product is added by Woo on single product templates. */
body.single-product {
	scroll-snap-type: y proximity;
	scroll-padding-top: var(--hmk-header-height, 88px);
}
/* Phones: let the gallery breathe, skip snap (annoying on touch). */
@media (max-width: 899px) {
	.hmk-product-image { height: auto; aspect-ratio: 4 / 5; scroll-snap-align: none; }
	body.single-product { scroll-snap-type: none; }
}

.hmk-product-layout__meta {
	position: sticky;
	top: var(--hmk-header-height);
	padding: 3rem 2.5rem;
	background: var(--hk-white);
	max-height: calc(100vh - var(--hmk-header-height));
	overflow-y: auto;
	align-self: start;
	width: 100%;
	scrollbar-width: thin;
	scrollbar-color: var(--hk-line) transparent;
}
.hmk-product-layout__meta::-webkit-scrollbar { width: 6px; }
.hmk-product-layout__meta::-webkit-scrollbar-thumb { background: var(--hk-line); }

.hmk-product-layout__meta h1,
.hmk-product-layout__meta .wp-block-post-title {
	font-family: var(--font-display) !important;
	font-size: 2.25rem !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.015em !important;
	margin: 0 0 0.75rem !important;
	color: var(--hk-ink) !important;
}
.hmk-product-layout__meta .wc-block-components-product-price,
.hmk-product-layout__meta .price {
	font-family: var(--font-body) !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
	color: var(--hk-ink) !important;
	margin-bottom: 1.5rem !important;
}

/* Woo add-to-cart form: big, square, uppercase button */
.hmk-product-layout__meta form.cart {
	margin: 1.75rem 0 1rem;
}
.hmk-product-layout__meta form.cart button[type="submit"],
.hmk-product-layout__meta .wc-block-components-product-add-to-cart-button {
	display: block !important;
	width: 100% !important;
	min-height: 56px !important;
	padding: 1rem 2.25rem !important;
	background: var(--hk-ink) !important;
	color: var(--hk-bg) !important;
	font-family: var(--font-body) !important;
	font-size: var(--fs-micro) !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	border: 1px solid var(--hk-ink) !important;
	border-radius: 0 !important;
	cursor: pointer;
}
.hmk-product-layout__meta form.cart button[type="submit"]:hover,
.hmk-product-layout__meta .wc-block-components-product-add-to-cart-button:hover {
	background: var(--hk-accent-deep) !important;
	border-color: var(--hk-accent-deep) !important;
}

/* Size selector buttons (not dropdowns) */
.hmk-product-layout__meta .variations select,
.hmk-product-layout__meta select {
	min-height: 52px;
	padding: 0 1rem;
	font-size: 0.95rem;
	border: 1px solid var(--hk-line);
	background: var(--hk-white);
	border-radius: 0;
	width: 100%;
	font-family: var(--font-body);
}

/* Size swatches — fixed squares in an outlined row (S M L XL 2X …) */
.hmk-product-layout__meta .hmk-sizes,
.hmk-product-layout__meta ul.variable-items-wrapper,
.hmk-product-layout__meta .hmk-size-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1.75rem;
	list-style: none;
	padding: 0;
}
.hmk-sizes button,
.hmk-size-buttons button,
.hmk-size-buttons li {
	width: 52px;
	height: 52px;
	min-height: 52px;
	background: #fff;
	border: 1px solid var(--hk-line);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--hk-ink);
	cursor: pointer;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
	padding: 0;
}
.hmk-sizes button:hover,
.hmk-size-buttons button:hover,
.hmk-size-buttons li:hover { border-color: var(--hk-ink); }
.hmk-sizes button.is-selected,
.hmk-size-buttons button.is-selected,
.hmk-size-buttons li.selected {
	background: var(--hk-ink);
	color: var(--hk-bg);
	border-color: var(--hk-ink);
}

.hmk-size-buttons__label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-muted, #7A7065);
	margin: 0 0 0.5rem;
}
.hmk-size-buttons__label strong { color: var(--hk-ink, #1A1714); font-weight: 700; }

/* Out-of-stock size: straight diagonal slash, upper-left to lower-right */
.hmk-sizes button.is-oos,
.hmk-size-buttons button.is-oos,
.hmk-size-buttons li.oos {
	color: var(--hk-muted);
	background: var(--hk-surface);
	border-color: var(--hk-line);
	position: relative;
	cursor: not-allowed;
	overflow: hidden;
}
.hmk-sizes button.is-oos::after,
.hmk-size-buttons button.is-oos::after,
.hmk-size-buttons li.oos::after {
	content: "";
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	background: linear-gradient(
		to top right,
		transparent calc(50% - 0.5px),
		var(--hk-muted) calc(50% - 0.5px),
		var(--hk-muted) calc(50% + 0.5px),
		transparent calc(50% + 0.5px)
	);
	pointer-events: none;
}

@media (max-width: 959px) {
	.hmk-product-layout { grid-template-columns: 1fr; }
	.hmk-product-layout__gallery { border-right: 0; }
	.hmk-product-layout__meta {
		position: relative;
		top: 0;
		max-height: none;
		overflow-y: visible;
		padding: 2rem 1.5rem 5rem;
	}
}

/* ---------- Sticky Add-to-Cart bar (mobile only, PDP) ---------- */

.hmk-sticky-atc {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 100;
	background: var(--hk-bg);
	border-top: 1px solid var(--hk-line);
	padding: 0.75rem 1rem;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
	display: none;
	align-items: center;
	gap: 0.75rem;
	transform: translateY(100%);
	transition: transform var(--dur) var(--ease);
}
.hmk-sticky-atc.is-visible { transform: translateY(0); }
.hmk-sticky-atc__title {
	flex: 1;
	font-family: var(--font-body);
	font-size: var(--fs-cap);
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--hk-ink);
}
.hmk-sticky-atc__price { font-size: var(--fs-cap); color: var(--hk-muted); }
.hmk-sticky-atc__cta {
	background: var(--hk-ink);
	color: var(--hk-bg);
	padding: 0.875rem 1.25rem;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: var(--fs-micro);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--hk-ink);
}
@media (max-width: 782px) {
	body.single-product .hmk-sticky-atc { display: flex; }
	body.single-product footer { padding-bottom: 5rem; }
}

/* ---------- Details / collapsibles ---------- */

.wp-block-details,
.hmk-product-layout__meta details {
	border-bottom: 1px solid var(--hk-line);
	padding: 1rem 0;
	margin: 0;
}
.wp-block-details summary,
.hmk-product-layout__meta details > summary {
	cursor: pointer;
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	list-style: none;
	padding: 0.25rem 2rem 0.25rem 0;
	position: relative;
	color: var(--hk-ink);
}
.wp-block-details summary::-webkit-details-marker,
.hmk-product-layout__meta details > summary::-webkit-details-marker { display: none; }
.wp-block-details summary::after,
.hmk-product-layout__meta details > summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hk-accent-deep);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1;
}
.wp-block-details[open] summary::after,
.hmk-product-layout__meta details[open] > summary::after { content: "−"; }
.wp-block-details p,
.hmk-product-layout__meta details p {
	margin-top: 0.75rem;
	font-size: var(--fs-sm);
	color: var(--hk-muted);
	line-height: 1.6;
}

/* ---------- Trust strip ---------- */

.hmk-trust-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin: 1rem 0 0;
	padding: 0.5rem 1rem;
	background: var(--hk-surface);
	border: 1px solid var(--hk-line);
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hk-muted);
}
.hmk-trust-strip__sep { color: var(--hk-line); }

/* ---------- Badges on product cards ---------- */

.hmk-badge {
	display: inline-block;
	padding: 0.3rem 0.625rem;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink);
	background: var(--hk-surface);
	border: 1px solid var(--hk-line);
	line-height: 1.2;
}
.hmk-badge--dark { background: var(--hk-ink); color: var(--hk-bg); border-color: var(--hk-ink); }
.hmk-badge--gold { background: var(--hk-accent); color: var(--hk-ink); border-color: var(--hk-accent); }
.hmk-badge--groom { background: var(--hk-ink); color: var(--hk-bg); border-color: var(--hk-ink); }
.hmk-badge--wedding { background: var(--hk-accent); color: var(--hk-bg); border-color: var(--hk-accent); }

/* ---------- Checkout polish ---------- */

.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="number"],
.wc-block-checkout select {
	min-height: 48px;
	font-family: var(--font-body);
	font-size: 1rem;
	border-radius: 0;
	border: 1px solid var(--hk-line);
	background: var(--hk-white);
}
.wc-block-checkout__actions button,
.wc-block-components-checkout-place-order-button {
	min-height: 56px !important;
	font-family: var(--font-body) !important;
	font-size: var(--fs-micro) !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	background: var(--hk-ink) !important;
	color: var(--hk-bg) !important;
}
.wc-block-components-validation-error { font-size: var(--fs-cap); color: var(--hk-error); }
.wc-block-components-express-payment {
	padding: 1rem 0 1.25rem;
	border-bottom: 1px solid var(--hk-line);
	margin-bottom: var(--s-4);
	background: var(--hk-white);
}
.wc-block-components-express-payment__event-buttons button { min-height: 52px !important; border-radius: 0 !important; }

/* ---------- My Account ---------- */

.woocommerce-account .woocommerce,
.woocommerce-account main { background: var(--hk-bg); }

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--s-5);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
	border-bottom: 1px solid var(--hk-line);
}
.woocommerce-MyAccount-navigation li { margin: 0; padding: 0; list-style: none; }
/* Hard reset — the global .woocommerce a.button pill rule must NOT apply here. */
.woocommerce-MyAccount-navigation a,
.woocommerce-MyAccount-navigation li a {
	display: inline-block;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
	border-radius: 0 !important;
	min-height: 0;
	padding: 0.75rem 0;
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hk-body);
	text-decoration: none;
	border: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: border-color 160ms ease, color 160ms ease;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
	color: var(--hk-ink) !important;
	background: transparent !important;
	text-decoration: none !important;
	border-bottom-color: var(--hk-muted, #7A7065);
}

/* ---------- Featured product grid (curated homepage picks) ---------- */

.hmk-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
}

.hmk-featured-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hmk-featured-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hmk-featured-grid--1 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

.hmk-featured-grid__card {
	display: flex;
	flex-direction: column;
	background: var(--hk-white);
	border: 1px solid var(--hk-line);
	text-decoration: none;
	color: inherit;
	transition: border-color var(--dur) var(--ease);
	min-height: 0;
}
.hmk-featured-grid__card:hover { border-color: var(--hk-ink); }

.hmk-featured-grid__img {
	aspect-ratio: 4 / 5;
	background: var(--hk-white);
	overflow: hidden;
	display: block;
	border-bottom: 1px solid var(--hk-line);
}
.hmk-featured-grid__img img,
.hmk-featured-grid__img-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: var(--hk-white);
}

.hmk-featured-grid__placeholder {
	width: 100%;
	height: 100%;
	background: var(--hk-surface);
}

.hmk-featured-grid__meta {
	padding: 0.875rem 1rem 1.125rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.hmk-featured-grid__name {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 700;
	/* Card bg is fixed white (--hk-white) — text must be dark regardless
	   of light/dark site theme. Hardcoded brand green so the dark-mode
	   --hk-ink swap doesn't make this cream-on-white. */
	color: #0d2a26;
	letter-spacing: 0.01em;
	line-height: 1.3;
}
.hmk-featured-grid__price {
	font-family: var(--font-body);
	font-size: var(--fs-cap);
	color: var(--hk-muted);
	line-height: 1.4;
}
.hmk-featured-grid__price del { color: var(--hk-muted); opacity: 0.6; }
.hmk-featured-grid__price ins { text-decoration: none; color: var(--hk-ink); }

.hmk-featured-grid__empty,
.hmk-featured-grid__notice {
	padding: 1.25rem;
	border: 1px dashed var(--hk-line);
	text-align: center;
	color: var(--hk-muted);
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}
.hmk-featured-grid__notice {
	border: 0;
	padding: 0.75rem 0 0;
	text-align: center;
	font-size: 0.7rem;
	opacity: 0.6;
}

@media (max-width: 959px) {
	.hmk-featured-grid,
	.hmk-featured-grid--3,
	.hmk-featured-grid--2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
@media (max-width: 560px) {
	.hmk-featured-grid,
	.hmk-featured-grid--3,
	.hmk-featured-grid--2 {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* ---------- Newsletter popup modal ---------- */

.hmk-newsletter-modal {
	position: fixed;
	inset: 0;
	z-index: var(--hmk-z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(26, 23, 20, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms var(--ease);
}
.hmk-newsletter-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.hmk-newsletter-modal__panel {
	background: var(--hk-bg);
	width: min(480px, 100%);
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	transform: translateY(20px);
	transition: transform 300ms var(--ease);
	position: relative;
	border: 1px solid var(--hk-line);
}
.hmk-newsletter-modal.is-open .hmk-newsletter-modal__panel {
	transform: translateY(0);
}

.hmk-newsletter-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 36px;
	height: 36px;
	min-height: 36px;
	padding: 0;
	background: #0d2a26;
	border: 1px solid #0d2a26;
	cursor: pointer;
	color: #F5EFE4;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	z-index: 2;
	border-radius: 50%;
}
.hmk-newsletter-modal__close:hover { background: #1a3d36; border-color: #1a3d36; }

.hmk-newsletter-modal__image {
	aspect-ratio: 3 / 2;
	background-size: cover;
	/* Pin image to the top so faces/heads stay in frame — people photos
	   should crop from the bottom, not the top. */
	background-position: center top;
	background-color: var(--hk-surface);
}

.hmk-newsletter-modal__body {
	padding: 1.75rem 1.75rem 2rem;
	text-align: center;
}

.hmk-newsletter-modal__eyebrow {
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent-deep);
	margin: 0 0 0.5rem;
}

.hmk-newsletter-modal__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--hk-ink);
	margin: 0 0 0.75rem;
}

.hmk-newsletter-modal__copy {
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: var(--fs-sm);
	color: var(--hk-muted);
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.hmk-newsletter-modal__form {
	display: flex;
	border: 1px solid var(--hk-ink);
	margin: 0;
}
.hmk-newsletter-modal__form input {
	flex: 1;
	min-width: 0;
	min-height: 48px;
	padding: 0 1rem;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 0.9375rem;
	color: var(--hk-ink);
	outline: none;
	font-family: var(--font-body);
}
.hmk-newsletter-modal__form input::placeholder { color: var(--hk-muted); }
.hmk-newsletter-modal__form button {
	background: var(--hk-ink);
	color: var(--hk-bg);
	border: 0;
	padding: 0 1.25rem;
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 0;
	min-height: 48px;
	min-width: 44px;
}
.hmk-newsletter-modal__form button:hover { background: var(--hk-accent-deep); }
.hmk-newsletter-modal__form button:disabled { opacity: 0.5; cursor: not-allowed; }

.hmk-newsletter-modal__micro {
	font-size: var(--fs-micro);
	color: var(--hk-muted);
	margin: 1rem 0 0;
	letter-spacing: 0.02em;
}

.hmk-newsletter-modal__success {
	display: none;
	padding: 0.5rem 0;
}
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__form,
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__copy,
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__micro,
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__title,
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__eyebrow { display: none; }
.hmk-newsletter-modal.is-success .hmk-newsletter-modal__success { display: block; }

/* ---------- Full-bleed helpers + misc ---------- */

.hmk-fullbleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.hmk-reviews-placeholder {
	padding: 1.5rem;
	border: 1px dashed var(--hk-line);
	color: var(--hk-muted);
	text-align: center;
	font-size: var(--fs-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hmk-help-callout {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: var(--hk-surface);
	border: 1px solid var(--hk-line);
	font-size: var(--fs-sm);
	margin: 1rem 0;
}

/* ---------- Footer newsletter band (dark) ---------- */

.hmk-foot-top {
	background: var(--hk-ink);
	color: var(--hk-bg);
	padding: 4.5rem var(--s-5);
}
.hmk-foot-top__inner {
	max-width: 960px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--s-6);
	align-items: center;
}
.hmk-foot-top h3 { color: var(--hk-bg); font-size: 2rem; margin-bottom: 0.75rem; }
.hmk-foot-top p { color: rgba(245, 239, 228, 0.72); font-size: 0.9375rem; }
.hmk-foot-top__form { display: flex; border: 1px solid var(--hk-bg); }
.hmk-foot-top__form input {
	flex: 1;
	background: transparent;
	color: var(--hk-bg);
	border: 0;
	padding: 0 1rem;
	min-height: 48px;
	outline: none;
	font-family: var(--font-body);
	font-size: 0.9375rem;
}
.hmk-foot-top__form input::placeholder { color: rgba(245, 239, 228, 0.5); }
.hmk-foot-top__form button {
	background: var(--hk-bg);
	color: var(--hk-ink);
	border: 0;
	padding: 0 1.5rem;
	font-family: var(--font-body);
	font-size: var(--fs-micro);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
}
.hmk-foot-top__micro { font-size: var(--fs-micro); color: rgba(245, 239, 228, 0.55); margin-top: 0.75rem; }

@media (max-width: 959px) {
	.hmk-foot-top__inner { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* =============================================================
   2026 Sitemap Restructure — Mega-menu, Shop Archive, Nav Search
   ============================================================= */

/* ---- Mega menu ---- */
.hmk-mega { display: block; }
.hmk-mega__list { display: flex; gap: var(--s-4, 1.5rem); list-style: none; margin: 0; padding: 0; }
.hmk-mega__item { position: relative; }
.hmk-mega__trigger {
	display: inline-block;
	padding: 0.625rem 0.25rem;
	text-decoration: none;
	color: var(--hk-ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	transition: border-color 160ms ease, color 160ms ease;
}
.hmk-mega__item:hover > .hmk-mega__trigger,
.hmk-mega__item:focus-within > .hmk-mega__trigger {
	border-bottom-color: var(--hk-muted, #7A7065);
	text-decoration: none;
}
.hmk-mega__panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	box-shadow: 0 8px 24px rgba(26, 23, 20, 0.08);
	padding: 0.75rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 0s 180ms;
	z-index: 1100;
}
.hmk-mega__panel--wide { display: grid; grid-template-columns: repeat(3, minmax(160px, 1fr)); gap: 1.5rem; min-width: 560px; }
.hmk-mega__item:hover > .hmk-mega__panel,
.hmk-mega__item:focus-within > .hmk-mega__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
}
.hmk-mega__panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.hmk-mega__panel a {
	display: inline-block;
	padding: 0.5rem 0.625rem;
	text-decoration: none;
	color: var(--hk-body, #2B2622);
	font-size: 0.9375rem;
	background: transparent;
	box-shadow: 0 0 0 rgba(26,23,20,0);
	transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
	will-change: transform;
}
.hmk-mega__panel a:hover {
	background: var(--hk-bg, #F5EFE4);
	color: var(--hk-ink, #1A1714);
	box-shadow: 0 2px 4px rgba(26,23,20,0.06), 0 10px 22px rgba(26,23,20,0.12);
	transform: translateY(-3px);
	text-decoration: none;
}
.hmk-mega__label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.6875rem; color: var(--hk-muted, #7A7065); margin: 0 0 0.5rem; }
@media (max-width: 959px) {
	.hmk-mega { display: none; }
}

/* ---- Shop archive layout: sidebar + grid ---- */
.hmk-shop {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: var(--s-5, 2.5rem);
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--s-3, 1rem);
}
.hmk-shop__sidebar {
	position: sticky;
	top: var(--hmk-header-h, 88px);
	align-self: start;
	max-height: calc(100vh - var(--hmk-header-h, 88px));
	overflow-y: auto;
	border-right: 1px solid var(--hk-line, #D9CFBD);
	padding-right: var(--s-3, 1rem);
}
.hmk-shop__grid { min-width: 0; }
.hmk-shop__grid .wc-block-product-template,
.hmk-shop__grid .wp-block-woocommerce-product-template {
	display: grid;
	grid-template-columns: repeat(var(--hmk-grid-cols, 3), minmax(0, 1fr));
	gap: var(--s-4, 1.5rem);
}
@media (max-width: 959px) {
	.hmk-shop { grid-template-columns: 1fr; gap: 0; padding: 0; }
	.hmk-shop__sidebar {
		position: fixed;
		inset: 0;
		z-index: 1100;
		background: var(--hk-bg, #F5EFE4);
		max-height: none;
		padding: var(--s-4, 1.5rem);
		transform: translateX(-100%);
		transition: transform 240ms ease;
		border-right: 0;
	}
	.hmk-shop__sidebar.is-open { transform: translateX(0); }
	.hmk-shop__grid .wc-block-product-template,
	.hmk-shop__grid .wp-block-woocommerce-product-template {
		grid-template-columns: repeat(var(--hmk-grid-cols-mobile, 2), minmax(0, 1fr));
	}
}
.hmk-no-scroll { overflow: hidden; }

/* ---- Toolbar ---- */
.hmk-shop-toolbar { border-bottom: 1px solid var(--hk-line, #D9CFBD); margin: 0 auto; max-width: 1240px; padding: 0 var(--s-3, 1rem); }
.hmk-shop-toolbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; }
.hmk-shop-toolbar__filters-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.5rem 0.875rem;
	font-family: var(--font-body);
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}
.hmk-shop-toolbar__count { color: var(--hk-muted, #7A7065); font-weight: normal; letter-spacing: 0; text-transform: none; }
.hmk-shop-toolbar__grid-switch { display: inline-flex; border: 1px solid var(--hk-line, #D9CFBD); }
.hmk-shop-toolbar__grid-switch button {
	background: transparent;
	border: 0;
	padding: 0.5rem 0.625rem;
	cursor: pointer;
	border-right: 1px solid var(--hk-line, #D9CFBD);
	color: var(--hk-muted, #7A7065);
}
.hmk-shop-toolbar__grid-switch button:last-child { border-right: 0; }
.hmk-shop-toolbar__grid-switch button[aria-pressed="true"] { background: var(--hk-ink, #1A1714); color: var(--hk-bg, #F5EFE4); }
.hmk-shop-toolbar__sort select {
	background: transparent;
	border: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	font-family: var(--font-body);
	font-size: 0.8125rem;
}
@media (max-width: 599px) {
	.hmk-shop-toolbar__sort { display: none; }
}

/* ---- Sidebar facets ---- */
.hmk-shop-sidebar__form { padding-top: var(--s-4, 1.5rem); }
.hmk-shop-sidebar__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-3, 1rem); }
.hmk-shop-sidebar__title { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0; }
.hmk-shop-sidebar__close { display: none; background: transparent; border: 0; font-size: 1.75rem; line-height: 1; cursor: pointer; }
@media (max-width: 959px) { .hmk-shop-sidebar__close { display: inline-block; } }
.hmk-facet { border-top: 1px solid var(--hk-line, #D9CFBD); padding: 1rem 0; }
.hmk-facet summary {
	list-style: none;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.25rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hmk-facet summary::-webkit-details-marker { display: none; }
.hmk-facet summary::after { content: "+"; font-weight: 300; font-size: 1.25rem; }
.hmk-facet[open] summary::after { content: "-"; }
.hmk-facet__body { padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.hmk-facet__body--chips { flex-direction: row; flex-wrap: wrap; }
.hmk-facet__option { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.hmk-facet__option input { accent-color: var(--hk-accent, #b79d70); }
.hmk-facet__count { margin-left: auto; color: var(--hk-muted, #7A7065); font-size: 0.75rem; }
.hmk-facet__chip { position: relative; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hk-line, #D9CFBD); padding: 0.375rem 0.625rem; font-size: 0.8125rem; cursor: pointer; min-width: 44px; text-align: center; }
.hmk-facet__chip input { position: absolute; opacity: 0; pointer-events: none; }
.hmk-facet__chip:has(input:checked) { background: var(--hk-ink, #1A1714); color: var(--hk-bg, #F5EFE4); border-color: var(--hk-ink, #1A1714); }
.hmk-facet__chip--extended { flex-basis: 100%; }

.hmk-price-range { display: grid; gap: 0.5rem; }
.hmk-price-range input[type="range"] { width: 100%; }
.hmk-price-range__values { font-size: 0.8125rem; color: var(--hk-muted, #7A7065); }

.hmk-shop-sidebar__actions { display: flex; gap: 0.5rem; margin-top: var(--s-4, 1.5rem); padding-top: var(--s-3, 1rem); border-top: 1px solid var(--hk-line, #D9CFBD); }
/* .hmk-btn and .hmk-btn--ghost now inherit from the global button rule above.
   The sidebar-specific tweak: inside .hmk-shop-sidebar__actions, buttons share
   the row 50/50. */
.hmk-shop-sidebar__actions .hmk-btn { flex: 1; }

/* ---- Nav search ---- */
.hmk-nav-search { position: relative; }
.hmk-nav-search__toggle { background: transparent; border: 0; color: inherit; padding: 0.5rem; cursor: pointer; }
.hmk-nav-search__panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: min(420px, 92vw);
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	box-shadow: 0 8px 24px rgba(26, 23, 20, 0.08);
	z-index: 1100;
	padding: 0.75rem;
}
@media (max-width: 640px) {
	.hmk-nav-search__panel {
		position: fixed;
		top: 64px;
		left: 0.5rem;
		right: 0.5rem;
		width: auto;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}
}
.hmk-nav-search__form { display: flex; align-items: center; gap: 0.5rem; }
.hmk-nav-search__input {
	flex: 1;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.5rem 0;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	outline: none;
}
.hmk-nav-search__close { background: transparent; border: 0; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.hmk-nav-search__results { margin-top: 0.5rem; max-height: 60vh; overflow-y: auto; }
.hmk-nav-search__section { border-top: 1px solid var(--hk-line, #D9CFBD); padding-top: 0.5rem; margin-top: 0.5rem; }
.hmk-nav-search__section-label { font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hk-muted, #7A7065); margin: 0 0 0.375rem; }
.hmk-nav-search__result { display: flex; align-items: center; gap: 0.625rem; padding: 0.375rem; text-decoration: none; color: var(--hk-ink, #1A1714); }
.hmk-nav-search__result:hover, .hmk-nav-search__result.is-focused { background: var(--hk-surface, #EDE5D4); }
.hmk-nav-search__result img, .hmk-nav-search__thumb-fallback { width: 48px; height: 48px; object-fit: cover; background: #fff; flex-shrink: 0; }
.hmk-nav-search__meta { display: flex; flex-direction: column; }
.hmk-nav-search__title { font-size: 0.875rem; }
.hmk-nav-search__price { font-size: 0.75rem; color: var(--hk-muted, #7A7065); }
.hmk-nav-search__result--cat { font-size: 0.875rem; }
.hmk-nav-search__see-all { display: block; text-align: center; margin-top: 0.5rem; padding: 0.5rem; font-size: 0.8125rem; text-decoration: underline; color: var(--hk-accent-deep, #5E4823); }
.hmk-nav-search__popular { margin-top: 0.75rem; }
.hmk-nav-search__popular-label { font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hk-muted, #7A7065); margin: 0 0 0.375rem; }
.hmk-nav-search__popular ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.hmk-nav-search__popular a { font-size: 0.875rem; color: var(--hk-body, #2B2622); text-decoration: none; }
.hmk-nav-search__popular a:hover { color: var(--hk-accent-deep, #5E4823); text-decoration: underline; }

/* =============================================================
   Settings panel — gear icon, toggles, dark mode, font size, reduce motion
   ============================================================= */

.hmk-settings { position: relative; }
.hmk-settings__toggle { background: transparent; border: 0; color: inherit; padding: 0.5rem; cursor: pointer; }
.hmk-settings__panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: 280px;
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	box-shadow: 0 8px 24px rgba(26, 23, 20, 0.08);
	z-index: 1100;
	padding: 1rem 1.25rem;
}
.hmk-settings__title {
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-muted, #7A7065);
	margin: 0 0 0.75rem;
}
.hmk-settings__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.625rem 0;
	border-top: 1px solid var(--hk-line, #D9CFBD);
}
.hmk-settings__row:first-of-type { border-top: 0; padding-top: 0; }
.hmk-settings__row--stack { flex-direction: column; align-items: stretch; gap: 0.5rem; }
.hmk-settings__label { font-size: 0.875rem; color: var(--hk-body, #2B2622); }
.hmk-settings__reset {
	margin-top: 0.75rem;
	width: 100%;
	background: transparent;
	border: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.5rem 0.75rem;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-muted, #7A7065);
	cursor: pointer;
}
.hmk-settings__reset:hover { color: var(--hk-ink, #1A1714); border-color: var(--hk-ink, #1A1714); }

/* ---- Toggle switch (reusable) ---- */
.hmk-toggle { background: transparent; border: 0; padding: 0; cursor: pointer; }
.hmk-toggle__track {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 20px;
	background: var(--hk-line, #D9CFBD);
	border-radius: 12px;
	transition: background-color 200ms ease;
}
.hmk-toggle__thumb {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	transition: transform 200ms ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.hmk-toggle[aria-checked="true"] .hmk-toggle__track { background: var(--hk-accent, #b79d70); }
.hmk-toggle[aria-checked="true"] .hmk-toggle__thumb { transform: translateX(16px); }

/* ---- Theme switch (moon | toggle | sun) ---- */
.hmk-theme-switch { display: inline-flex; align-items: center; gap: 0.5rem; }
.hmk-theme-switch__icon { color: var(--hk-muted, #8A7F6E); transition: color 200ms ease; flex: 0 0 auto; }
.hmk-theme-switch:has(.hmk-toggle[aria-checked="false"]) .hmk-theme-switch__icon--moon,
.hmk-theme-switch:has(.hmk-toggle[aria-checked="true"])  .hmk-theme-switch__icon--sun {
	color: var(--hk-accent, #b79d70);
}

/* ---- Text-size picker ---- */
.hmk-fontsize { display: inline-flex; gap: 0.5rem; }
.hmk-fontsize__btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	background: transparent;
	border: 1px solid var(--hk-line, #D9CFBD);
	border-radius: 4px;
	cursor: pointer;
	color: var(--hk-body, #2B2622);
}
.hmk-fontsize__btn.is-active { border-color: var(--hk-ink, #1A1714); color: var(--hk-ink, #1A1714); }
.hmk-fontsize__glyph { font-family: var(--font-display, Georgia), serif; }
.hmk-fontsize__glyph--sm { font-size: 1rem; font-weight: 400; }
.hmk-fontsize__glyph--lg { font-size: 1.375rem; font-weight: 700; }

/* =============================================================
   Dark mode — palette inversion. Applied via <html class="hmk-dark">.
   Product image canvases soften to cream (#F5EFE4) in dark mode
   so light panels don't punch through the dark UI.
   ============================================================= */

html.hmk-dark {
	--hk-bg: #1A1714;
	--hk-surface: #2B2622;
	--hk-ink: #F5EFE4;
	--hk-body: #EDE5D4;
	--hk-muted: #A89B85;
	--hk-line: #3A332B;
	--hk-accent: #B79D70;
	--hk-accent-deep: #b79d70;
}
/* Bridge the WP custom-prop palette used by block editor -> same tokens. */
html.hmk-dark {
	--wp--preset--color--bg: #1A1714;
	--wp--preset--color--surface: #2B2622;
	--wp--preset--color--ink: #F5EFE4;
	--wp--preset--color--body: #EDE5D4;
	--wp--preset--color--muted: #A89B85;
	--wp--preset--color--line: #3A332B;
	--wp--preset--color--accent: #B79D70;
	--wp--preset--color--accent-deep: #b79d70;
}
html.hmk-dark body { background: var(--hk-bg); color: var(--hk-body); }
html.hmk-dark .hmk-header { background: var(--hk-bg); border-bottom-color: var(--hk-accent, #B79D70); }
html.hmk-dark .hmk-header__logo::after { border-color: var(--hk-accent, #B79D70); }
html.hmk-dark .hmk-mega__panel,
html.hmk-dark .hmk-nav-search__panel,
html.hmk-dark .hmk-settings__panel { background: var(--hk-surface); border-color: var(--hk-line); }
html.hmk-dark .hmk-toggle__thumb { background: #F5EFE4; }
/* Product image canvases: soften stark white → cream (#F5EFE4) so the
   light panels don't punch through the dark UI. */
html.hmk-dark .wc-block-components-product-image,
html.hmk-dark .woocommerce-product-gallery img,
html.hmk-dark .hmk-cart-item__image,
html.hmk-dark .hmk-bundle__img,
html.hmk-dark .hmk-featured-grid__img,
html.hmk-dark .hmk-groom__image { background: #F5EFE4; }

/* ---- Primary buttons: gold bg stays gold in both modes,
        so text must stay dark for contrast (not flip with --hk-ink). ---- */
html.hmk-dark .wp-block-button__link,
html.hmk-dark .hk-btn,
html.hmk-dark button.hmk-btn,
html.hmk-dark .hmk-btn,
html.hmk-dark .hmk-footer__newsletter-form button,
html.hmk-dark .woocommerce a.button,
html.hmk-dark .woocommerce button.button,
html.hmk-dark .woocommerce button[type="submit"],
html.hmk-dark .woocommerce-page a.button,
html.hmk-dark .woocommerce-page button.button { color: #1A1714; }

/* Ghost/outline variants on normal pages DO want cream text in dark mode
   (they sit on bg/surface, not on gold). Section-specific ghosts inside
   hardcoded-dark sections (.hmk-about-cta, .hmk-timeline, .hmk-still-unsure,
   .hmk-final-cta) already define their own rules and stay correct. */
html.hmk-dark .is-style-outline .wp-block-button__link,
html.hmk-dark .hk-btn--secondary,
html.hmk-dark .hk-btn--ghost,
html.hmk-dark .hmk-btn--ghost { color: var(--hk-ink, #F5EFE4); }
html.hmk-dark .is-style-outline .wp-block-button__link:hover,
html.hmk-dark .hk-btn--secondary:hover,
html.hmk-dark .hk-btn--ghost:hover,
html.hmk-dark .hmk-btn--ghost:hover { color: #1A1714; }

/* Hero outline hover: bg goes light on hover — soften to cream + dark ink text. */
html.hmk-dark .hmk-hero__ctas .is-style-outline .wp-block-button__link:hover {
	background: #F5EFE4;
	color: #1A1714;
}

/* Final CTA ("Get your wedding look right") — in dark mode the section
   inverts to a cream bg. Swap text from dark brown to brand dark green. */
html.hmk-dark .hmk-final-cta,
html.hmk-dark .hmk-final-cta h2,
html.hmk-dark .hmk-final-cta__inner p { color: #0d2a26; }
html.hmk-dark .hmk-final-cta__inner p { color: rgba(13,42,38,0.82); }
html.hmk-dark .hmk-final-cta .hk-btn--ghost {
	color: #0d2a26;
	border-color: #0d2a26;
}
html.hmk-dark .hmk-final-cta .hk-btn--ghost:hover {
	background: #0d2a26;
	color: #F5EFE4;
	border-color: #0d2a26;
}

/* ---- Hardcoded white chrome → surface in dark mode ---- */
html.hmk-dark .hmk-cart-drawer__footer,
html.hmk-dark .hmk-cart-item__qty button,
html.hmk-dark .hmk-size-buttons li,
html.hmk-dark .hmk-nav-search__thumb-fallback { background: var(--hk-surface, #2B2622); }
html.hmk-dark .hmk-cart-item__qty button { color: var(--hk-body, #EDE5D4); }

/* =============================================================
   Font size — "large" bumps the rem root 112.5%
   ============================================================= */
html.hmk-fontsize-large { font-size: 112.5%; }

/* =============================================================
   Reduce motion — neutralize transitions/animations globally
   ============================================================= */
html.hmk-reduce-motion *,
html.hmk-reduce-motion *::before,
html.hmk-reduce-motion *::after {
	animation-duration: 0s !important;
	animation-delay: 0s !important;
	transition-duration: 0s !important;
	transition-delay: 0s !important;
	scroll-behavior: auto !important;
}

/* =============================================================
   Homepage redesign — shop-by-role cards, bundle, trust, testimonials,
   steps, final CTA, footer, contact form
   ============================================================= */

/* ---- Shop by role (4 cards, lift on hover) ---- */
.hmk-roles {
	background: var(--hk-bg, #F5EFE4);
}
.hmk-roles__inner { max-width: 1560px; margin: 0 auto; }
.hmk-roles__heading { text-align: center; margin: 0 auto 3rem; max-width: 720px; }
.hmk-roles__heading h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 0.75rem; }
.hmk-roles__heading p { color: var(--hk-muted, #7A7065); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 1.0625rem; margin: 0; }
.hmk-roles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}
.hmk-role-card {
	display: flex;
	flex-direction: column;
	background: var(--hk-bg, #F5EFE4);
	color: var(--hk-ink, #1A1714);
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(26,23,20,0.04), 0 4px 12px rgba(26,23,20,0.04);
	transition: transform 240ms ease, box-shadow 240ms ease;
}
.hmk-role-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 4px 8px rgba(26,23,20,0.06), 0 18px 36px rgba(26,23,20,0.12);
}
.hmk-role-card__image {
	aspect-ratio: 4/5;
	background-color: var(--hk-surface, #EDE5D4);
	background-size: cover;
	background-position: center;
}
.hmk-role-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.hmk-role-card__body h3 { font-size: 1.375rem; margin: 0; }
.hmk-role-card__body p { color: var(--hk-muted, #7A7065); font-size: 0.9375rem; line-height: 1.55; margin: 0; }
.hmk-role-card__cta {
	margin-top: 0.75rem;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink, #1A1714);
}
@media (max-width: 1199px) {
	.hmk-roles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 599px) {
	.hmk-roles { padding: 4rem 1.25rem !important; }
	.hmk-roles__grid { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
}

/* ---- Bundle spotlight (weave texture) ---- */
.hmk-bundle {
	position: relative;
	padding: 6rem 3rem;
	background-color: var(--hk-surface, #EDE5D4);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><g fill='none' stroke='%231A1714' stroke-opacity='0.05' stroke-width='1'><path d='M0 6 L24 6 M0 12 L24 12 M0 18 L24 18'/><path d='M6 0 L6 24 M12 0 L12 24 M18 0 L18 24'/></g></svg>");
	background-size: 24px 24px;
	background-attachment: fixed;
}
.hmk-bundle__inner {
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 4.5rem;
	align-items: center;
}
.hmk-bundle__img {
	aspect-ratio: 5/6;
	border: 1px solid var(--hk-line, #D9CFBD);
	background: #FFFFFF;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.hmk-bundle__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;  /* anchor to top — never crop heads */
	display: block;
}
.hmk-bundle__body h2 { font-size: clamp(2.25rem, 3.2vw, 3rem); margin: 0.75rem 0 1.25rem; }
.hmk-bundle__lede { color: var(--hk-body, #2B2622); font-size: 1rem; line-height: 1.7; max-width: 460px; margin: 0 0 1rem; }
.hmk-bundle__note { color: var(--hk-muted, #7A7065); font-family: Georgia, "Times New Roman", serif; font-style: italic; line-height: 1.65; max-width: 460px; margin: 0 0 2rem; }
.hmk-bundle__stats { display: flex; gap: 2rem; margin: 0 0 2rem; padding: 0; }
.hmk-bundle__stats div { display: flex; flex-direction: column; }
.hmk-bundle__stats dt { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hk-muted, #7A7065); order: 2; margin-top: 0.25rem; }
.hmk-bundle__stats dd { font-family: var(--font-display); font-size: 1.5rem; color: var(--hk-ink, #1A1714); margin: 0; order: 1; }
@media (max-width: 899px) {
	.hmk-bundle { padding: 4rem 1.5rem; background-attachment: scroll; }
	.hmk-bundle__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
	.hmk-bundle__stats { gap: 1.25rem; flex-wrap: wrap; }
}

/* ---- Most chosen product grid: fix cropping ---- */
.hmk-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}
.hmk-featured-grid__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--hk-ink, #1A1714);
	transition: transform 240ms ease;
}
.hmk-featured-grid__card:hover { transform: translateY(-4px); }
.hmk-featured-grid__img {
	background: #FFF;
	aspect-ratio: 4/5;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--hk-line, #D9CFBD);
}
.hmk-featured-grid__img img,
.hmk-featured-grid__img-el {
	width: 100%;
	height: 100%;
	object-fit: contain;    /* no head-cropping — fit whole image */
	object-position: center;
	display: block;
}
.hmk-featured-grid__meta { padding: 1rem 0.25rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.hmk-featured-grid__name { font-size: 0.9375rem; font-weight: 500; }
.hmk-featured-grid__price { font-size: 0.875rem; color: var(--hk-muted, #7A7065); }
@media (max-width: 1199px) { .hmk-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .hmk-featured-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---- Trust pillars (matching card look) ---- */
.hmk-trust { background: var(--hk-bg, #F5EFE4); }
.hmk-trust__inner { max-width: 1560px; margin: 0 auto; }
.hmk-trust__heading { text-align: center; margin: 0 auto 3rem; max-width: 820px; }
.hmk-trust__heading h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; letter-spacing: -0.015em; margin: 0; }
.hmk-trust__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.hmk-trust-card {
	background: var(--hk-bg, #F5EFE4);
	padding: 2rem 1.75rem 2.25rem;
	box-shadow: 0 1px 2px rgba(26,23,20,0.04), 0 4px 12px rgba(26,23,20,0.04);
	transition: transform 240ms ease, box-shadow 240ms ease;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.hmk-trust-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 4px 8px rgba(26,23,20,0.06), 0 18px 36px rgba(26,23,20,0.12);
}
.hmk-trust-card__num { font-family: var(--font-display); font-size: 2rem; color: var(--hk-accent, #b79d70); line-height: 1; }
.hmk-trust-card h3 { font-size: 1.125rem; margin: 0; font-weight: 600; }
.hmk-trust-card p { margin: 0; color: var(--hk-muted, #7A7065); font-size: 0.9375rem; line-height: 1.6; }
@media (max-width: 1199px) { .hmk-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .hmk-trust { padding: 4rem 1.25rem !important; } .hmk-trust__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---- Testimonials (huge heading, no outlines, 80vw container) ---- */
.hmk-testimonials { padding: 6rem 2rem; background: var(--hk-bg, #F5EFE4); }
.hmk-testimonials__inner { max-width: min(1760px, 90vw); margin: 0 auto; }
.hmk-testimonials__heading { width: 100%; margin: 0 0 4rem; }
.hmk-testimonials__heading h2 {
	font-size: clamp(3rem, 8vw, 7.5rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	max-width: 80%;
}
.hmk-testimonials__heading p {
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	color: var(--hk-muted, #7A7065);
	font-size: 1.125rem;
	margin: 0;
}
.hmk-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem 4rem;
	width: 100%;
}
.hmk-testimonial { margin: 0; }
.hmk-testimonial blockquote {
	font-family: var(--font-display);
	font-size: clamp(1.125rem, 1.6vw, 1.5rem);
	line-height: 1.4;
	font-style: italic;
	font-weight: 400;
	margin: 0 0 1.25rem;
	color: var(--hk-ink, #1A1714);
	quotes: "\201C" "\201D";
}
.hmk-testimonial figcaption {
	color: var(--hk-muted, #7A7065);
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}
@media (max-width: 899px) {
	.hmk-testimonials { padding: 4rem 1.5rem; }
	.hmk-testimonials__grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
	.hmk-testimonials__heading h2 { max-width: 100%; }
}

/* ---- Wedding ordering, simplified (steps) ---- */
.hmk-steps { background: var(--hk-surface, #EDE5D4); }
.hmk-steps__inner { max-width: 1560px; margin: 0 auto; }
.hmk-steps__heading { text-align: center; margin: 0 auto 3rem; max-width: 820px; }
.hmk-steps__heading .hmk-eyebrow { color: var(--hk-accent-deep, #5E4823); }
.hmk-steps__heading h2 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; margin: 0.5rem 0 0; }
.hmk-steps__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.hmk-step-card {
	background: var(--hk-bg, #F5EFE4);
	padding: 2rem 1.75rem 2.25rem;
	box-shadow: 0 1px 2px rgba(26,23,20,0.04), 0 4px 12px rgba(26,23,20,0.04);
	transition: transform 240ms ease, box-shadow 240ms ease;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.hmk-step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 4px 8px rgba(26,23,20,0.06), 0 18px 36px rgba(26,23,20,0.12);
}
.hmk-step-card__num { font-family: var(--font-display); font-size: 2.25rem; color: var(--hk-accent, #b79d70); line-height: 1; }
.hmk-step-card h3 { font-size: 1.25rem; margin: 0; }
.hmk-step-card p { margin: 0; color: var(--hk-muted, #7A7065); line-height: 1.6; }
@media (max-width: 899px) { .hmk-steps__grid { grid-template-columns: minmax(0, 1fr); } .hmk-steps { padding: 4rem 1.25rem !important; } }

/* ---- Final CTA — full-bleed, flush to footer (no bottom margin) ---- */
.hmk-final-cta {
	background: var(--hk-ink, #1A1714);
	color: var(--hk-bg, #F5EFE4);
	padding: 7rem 2rem;
	margin: 0;
}
.hmk-final-cta__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hmk-final-cta h2 {
	color: var(--hk-bg, #F5EFE4);
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 1.25rem;
}
.hmk-final-cta__inner p { color: rgba(245,239,228,0.8); font-size: 1.0625rem; line-height: 1.65; margin: 0 0 2rem; }
.hmk-final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* =============================================================
   Global tile card — used on every sub-page grid (fabric, style,
   filipiniana subcategories, fit-center hub, wedding suite, etc).
   Matches the homepage shop-by-role / trust / step cards.
   ============================================================= */

.hmk-tile-grid {
	display: grid;
	grid-template-columns: repeat(var(--hmk-tile-cols, 3), minmax(0, 1fr));
	gap: 1.5rem;
	max-width: 1560px;
	margin: 0 auto;
}
.hmk-tile-grid--2 { --hmk-tile-cols: 2; }
.hmk-tile-grid--3 { --hmk-tile-cols: 3; }
.hmk-tile-grid--4 { --hmk-tile-cols: 4; }
.hmk-tile-grid--5 { --hmk-tile-cols: 5; }

.hmk-tile {
	display: flex;
	flex-direction: column;
	background: var(--hk-bg, #F5EFE4);
	color: var(--hk-ink, #1A1714);
	text-decoration: none;
	padding: 2rem 1.75rem 2.25rem;
	box-shadow: 0 1px 2px rgba(26,23,20,0.04), 0 4px 12px rgba(26,23,20,0.04);
	transition: transform 240ms ease, box-shadow 240ms ease;
	will-change: transform;
}
a.hmk-tile { cursor: pointer; }
.hmk-tile:hover {
	transform: translateY(-6px);
	box-shadow: 0 4px 8px rgba(26,23,20,0.06), 0 18px 36px rgba(26,23,20,0.12);
}
.hmk-tile__num {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--hk-accent, #b79d70);
	line-height: 1;
	margin-bottom: 0.75rem;
}
.hmk-tile__title,
.hmk-tile h3 {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
}
.hmk-tile__copy,
.hmk-tile p {
	color: var(--hk-muted, #7A7065);
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0 0 1rem;
}
.hmk-tile__cta {
	margin-top: auto;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink, #1A1714);
}

@media (max-width: 1199px) { .hmk-tile-grid--4, .hmk-tile-grid--5 { --hmk-tile-cols: 2; } }
@media (max-width: 899px)  { .hmk-tile-grid { --hmk-tile-cols: 2; } }
@media (max-width: 599px)  { .hmk-tile-grid { --hmk-tile-cols: 1; } }

/* Sub-page H1: +20px top breathing room (skip on home / single product). */
body:not(.home):not(.single-product) h1,
body:not(.home):not(.single-product) .wp-block-post-title {
	margin-top: 1.25rem;
}

/* ---- Bolero Collection spotlight (/filipiniana/ — 80% wide, 1.5x scale) ---- */
.hmk-bolero {
	background: var(--hk-surface, #EDE5D4);
	padding: 0;
}
.hmk-bolero__inner {
	max-width: 80vw;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 4.5rem;
	align-items: center;
	font-size: 150%;  /* scale all text content 1.5x */
}
.hmk-bolero__eyebrow {
	font-family: var(--font-body);
	font-size: 0.8125em;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent, #b79d70);
	margin: 0 0 0.75em;
}
.hmk-bolero__heading {
	font-family: var(--font-display);
	font-size: 2.25em;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 1em;
}
.hmk-bolero__copy {
	color: var(--hk-body, #2B2622);
	line-height: 1.65;
	margin: 0 0 1.5em;
}
.hmk-bolero__image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
@media (max-width: 999px) {
	.hmk-bolero { padding: 0; }
	.hmk-bolero__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; max-width: 90vw; font-size: 125%; }
}

/* ---- For the whole party: groomsmen bundle, full-bleed ---- */
.hmk-groomsmen {
	background: var(--hk-surface, #EDE5D4);
	padding: 6rem 2rem;
	width: 100%;
}
.hmk-groomsmen__inner { max-width: none; text-align: center; }
.hmk-groomsmen__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent-deep, #5E4823);
	margin: 0 0 0.75rem;
	font-weight: 700;
}
.hmk-groomsmen__heading {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 1rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.hmk-groomsmen__copy {
	color: var(--hk-muted, #7A7065);
	font-size: 1.0625rem;
	line-height: 1.65;
	max-width: 720px;
	margin: 0 auto 2rem;
}

/* ---- Wedding-timeline: flashy, wide, urgency-forward ---- */
.hmk-timeline {
	position: relative;
	background: var(--hk-ink, #1A1714);
	color: var(--hk-bg, #F5EFE4);
	padding: 7rem 2rem;
	overflow: hidden;
}
.hmk-timeline__glow {
	position: absolute;
	top: -20%;
	left: 50%;
	width: 1100px;
	height: 1100px;
	transform: translateX(-50%);
	background: radial-gradient(circle at center, rgba(183,157,112,0.35) 0%, rgba(183,157,112,0.12) 30%, transparent 60%);
	pointer-events: none;
	animation: hmk-glow 8s ease-in-out infinite;
}
@keyframes hmk-glow {
	0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
	50%      { transform: translateX(-50%) scale(1.08); opacity: 1; }
}
.hmk-timeline__inner { position: relative; max-width: 1560px; margin: 0 auto; text-align: center; }
.hmk-timeline__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--hk-accent, #B79D70);
	margin: 0 0 1rem;
	font-weight: 800;
	animation: hmk-pulse 2.4s ease-in-out infinite;
}
@keyframes hmk-pulse {
	0%, 100% { opacity: 0.7; }
	50%      { opacity: 1; }
}
.hmk-timeline__heading {
	color: var(--hk-bg, #F5EFE4);
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 0 0 1rem;
}
.hmk-timeline__lede {
	color: rgba(245,239,228,0.75);
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 1.125rem;
	margin: 0 0 3.5rem;
}
.hmk-timeline__track {
	list-style: none;
	padding: 0;
	margin: 0 0 3rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	position: relative;
}
/* Horizontal progress bar behind the stops */
.hmk-timeline__track::before {
	content: "";
	position: absolute;
	left: 12.5%;
	right: 12.5%;
	top: 42px;
	height: 2px;
	background: linear-gradient(90deg, var(--hk-accent, #B79D70) 0%, rgba(183,157,112,0.35) 55%, #B0301C 85%, #B0301C 100%);
	z-index: 0;
}
.hmk-timeline__stop {
	position: relative;
	padding: 0 1rem;
	text-align: center;
	z-index: 1;
}
.hmk-timeline__stop::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	margin: 32px auto 1.25rem;
	border-radius: 50%;
	background: var(--hk-accent, #B79D70);
	border: 4px solid var(--hk-ink, #1A1714);
	box-shadow: 0 0 0 2px var(--hk-accent, #B79D70);
}
.hmk-timeline__stop--warn::before { background: #d4a03a; box-shadow: 0 0 0 2px #d4a03a; }
.hmk-timeline__stop--urgent::before {
	background: #B0301C;
	box-shadow: 0 0 0 2px #B0301C;
	animation: hmk-pulse-ring 1.6s ease-out infinite;
}
@keyframes hmk-pulse-ring {
	0%   { box-shadow: 0 0 0 2px #B0301C, 0 0 0 0 rgba(176,48,28,0.6); }
	70%  { box-shadow: 0 0 0 2px #B0301C, 0 0 0 16px rgba(176,48,28,0); }
	100% { box-shadow: 0 0 0 2px #B0301C, 0 0 0 0 rgba(176,48,28,0); }
}
.hmk-timeline__weeks {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 700;
	line-height: 1;
	color: var(--hk-bg, #F5EFE4);
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
}
.hmk-timeline__weeks small {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245,239,228,0.55);
	margin-top: 0.375rem;
}
.hmk-timeline__label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.375rem 0.75rem;
	background: rgba(183,157,112,0.18);
	color: var(--hk-accent, #B79D70);
	margin-bottom: 0.75rem;
}
.hmk-timeline__stop--warn .hmk-timeline__label { background: rgba(212,160,58,0.2); color: #d4a03a; }
.hmk-timeline__stop--urgent .hmk-timeline__label { background: rgba(176,48,28,0.22); color: #e06b58; }
.hmk-timeline__stop p {
	color: rgba(245,239,228,0.75);
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0;
}
.hmk-timeline__cta-row {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.hmk-timeline .hk-btn--ghost {
	background: transparent;
	color: var(--hk-bg, #F5EFE4);
	border-color: var(--hk-bg, #F5EFE4);
	box-shadow: none;
}
.hmk-timeline .hk-btn--ghost:hover { background: var(--hk-bg, #F5EFE4); color: var(--hk-ink, #1A1714); }
@media (max-width: 899px) {
	.hmk-timeline { padding: 4.5rem 1.25rem; }
	.hmk-timeline__track { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
	.hmk-timeline__track::before { display: none; }
	.hmk-timeline__stop::before { margin-top: 0; }
}

/* ---- Groom spotlight with real cocoon image ---- */
.hmk-groom {
	background: var(--hk-bg, #F5EFE4);
	padding: 7rem 2rem;
}
.hmk-groom__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4.5rem;
	align-items: center;
}
.hmk-groom__image {
	aspect-ratio: 4/5;
	border: 1px solid var(--hk-line, #D9CFBD);
	background: #FFFFFF;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hmk-groom__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.hmk-groom__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent-deep, #5E4823);
	font-weight: 700;
	margin: 0 0 1rem;
}
.hmk-groom__heading {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 3.4vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 1.25rem;
}
.hmk-groom__copy {
	color: var(--hk-muted, #7A7065);
	line-height: 1.65;
	font-size: 1.0625rem;
	margin: 0 0 2rem;
	max-width: 480px;
}
@media (max-width: 899px) {
	.hmk-groom { padding: 4.5rem 1.25rem; }
	.hmk-groom__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
}

/* ---- Universal 50px top padding on every page's main content ---- */
main.wp-block-group {
	padding-top: 50px;
}

/* ---- Fit Center: "Still unsure" full-bleed CTA ---- */
.hmk-still-unsure {
	background: var(--hk-ink, #1A1714);
	color: var(--hk-bg, #F5EFE4);
	padding: 6rem 2rem;
	width: 100%;
}
.hmk-still-unsure__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hmk-still-unsure__heading {
	color: var(--hk-bg, #F5EFE4);
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 1.25rem;
}
.hmk-still-unsure__copy {
	color: rgba(245, 239, 228, 0.8);
	font-size: 1.0625rem;
	line-height: 1.65;
	margin: 0 0 2rem;
}
.hmk-still-unsure__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.hmk-still-unsure .hk-btn--ghost {
	background: transparent;
	color: var(--hk-bg, #F5EFE4);
	border-color: var(--hk-bg, #F5EFE4);
	box-shadow: none;
}
.hmk-still-unsure .hk-btn--ghost:hover {
	background: var(--hk-bg, #F5EFE4);
	color: var(--hk-ink, #1A1714);
}
@media (max-width: 599px) {
	.hmk-still-unsure { padding: 4rem 1.25rem; }
}

/* =============================================================
   About page
   ============================================================= */

/* Hero */
.hmk-about-hero {
	background: var(--hk-bg, #F5EFE4);
	padding: 6rem 2rem 4rem;
}
.hmk-about-hero__inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.hmk-about-hero__inner h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 0.75rem 0 1.5rem;
}
.hmk-about-hero__lede {
	color: var(--hk-muted, #7A7065);
	font-size: 1.125rem;
	line-height: 1.65;
	max-width: 820px;
	margin: 0 auto;
}

/* Slideshow — dark panel with 40/60 text + image split (image bigger) */
.hmk-about-slideshow {
	position: relative;
	background: var(--hk-ink, #1A1714);
	padding: 4rem 0;
	width: 100%;
	overflow: hidden;
}
.hmk-about-slideshow__track {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 3rem;
	min-height: 600px;
}
.hmk-about-slideshow__slide {
	position: absolute;
	inset: 0 3rem;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	gap: 3rem;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 700ms ease, visibility 0s 700ms;
}
.hmk-about-slideshow__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity 700ms ease;
}
.hmk-about-slideshow__image {
	position: relative;
	aspect-ratio: 16 / 9;
	background-color: #2B2622;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	order: 2;  /* image on the right */
}
/* Subtle Ken Burns zoom on the active slide */
.hmk-about-slideshow__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
}
.hmk-about-slideshow__slide.is-active .hmk-about-slideshow__image {
	animation: hmk-slideshow-kb 10s ease-out forwards;
}
@keyframes hmk-slideshow-kb {
	from { transform: scale(1.02); }
	to   { transform: scale(1.08); }
}
.hmk-about-slideshow__caption {
	order: 1;  /* text on the left */
	color: var(--hk-bg, #F5EFE4);
	padding-right: 1rem;
	max-width: 560px;
}
/* Part 1 — small uppercase sans (button-style) */
.hmk-about-slideshow__eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent, #b79d70);
	margin-bottom: 1.25rem;
}
/* Part 2 — Etna display, H1-scale */
.hmk-about-slideshow__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: var(--hk-bg, #F5EFE4);
	margin: 0;
}
/* Part 3 — small sans, sentence case (not capitalized) */
.hmk-about-slideshow__tag {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(245, 239, 228, 0.75);
	margin: 1rem 0 0;
	text-transform: none;
	letter-spacing: 0;
}
/* Nav arrows */
.hmk-about-slideshow__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(245, 239, 228, 0.1);
	border: 1px solid rgba(245, 239, 228, 0.25);
	color: var(--hk-bg, #F5EFE4);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 200ms ease, border-color 200ms ease;
	z-index: 2;
}
.hmk-about-slideshow__nav:hover { background: var(--hk-accent, #b79d70); border-color: var(--hk-accent, #b79d70); color: var(--hk-ink, #1A1714); }
.hmk-about-slideshow__nav--prev { left: 0.5rem; }
.hmk-about-slideshow__nav--next { right: 0.5rem; }
/* Dots */
.hmk-about-slideshow__dots {
	position: relative;
	max-width: 1440px;
	margin: 2.5rem auto 0;
	padding: 0 3rem;
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}
.hmk-about-slideshow__dot {
	width: 32px;
	height: 3px;
	background: rgba(245, 239, 228, 0.25);
	border: 0;
	border-radius: 0;
	cursor: pointer;
	transition: background-color 200ms ease, width 200ms ease;
	padding: 0;
}
.hmk-about-slideshow__dot.is-active { background: var(--hk-accent, #b79d70); width: 48px; }

@media (max-width: 899px) {
	.hmk-about-slideshow { padding: 2.5rem 0; }
	.hmk-about-slideshow__track { padding: 0 1.5rem; min-height: 640px; }
	.hmk-about-slideshow__slide {
		inset: 0 1.5rem;
		grid-template-columns: minmax(0, 1fr);
		gap: 1.75rem;
	}
	.hmk-about-slideshow__image { order: 1; }
	.hmk-about-slideshow__caption { order: 2; padding-right: 0; max-width: none; }
	.hmk-about-slideshow__nav--prev { left: 0.25rem; }
	.hmk-about-slideshow__nav--next { right: 0.25rem; }
	.hmk-about-slideshow__dots { padding: 0 1.5rem; }
}

/* Story: "Why this business exists" */
.hmk-about-story {
	background: var(--hk-bg, #F5EFE4);
	padding: 7rem 2rem 6rem;  /* 7rem top = more padding above heading */
}
.hmk-about-story__inner {
	max-width: 820px;
	margin: 0 auto;
}
.hmk-about-story__inner h2 {
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 2rem;
}
.hmk-about-story__inner p {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--hk-body, #2B2622);
	margin: 0 0 1.5rem;
}

/* Craft: the card-row version of "Sourced from the Philippines" */
.hmk-about-craft {
	background: var(--hk-surface, #EDE5D4);
	padding: 7rem 2rem;
}
.hmk-about-craft__inner { max-width: 1560px; margin: 0 auto; }
.hmk-about-craft__heading {
	text-align: center;
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 3rem;
	letter-spacing: -0.015em;
}

/* Ready when you are — full-bleed green with motion */
.hmk-about-cta {
	position: relative;
	background: #0d2a26;
	color: var(--hk-bg, #F5EFE4);
	padding: 8rem 2rem;
	overflow: hidden;
}
.hmk-about-cta__weave {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(245,239,228,0.05) 1px, transparent 1px),
		linear-gradient(45deg, rgba(245,239,228,0.05) 1px, transparent 1px);
	background-size: 36px 36px;
	opacity: 0.6;
	pointer-events: none;
}
.hmk-about-cta__shimmer {
	position: absolute;
	top: -30%;
	left: -50%;
	width: 200%;
	height: 160%;
	background: radial-gradient(ellipse at center, rgba(183,157,112,0.28) 0%, rgba(183,157,112,0.08) 35%, transparent 65%);
	animation: hmk-about-shimmer 14s ease-in-out infinite;
	pointer-events: none;
}
@keyframes hmk-about-shimmer {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
	50%      { transform: translate(4%, -3%) scale(1.1); opacity: 1; }
}
.hmk-about-cta__inner { position: relative; max-width: 1160px; margin: 0 auto; text-align: center; }
.hmk-about-cta__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--hk-accent, #b79d70);
	margin: 0 0 1rem;
	font-weight: 800;
}
.hmk-about-cta__heading {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 7rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--hk-bg, #F5EFE4);
	margin: 0 0 1.5rem;
}
.hmk-about-cta__heading span {
	display: inline-block;
	color: var(--hk-accent, #b79d70);
	font-style: italic;
	font-weight: 400;
	margin: 0 0.4em;
}
.hmk-about-cta__copy {
	color: rgba(245,239,228,0.8);
	font-size: 1.125rem;
	line-height: 1.65;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}
.hmk-about-cta__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.hmk-about-cta .hk-btn { background: var(--hk-accent, #b79d70); border-color: var(--hk-accent, #b79d70); color: #0d2a26; }
.hmk-about-cta .hk-btn:hover { background: var(--hk-bg, #F5EFE4); border-color: var(--hk-bg, #F5EFE4); color: #0d2a26; }
.hmk-about-cta .hk-btn--ghost {
	background: transparent;
	border-color: var(--hk-bg, #F5EFE4);
	color: var(--hk-bg, #F5EFE4);
	box-shadow: none;
}
.hmk-about-cta .hk-btn--ghost:hover {
	background: var(--hk-bg, #F5EFE4);
	border-color: var(--hk-bg, #F5EFE4);
	color: #0d2a26;
}
@media (max-width: 699px) {
	.hmk-about-cta { padding: 5rem 1.25rem; }
	.hmk-about-story { padding: 4rem 1.5rem; }
	.hmk-about-craft { padding: 5rem 1.5rem; }
}

/* ---- FAQ (card look, ivory on ivory) ---- */
.hmk-faq {
	background: var(--hk-bg, #F5EFE4);
	padding: 6rem 2rem;
}
.hmk-faq__inner { max-width: 860px; margin: 0 auto; }
.hmk-faq__card {
	background: var(--hk-bg, #F5EFE4);
	padding: 3.5rem 3rem;
	box-shadow: 0 1px 2px rgba(26,23,20,0.04), 0 4px 12px rgba(26,23,20,0.04);
}
.hmk-faq__heading {
	text-align: center;
	font-size: clamp(1.75rem, 2.6vw, 2.25rem);
	line-height: 1.12;
	margin: 0 0 2rem;
}
.hmk-faq__item {
	border-top: 1px solid var(--hk-line, #D9CFBD);
	padding: 1.25rem 0;
}
.hmk-faq__item:last-child { border-bottom: 1px solid var(--hk-line, #D9CFBD); }
.hmk-faq__item summary {
	list-style: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--hk-ink, #1A1714);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.hmk-faq__item summary::-webkit-details-marker { display: none; }
.hmk-faq__item summary::after { content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 1.5rem; color: var(--hk-muted, #7A7065); flex-shrink: 0; }
.hmk-faq__item[open] summary::after { content: "−"; }
.hmk-faq__item p {
	margin: 1rem 0 0;
	color: var(--hk-body, #2B2622);
	line-height: 1.7;
	font-size: 1rem;
}
@media (max-width: 699px) {
	.hmk-faq { padding: 4rem 1.25rem; }
	.hmk-faq__card { padding: 2rem 1.5rem; }
}

/* Ghost button inside the dark final-CTA: light-on-dark override */
.hmk-final-cta .hk-btn--ghost {
	background: transparent;
	color: var(--hk-bg, #F5EFE4);
	border-color: var(--hk-bg, #F5EFE4);
}
.hmk-final-cta .hk-btn--ghost:hover {
	background: var(--hk-bg, #F5EFE4);
	color: var(--hk-ink, #1A1714);
	border-color: var(--hk-bg, #F5EFE4);
}
/* Make sure WP default body gap doesn't insert a gap above the footer */
main.wp-block-group > :last-child.hmk-final-cta { margin-bottom: 0 !important; }

/* =============================================================
   Footer (full rebuild)
   ============================================================= */

.hmk-footer {
	background: var(--hk-surface, #EDE5D4);
	color: var(--hk-body, #2B2622);
	border-top: 1px solid var(--hk-line, #D9CFBD);
	padding: 5rem 3rem 2rem;
	margin-top: 0;
}
.hmk-footer__top {
	max-width: 1560px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--hk-line, #D9CFBD);
}
.hmk-footer__brand { display: grid; grid-template-columns: 88px 1fr; gap: 2rem; align-items: start; }
.hmk-footer__logo { display: inline-block; line-height: 0; }
.hmk-footer__logo img,
.hmk-footer__logo .hmk-header__logo-img,
.hmk-footer__logo .custom-logo-link img {
	width: 72px;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	display: block;
}
.hmk-footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.hmk-footer__col h4 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-ink, #1A1714);
	margin: 0 0 1rem;
}
.hmk-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.hmk-footer__col a,
.hmk-footer__bottom-left a {
	color: var(--hk-body, #2B2622);
	text-decoration: none;
	font-size: 0.9375rem;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: border-color 160ms ease;
}
.hmk-footer__col a:hover,
.hmk-footer__bottom-left a:hover {
	border-bottom-color: var(--hk-muted, #7A7065);
}

/* Newsletter right side */
.hmk-footer__newsletter { max-width: 520px; margin-left: auto; }
.hmk-footer__newsletter-eyebrow {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-accent-deep, #5E4823);
	margin: 0 0 0.75rem;
}
.hmk-footer__newsletter h3 {
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	line-height: 1.15;
	margin: 0 0 0.75rem;
}
.hmk-footer__newsletter-copy { color: var(--hk-muted, #7A7065); line-height: 1.6; margin: 0 0 1.5rem; }
.hmk-footer__newsletter-form { display: flex; gap: 0.5rem; }
.hmk-footer__newsletter-form input {
	flex: 1;
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.875rem 1rem;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	min-height: 48px;
	outline: none;
}
.hmk-footer__newsletter-form input:focus { border-color: var(--hk-ink, #1A1714); }
.hmk-footer__newsletter-form button {
	background: var(--hk-ink, #1A1714);
	color: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-ink, #1A1714);
	padding: 0 1.5rem;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
}
.hmk-footer__newsletter-form button:hover { background: var(--hk-accent-deep, #5E4823); border-color: var(--hk-accent-deep, #5E4823); }
.hmk-footer__newsletter-success {
	padding: 0.875rem 1rem;
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	color: var(--hk-ink, #1A1714);
	font-size: 0.9375rem;
}

/* Bottom row */
.hmk-footer__bottom {
	max-width: 1560px;
	margin: 0 auto;
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.hmk-footer__bottom-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; font-size: 0.9375rem; }
.hmk-footer__copy {
	color: var(--hk-body, #2B2622);
	font-family: inherit;
	font-size: inherit;
	line-height: 1.5;
}
.hmk-footer__bottom-right { display: flex; gap: 1rem; align-items: center; }
.hmk-footer__bottom-right a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	flex: 0 0 72px;
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	color: var(--hk-muted, #7A7065);
	background: transparent;
	border: 1px solid var(--hk-line, #D9CFBD);
	border-radius: 50%;
	transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.hmk-footer__bottom-right a svg { width: 32px; height: 32px; display: block; }
.hmk-footer__bottom-right a:hover {
	background: var(--hk-accent, #b79d70);
	color: #1A1714;
	border-color: var(--hk-accent, #b79d70);
}

@media (max-width: 1099px) {
	.hmk-footer__top { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
	.hmk-footer__newsletter { margin-left: 0; }
}
@media (max-width: 699px) {
	.hmk-footer { padding: 3.5rem 1.5rem 1.5rem; }
	.hmk-footer__brand { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
	.hmk-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hmk-footer__newsletter-form { flex-direction: column; }
	.hmk-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   Contact form (/support/)
   ============================================================= */
.hmk-contact-form {
	display: grid;
	gap: 1.25rem;
	max-width: 640px;
	margin: 2rem 0;
}
.hmk-contact-form__row { display: flex; flex-direction: column; gap: 0.375rem; }
.hmk-contact-form__row label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hk-muted, #7A7065);
}
.hmk-contact-form__row input,
.hmk-contact-form__row textarea {
	background: var(--hk-bg, #F5EFE4);
	border: 1px solid var(--hk-line, #D9CFBD);
	padding: 0.875rem 1rem;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--hk-ink, #1A1714);
	outline: none;
}
.hmk-contact-form__row input:focus,
.hmk-contact-form__row textarea:focus { border-color: var(--hk-ink, #1A1714); }
.hmk-contact-form__row textarea { resize: vertical; min-height: 140px; }
.hmk-contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hmk-contact-form__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hmk-contact-form__micro { color: var(--hk-muted, #7A7065); font-size: 0.8125rem; margin: 0; }
.hmk-contact-form__status { color: var(--hk-accent-deep, #5E4823); font-size: 0.9375rem; min-height: 1.5em; }

/* ---------- Rounded card corners ---------- */
/* Override the original square-corners brand rule on the most prominent
   card-style components. Newsletter close button and a few interactive
   tiles read better with a soft radius. */
.hmk-featured-grid__card,
.hmk-tile,
.hmk-role-card {
	border-radius: 12px;
	overflow: hidden;
}
