/* =====================================================================
   Handcrafted Collective — editorial light design system.
   Cream paper, ink bands, serif display headings, warm brass accent.
   ===================================================================== */
:root {
	--c-bg: #faf9f7;
	--c-paper: #ffffff;
	--c-ink: #141414;
	--c-muted: #6b6b66;
	--c-accent: #b08d57;
	--c-line: rgba(20, 20, 20, 0.12);
	--font-serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
	--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--radius-btn: 999px;
	--container: 1180px;
	--gutter: clamp(1rem, 4vw, 2rem);
	--section-y: clamp(3.2rem, 8vw, 6rem);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	margin: 0;
	background: var(--c-bg);
	color: #3a3a36;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	font-family: var(--font-serif);
	color: var(--c-ink);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin: 0 0 0.55em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1.2em; }
a { color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--c-accent); }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}
.skip-link { left: 1rem; top: 1rem; z-index: 999; background: var(--c-ink); color: #fff; padding: 0.7em 1.2em; border-radius: 8px; }
.skip-link:focus { position: fixed !important; width: auto; height: auto; margin: 0; clip: auto; clip-path: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order: 2; } }

.kicker {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 1rem;
}
.kicker--light { color: #d8d4cc; }
.lede { font-weight: 700; color: var(--c-ink); }

/* Buttons: pill, ink or light per PDF */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.85em 1.9em;
	border-radius: var(--radius-btn);
	text-decoration: none !important;
	border: 1px solid var(--c-ink);
	transition: background-color 0.18s, color 0.18s, transform 0.18s var(--ease);
	cursor: pointer;
}
.btn--solid { background: var(--c-ink); color: #fff; }
.btn--solid:hover { background: #2c2c2a; color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn--light:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); transform: translateY(-2px); }

/* Loader bar */
.loader-bar { position: fixed; inset: 0 auto auto 0; width: 100%; height: 3px; z-index: 1000; pointer-events: none; opacity: 0; }
body.has-loader .loader-bar { opacity: 1; }
.loader-bar::before { content: ""; position: absolute; inset: 0; transform-origin: left; transform: scaleX(0.15); background: var(--c-ink); animation: hcc-load 1.1s var(--ease) forwards; }
body.is-loaded .loader-bar { transition: opacity 0.4s 0.25s; opacity: 0; }
@keyframes hcc-load { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .loader-bar { display: none; } }

/* Header: white text over hero, solid paper on scroll */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 100; padding-block: 1.1rem; color: #fff; }
.site-header.is-scrolled { position: fixed; background: rgba(250, 249, 247, 0.96); color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-word { font-family: var(--font-serif); text-decoration: none !important; color: inherit; line-height: 1.05; display: inline-block; }
.brand-word em { display: block; font-style: italic; font-weight: 400; font-size: 0.95rem; }
.brand-word strong { font-size: 1.05rem; letter-spacing: 0.02em; }
.primary-nav { display: none; }
.primary-nav ul { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.primary-nav a { color: inherit; font-size: 0.92rem; font-weight: 500; text-decoration: none !important; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--c-accent); }
.primary-nav .sub-menu { display: none; }
@media (min-width: 981px) {
	.primary-nav { display: block; }
	.primary-nav li { position: relative; }
	.primary-nav .sub-menu { position: absolute; top: calc(100% + 12px); left: 0; min-width: 200px; flex-direction: column; gap: 0.2rem; background: #fff; color: var(--c-ink); border: 1px solid var(--c-line); border-radius: 10px; padding: 0.6rem 0.9rem; box-shadow: 0 14px 40px rgba(20, 20, 20, 0.12); }
	.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { display: flex; }
}
.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-link { position: relative; color: inherit; display: inline-flex; }
.cart-count { position: absolute; top: -8px; right: -10px; background: #c0392b; color: #fff; font-size: 0.62rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px; display: grid; place-items: center; padding-inline: 3px; }
.menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 10px; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 10px; cursor: pointer; }
.site-header.is-scrolled .menu-toggle { background: rgba(20, 20, 20, 0.05); border-color: var(--c-line); }
.menu-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; }
@media (min-width: 981px) { .menu-toggle { display: none; } }
.mobile-menu { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; background: rgba(250, 249, 247, 0.99); padding: 1.2rem var(--gutter) 2rem; transform: translateX(100%); visibility: hidden; transition: transform 0.3s var(--ease), visibility 0s 0.3s; color: var(--c-ink); }
.mobile-menu.is-open { transform: none; visibility: visible; transition: transform 0.3s var(--ease); }
@media (prefers-reduced-motion: reduce) { .mobile-menu { transition: none; } }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.mobile-menu-close { width: 42px; height: 42px; border: 1px solid var(--c-line); background: #fff; font-size: 1.3rem; border-radius: 10px; cursor: pointer; }
.mobile-menu nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu nav a { display: block; font-family: var(--font-serif); font-size: 1.25rem; color: var(--c-ink); padding: 0.7em 0.1em; border-bottom: 1px solid var(--c-line); text-decoration: none !important; }
body.menu-open { overflow: hidden; }

/* Hero: photo + overlay, left-aligned title */
.hero { background-size: cover; background-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(10, 10, 10, 0.66), rgba(10, 10, 10, 0.25) 60%, rgba(10, 10, 10, 0.15)); padding: clamp(8rem, 16vw, 11rem) 0 clamp(3.5rem, 8vw, 5.5rem); }
.hero h1 { color: #fff; }
.hero p { color: #e8e6e0; max-width: 460px; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* Collage images */
.collage img { width: 100%; border-radius: 6px; box-shadow: 18px 18px 0 rgba(20, 20, 20, 0.06); }

/* Ink bands */
.band--ink { background: var(--c-ink); color: #cfccc5; padding-block: clamp(2.8rem, 7vw, 4.5rem); }
.band--ink h2, .band--ink h3 { color: #fff; }
.band-quote { margin: 0 auto 2rem; max-width: 760px; text-align: center; font-family: var(--font-serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: #fff; font-weight: 700; }
.figure-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0 auto; max-width: 760px; background: rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 1.6rem 1rem; text-align: center; }
.figure-strip dd { margin: 0; font-family: var(--font-serif); font-size: clamp(1.6rem, 3.4vw, 2.2rem); color: #fff; font-weight: 700; }
.figure-strip dd sup { font-size: 0.6em; }
.figure-strip dt { font-size: 0.82rem; color: #b9b6ae; }

/* Photo bands with overlay panel (Our Value / Your Vision) */
.band--photo { background-size: cover; background-position: center; padding: clamp(3rem, 8vw, 5.5rem) var(--gutter); }
.band-panel { max-width: 460px; background: rgba(12, 12, 12, 0.72); color: #d9d6cf; padding: 2rem 1.8rem; border-radius: 6px; margin-left: max(calc((100vw - var(--container)) / 2), var(--gutter)); }
.band-panel h2 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.band-panel h3 { color: #fff; margin-top: 1.2em; padding-bottom: 0.35em; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.band-panel p { font-size: 0.93rem; margin-bottom: 0.4em; }
.band-panel--plain { background: transparent; padding-left: 0; }
.band-panel--plain h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.band-panel--plain p { color: #e4e1da; }

/* Measure bars */
.measure-bars { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.measure-label { display: block; font-weight: 600; color: var(--c-ink); font-size: 0.9rem; margin-bottom: 0.35rem; }
.measure-track { display: block; height: 12px; background: #e7e4de; border-radius: 999px; overflow: hidden; }
.measure-fill { display: block; height: 100%; background: var(--c-ink); border-radius: 999px; position: relative; }
.measure-fill em { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 0.6rem; color: #fff; }

/* Pillars + feature grid */
.pillar-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pillar-card { border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; padding: 1.6rem 1.4rem; }
.pillar-card h3 { margin-bottom: 0.4em; }
.pillar-card p { margin: 0; font-size: 0.92rem; }
.pillar-mark { color: var(--c-accent); font-size: 1.1rem; display: inline-block; margin-bottom: 0.8rem; }
.feature-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); margin-top: 2.4rem; }
.feature-card { background: #f1efe9; border-radius: 8px; padding: 1.8rem 1.5rem; text-align: center; }
.feature-dot { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--c-ink); margin-bottom: 1rem; }
.feature-dot::before { content: "✦"; color: #fff; font-size: 0.85rem; }
.feature-card h3 { font-size: 1.02rem; }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--c-muted); }

/* Checklist (why choose us) */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.checklist li { padding-left: 2rem; position: relative; border-bottom: 1px solid var(--c-line); padding-bottom: 1.1rem; }
.checklist li::before { content: "▣"; position: absolute; left: 0; top: 0.1em; color: var(--c-accent); }
.checklist h3 { margin-bottom: 0.25em; font-size: 1.05rem; }
.checklist p { margin: 0; font-size: 0.92rem; color: var(--c-muted); }

/* Collection intro */
.coll-intro { max-width: 820px; margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   Homepage "Just Landed" — plain editorial cards (no chrome):
   rounded image, serif title, grey "Shop" link. Matches homepage design.
   --------------------------------------------------------------------- */
.hcc-plain-grid {
	display: grid;
	gap: 1.6rem;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	margin-top: 2.4rem;
}
@media (min-width: 900px) { .hcc-plain-grid { grid-template-columns: repeat(4, 1fr); } }
.plain-card-media { display: block; border-radius: 14px; overflow: hidden; }
.plain-card-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.plain-card:hover .plain-card-media img { transform: scale(1.04); }
.plain-card-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin: 1rem 0 0.5rem; line-height: 1.3; }
.plain-card-title a { color: var(--c-ink); text-decoration: none; }
.plain-card-title a:hover { color: var(--c-accent); }
.plain-card-shop { display: inline-block; color: #666; font-size: 0.92rem; text-decoration: none; }
.plain-card-shop::after { content: ""; }
.plain-card-shop:hover { color: var(--c-accent); }

/* ---------------------------------------------------------------------
   Shop / Collections cards — grey #ededed card, rounded, title,
   price left, black "Add to cart" pill right. Matches shop design.
   --------------------------------------------------------------------- */
.hcc-products ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.6rem;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.hcc-products li.product {
	position: relative;
	background: #ededed;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 0.85rem 0.85rem 0;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hcc-products li.product:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20, 20, 20, 0.1); }
.hcc-products li.product .hcc-card-media,
.hcc-products li.product .hcc-card-titlelink { text-decoration: none; color: inherit; display: block; }
.hcc-products li.product .hcc-card-media { border-radius: 10px; overflow: hidden; position: relative; }
.hcc-products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin: 0;
	display: block;
	background: #e2e2e2;
	transition: transform 0.4s var(--ease);
}
.hcc-products li.product:hover .hcc-card-media img { transform: scale(1.04); }
.hcc-products li.product .woocommerce-loop-product__title {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--c-ink);
	padding: 1rem 0.3rem 0;
	margin: 0;
	line-height: 1.3;
}
/* Foot: price left, black pill button right */
.hcc-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 0.3rem 0.95rem;
	margin-top: auto;
}
.hcc-products li.product .price {
	color: #6b6b66;
	font-weight: 400;
	font-size: 1.05rem;
	margin: 0;
}
.hcc-products li.product .price del { color: #a4a49e; margin-right: 0.35em; }
.hcc-products li.product .price ins { text-decoration: none; color: var(--c-ink); }
.hcc-products li.product .hcc-card-foot .button {
	flex: none;
	background: #111111;
	color: #ffffff;
	border-radius: 999px;
	padding: 0.75em 1.5em;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background-color 0.18s;
	border: 0;
	cursor: pointer;
	line-height: 1.2;
}
.hcc-products li.product .hcc-card-foot .button:hover { background: #000; }
.hcc-products li.product .hcc-card-foot .added_to_cart { margin-left: 0.5rem; color: var(--c-ink); text-decoration: underline !important; font-size: 0.82rem; }
.hcc-products li.product .onsale {
	position: absolute;
	top: 16px; left: 16px;
	background: #111;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.3em 0.9em;
	z-index: 2;
	margin: 0;
	min-height: auto;
}
.woocommerce-pagination ul { list-style: none; display: flex; gap: 0.4rem; justify-content: center; padding: 0; margin-top: 2.4rem; }
.woocommerce-pagination .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; border: 1px solid var(--c-line); border-radius: 8px; text-decoration: none; }
.woocommerce-pagination .page-numbers.current { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* =====================================================================
   Single product (PDP) — editorial layout matching the brand design
   ===================================================================== */
.single-product main#primary { display: block; }
.pdp-banner {
	position: relative;
	min-height: min(56vh, 560px);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
}
.pdp-banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.32), rgba(10, 10, 10, 0.52));
	padding: 6rem 1.5rem 2rem;
	text-align: center;
}
.pdp-banner-title { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
.pdp-breadcrumb { background: #f1efe9; border-bottom: 1px solid var(--c-line); font-size: 0.85rem; }
.pdp-breadcrumb .woocommerce-breadcrumb { padding: 0.9rem 0; margin: 0; color: var(--c-muted); }
.pdp-breadcrumb a { color: var(--c-muted); text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--c-accent); }
/* Neutralise WooCommerce's default float/width product layout so the
   .pdp-body grid fully controls the two columns. WooCommerce applies
   .images{width:48%;float:left} and .summary{width:48%;float:right}. */
.single-product div.product { display: block; margin: 0; }
.single-product div.product::before,
.single-product div.product::after { content: none; }
.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary,
.single-product div.product .entry-summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.single-product .pdp-summary.summary,
.single-product .summary.entry-summary { clear: none !important; }
.pdp-body {
	display: grid;
	gap: clamp(1.6rem, 4vw, 3rem);
	padding-block: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}
@media (min-width: 900px) { .pdp-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.pdp-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; min-width: 0; width: 100%; }
.pdp-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; }
.pdp-gallery img:only-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.pdp-summary { position: sticky; top: 90px; min-width: 0; width: 100%; }
.pdp-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin: 0 0 0.9rem;
}
.pdp-summary .product_title, .pdp-summary h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 0.9rem; }
.pdp-summary .woocommerce-product-details__short-description { color: var(--c-muted); font-size: 1rem; margin-bottom: 1.6rem; }
.pdp-summary .woocommerce-product-details__short-description p { margin-bottom: 0.6em; }
.pdp-panel { background: #f1efe9; border: 1px solid var(--c-line); border-radius: 12px; padding: 1.6rem 1.6rem 1.7rem; }
.pdp-stock { text-align: center; color: var(--c-muted); font-size: 0.92rem; margin: 0 0 1.2rem; line-height: 1.7; }
.pdp-buy { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pdp-price { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.1rem); color: var(--c-ink); }
.pdp-price del { color: var(--c-muted); font-weight: 400; font-size: 0.7em; margin-right: 0.3em; }
.pdp-price ins { text-decoration: none; }
.pdp-buy form.cart { margin: 0; display: flex; align-items: center; gap: 0.6rem; }
.pdp-buy .quantity .qty { width: 64px; padding: 0.6em 0.5em; border: 1px solid var(--c-line); border-radius: 999px; text-align: center; font: inherit; }
.pdp-buy form.cart .button, .pdp-buy .single_add_to_cart_button {
	background: var(--c-ink);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.85em 2rem;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.18s, transform 0.18s var(--ease);
}
.pdp-buy form.cart .button:hover, .pdp-buy .single_add_to_cart_button:hover { background: var(--c-accent); transform: translateY(-2px); }
.pdp-related { border-top: 1px solid var(--c-line); }

/* Description tabs: contained, not full-bleed lipsum dump */
.woocommerce-tabs { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter) clamp(2rem, 5vw, 3.5rem); }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 0.5rem; margin: 0 0 1.4rem; padding: 0 0 0.8rem; border-bottom: 1px solid var(--c-line); flex-wrap: wrap; }
.woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce-tabs ul.tabs li a { text-decoration: none; font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-muted); padding: 0.4em 0.9em; border-radius: 999px; }
.woocommerce-tabs ul.tabs li.active a { background: var(--c-ink); color: #fff; }
.woocommerce-tabs .panel { max-width: 820px; }
.woocommerce-tabs .panel h2 { font-size: 1.4rem; }
.woocommerce-tabs .panel p { color: #4a4a46; }
.single-product .product { display: block; }
/* Single-image gallery fills the left column cleanly */
.pdp-gallery img:only-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.pdp-gallery:has(img:only-child) { grid-template-columns: 1fr; }
.pdp-related > .container > h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.single-product .related.products > h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* Contact */
.contact-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.7rem; }
.form-card { background: var(--c-ink); color: #d9d6cf; border-radius: 10px; padding: 2rem 1.8rem; }
.form-card h2 { color: #fff; text-align: center; font-size: 1.35rem; }
.form-card .ghf-form label, .form-card label { color: #fff; }
.form-card input, .form-card textarea { width: 100%; background: #4a4a48; border: 0; border-radius: 4px; color: #fff; padding: 0.75em 1em; font: inherit; }
.form-card input::placeholder, .form-card textarea::placeholder { color: #b5b3ad; }
.form-card .ghf-form-status--success { background: rgba(70, 180, 80, 0.2); color: #b9ecc0; padding: 0.8em 1em; border-radius: 6px; }
.form-card .ghf-form-status--error { background: rgba(220, 50, 50, 0.2); color: #ffb4b4; padding: 0.8em 1em; border-radius: 6px; }
.form-card .ghf-field-error { color: #ffb4b4; font-size: 0.82rem; }
.form-card .ghf-consent { color: #b5b3ad; font-size: 0.85rem; display: flex; gap: 0.6em; align-items: flex-start; }
.form-card .ghf-consent input { width: auto; margin-top: 0.3em; }
.form-card .ghf-form { display: grid; gap: 1rem; }
.form-card .ghf-form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-card .ghf-form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-card .btn, .form-card button[type="submit"], .form-card .ghf-submit { background: #7c7c78; color: #fff; border: 0; border-radius: 6px; padding: 0.7em 1.8em; font-weight: 600; cursor: pointer; margin-inline: auto; display: inline-block; }
.form-card .ghf-submit:hover { background: var(--c-accent); }
.ghf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* CTA band (pre-footer) */
.cta-band { background-size: cover; background-position: center; }
.cta-band-overlay { background: rgba(8, 8, 8, 0.62); padding-block: clamp(3.5rem, 9vw, 6rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ddd9d1; max-width: 560px; margin-inline: auto; }
.cta-band .btn { margin-top: 1rem; }

/* Footer */
.site-footer { background: #0d0d0d; color: #b9b6ae; padding-top: clamp(2.5rem, 6vw, 4rem); font-size: 0.92rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.brand-word--light { color: #fff; margin-bottom: 1rem; }
.footer-about p { max-width: 300px; font-family: var(--font-serif); }
.footer-details { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 0.5rem; }
.footer-details a, .footer-col a, .footer-social a { color: #b9b6ae; text-decoration: none; }
.footer-details a:hover, .footer-col a:hover, .footer-social a:hover { color: #fff; }
.footer-news { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.35); max-width: 260px; }
.footer-news input { flex: 1; background: transparent; border: 0; color: #fff; padding: 0.6em 0; font: inherit; }
.footer-news input::placeholder { color: #8f8d86; }
.footer-news button { background: transparent; border: 0; color: #fff; cursor: pointer; font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul, .footer-social { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-social--ink { display: flex; gap: 1.2rem; }
.footer-social--ink a { color: var(--c-ink); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 1.3rem; text-align: center; font-size: 0.8rem; }

/* Blog cards / misc */
.page-header { padding: clamp(7rem, 14vw, 9rem) 0 1.5rem; }
.posts-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.post-card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 10px; overflow: hidden; }
.post-card-body { padding: 1.2rem 1.3rem; }
.post-card h2 { font-size: 1.1rem; }
.post-card a { text-decoration: none; }
.entry-content { max-width: 760px; }
.pagination-nav ul { list-style: none; display: flex; gap: 0.4rem; justify-content: center; margin: 2.5rem 0 0; padding: 0; }
.pagination-nav .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; border: 1px solid var(--c-line); border-radius: 8px; text-decoration: none; }
.pagination-nav .page-numbers.current { background: var(--c-ink); color: #fff; }
.back-to-top { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 150; width: 44px; height: 44px; background: var(--c-ink); color: #fff; border: 0; border-radius: 10px; cursor: pointer; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* Reveal animations */
body.has-anim [data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--anim-delay, 0s); }
body.has-anim [data-animate].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { body.has-anim [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; } }
body.has-anim.no-js [data-animate] { opacity: 1; transform: none; }

/* =====================================================================
   Homepage components
   ===================================================================== */
.hero--home { min-height: min(78vh, 720px); display: flex; align-items: flex-end; }
/* Hero slider: stacked crossfading background layers */
.hero--slider { position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }
.hero--slider .hero-home-card { position: relative; z-index: 2; }
.hero-dots {
	position: absolute;
	left: 0; right: 0;
	bottom: 1.4rem;
	z-index: 3;
	display: flex;
	gap: 0.55rem;
	justify-content: center;
}
.hero-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s, transform 0.2s;
}
.hero-dot.is-active { background: #fff; transform: scale(1.2); }
.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero--home .hero-home-card {
	margin: 0 0 clamp(1.5rem, 5vw, 3.5rem) max(calc((100vw - var(--container)) / 2), var(--gutter));
	max-width: 520px;
	background: rgba(12, 12, 12, 0.72);
	border-radius: 6px;
	padding: 1.8rem 1.8rem 1.6rem;
}
.hero-home-card h1 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.hero-home-card p { color: #ddd9d1; font-size: 0.95rem; }

.section--flush { padding-bottom: 0; }
.section--flush .center { margin-bottom: 1.8rem; }
.mosaic { display: grid; gap: 4px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.mosaic--4 { grid-template-columns: repeat(2, 1fr); }
.mosaic--6 { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
@media (min-width: 760px) {
	.mosaic--4 { grid-template-columns: 1.15fr 1fr 1.15fr; grid-auto-rows: 300px; }
	.mosaic--4 img:nth-child(1) { grid-row: span 2; height: 100%; aspect-ratio: auto; }
	.mosaic--4 img:nth-child(4) { grid-column: 2 / 4; aspect-ratio: auto; }
	.mosaic--6 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
	.mosaic--6 img { aspect-ratio: auto; }
	.mosaic--6 img:nth-child(1) { grid-row: span 2; }
	.mosaic--6 img:nth-child(4) { grid-column: span 2; }
}

.band--elevate { padding: 0; }
.band--elevate .band-overlay { background: rgba(8, 8, 8, 0.72); padding: clamp(3rem, 8vw, 5.5rem) 0; }
.band--elevate h2 { color: #fff; }
.band-sub { color: #cfccc5; max-width: 620px; margin-inline: auto; }
.elev-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2.2rem; }
.elev-item { border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 8px; padding: 1.3rem 1.2rem; }
.elev-item h3 { color: #fff; font-size: 0.98rem; margin-bottom: 0.3em; }
.elev-item p { color: #b9b6ae; font-size: 0.85rem; margin: 0; }

.faq-list { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.faq-item { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 8px; padding: 0; }
.faq-item summary {
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	color: var(--c-ink);
	padding: 1rem 2.6rem 1rem 1.2rem;
	position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--c-accent); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.2rem 1.1rem; margin: 0; font-size: 0.92rem; color: var(--c-muted); }

.cats-band { background: var(--c-ink); padding: 4px; }
.cats-grid { display: grid; gap: 4px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cat-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 380px;
	background-size: cover;
	background-position: center;
	text-decoration: none !important;
	overflow: hidden;
}
.cat-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 8, 8, 0.05) 35%, rgba(8, 8, 8, 0.82)); transition: background-color 0.25s; }
.cat-card:hover::before { background-color: rgba(8, 8, 8, 0.25); }
.cat-card-body { position: relative; padding: 1.5rem 1.4rem; }
.cat-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.2em; }
.cat-card p { color: #d5d2cb; font-size: 0.88rem; margin: 0 0 0.7em; }
.cat-shop { color: #fff; font-weight: 600; font-size: 0.85rem; border-bottom: 1px solid var(--c-accent); padding-bottom: 2px; }
.cat-card:hover .cat-shop { color: var(--c-accent); }

/* =====================================================================
   WooCommerce: shop chrome, cart, checkout
   ===================================================================== */
.coll-intro--shop { padding-top: var(--section-y); }
.hcc-products .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none;
	background: #f1efe9;
	border: 1px solid var(--c-line);
	border-left: 3px solid var(--c-accent);
	border-radius: 8px;
	padding: 0.9em 1.2em;
	margin: 0 0 1.4rem;
}
.woocommerce-error { border-left-color: #c0392b; }
.woocommerce-message a.button, .woocommerce-info a.button { float: right; background: var(--c-ink); color: #fff; border-radius: 999px; padding: 0.35em 1.1em; text-decoration: none; font-size: 0.82rem; }
.onsale { position: absolute; top: 12px; left: 12px; background: var(--c-accent); color: #fff; font-size: 0.72rem; font-weight: 700; border-radius: 999px; padding: 0.3em 0.9em; z-index: 2; }
.hcc-products li.product { position: relative; }

/* Cart & Checkout page heroes + wrapper */
.hero--shoppage { min-height: min(38vh, 360px); display: flex; align-items: center; }
.hero--shoppage .hero-overlay { width: 100%; padding: clamp(6rem, 12vw, 8rem) 0 clamp(2rem, 5vw, 3rem); }
.hero--shoppage h1 { color: #fff; }
.hero--shoppage p { color: #e8e6e0; max-width: 520px; }
.hcc-shop-wrap { max-width: 1080px; }

/* Cart */
.woocommerce-cart main .container, .woocommerce-checkout main .container { max-width: 1080px; }
table.shop_table { width: 100%; border-collapse: collapse; background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 10px; overflow: hidden; }
table.shop_table th, table.shop_table td { padding: 0.95rem 1rem; border-bottom: 1px solid var(--c-line); text-align: left; vertical-align: middle; }
table.shop_table thead th { background: #f1efe9; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-muted); }
table.shop_table tbody tr:last-child td { border-bottom: 0; }
.woocommerce-cart-form .product-thumbnail img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.woocommerce-cart-form .product-name a { text-decoration: none; font-weight: 600; }
.woocommerce-cart-form .product-remove a { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #f1efe9; color: var(--c-ink); text-decoration: none; font-size: 1rem; }
.woocommerce-cart-form .product-remove a:hover { background: #c0392b; color: #fff; }
.quantity .qty { width: 70px; padding: 0.5em 0.6em; border: 1px solid var(--c-line); border-radius: 8px; font: inherit; text-align: center; }
.coupon { display: flex; gap: 0.6rem; align-items: center; }
.coupon .input-text { padding: 0.6em 1em; border: 1px solid var(--c-line); border-radius: 999px; font: inherit; }
.woocommerce-cart .button, .woocommerce-checkout .button, .wc-proceed-to-checkout .checkout-button {
	background: var(--c-ink);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.7em 1.7em;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none !important;
	display: inline-block;
}
.woocommerce-cart .button:hover, .woocommerce-checkout .button:hover, .wc-proceed-to-checkout .checkout-button:hover { background: var(--c-accent); color: #fff; }
.woocommerce-cart .button:disabled { opacity: 0.4; cursor: default; }
.cart-collaterals { margin-top: 2rem; display: grid; justify-content: end; }
.cart_totals { min-width: min(420px, 100%); background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 10px; padding: 1.5rem 1.5rem 1.7rem; }
.cart_totals h2 { font-size: 1.25rem; }
.cart_totals table.shop_table { border: 0; }
.cart_totals table.shop_table th { background: transparent; width: 40%; }
.wc-proceed-to-checkout { margin-top: 1.2rem; }
.wc-proceed-to-checkout .checkout-button { width: 100%; text-align: center; padding: 0.95em 1.7em; }
.cross-sells { display: none; }
.return-to-shop { margin-top: 1rem; }

/* Checkout */
.woocommerce-checkout form.checkout { display: grid; gap: 2.4rem; align-items: start; }
@media (min-width: 940px) { .woocommerce-checkout form.checkout { grid-template-columns: 1.15fr 1fr; } #order_review_heading, #order_review { grid-column: 2; } #customer_details { grid-column: 1; grid-row: 1 / span 2; } }
.woocommerce-checkout h3 { font-size: 1.2rem; margin-bottom: 0.9em; }
.woocommerce-checkout .form-row { margin: 0 0 1rem; }
.woocommerce-checkout .form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--c-ink); margin-bottom: 0.3rem; }
.woocommerce-checkout .form-row .required { color: #c0392b; text-decoration: none; }
.woocommerce-checkout .input-text, .woocommerce-checkout select, .woocommerce-checkout textarea,
.select2-container--default .select2-selection--single {
	width: 100%;
	padding: 0.7em 1em;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	background: var(--c-paper);
	font: inherit;
	min-height: 46px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 44px; padding-left: 0.4em; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 44px; }
.woocommerce-checkout .input-text:focus, .woocommerce-checkout select:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; }
#order_review { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 10px; padding: 1.5rem; }
#order_review table.shop_table { border: 0; }
#order_review table.shop_table thead th { background: transparent; }
.wc_payment_methods { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: 0.6rem; }
.wc_payment_method { background: #f1efe9; border-radius: 8px; padding: 0.8rem 1rem; }
.wc_payment_method label { font-weight: 600; }
.payment_box { font-size: 0.88rem; color: var(--c-muted); margin-top: 0.5rem; }
#place_order { width: 100%; padding: 1em; font-size: 1rem; }
.woocommerce-terms-and-conditions-wrapper { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 1rem; }
.woocommerce-privacy-policy-text a { color: var(--c-ink); }

/* Order received + account basics */
.woocommerce-order-overview { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.woocommerce-order-overview li { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 8px; padding: 0.8rem 1.1rem; font-size: 0.85rem; color: var(--c-muted); }
.woocommerce-order-overview strong { display: block; color: var(--c-ink); font-size: 0.95rem; }
.woocommerce-thankyou-order-received { font-family: var(--font-serif); font-size: 1.3rem; color: var(--c-ink); margin-bottom: 1.4rem; }
