/*
Theme Name: ChronoLuxe
Theme URI: https://chronoluxe.com/
Author: ChronoLuxe
Author URI: https://chronoluxe.com/
Description: Luxury watch retail theme for WooCommerce. Charcoal + rose gold aesthetic tuned for mechanical, automatic, quartz, and smartwatch catalogs. Self-contained — no plugin dependencies, fast mobile-first markup, reliable checkout. Built for boutique watch dealers who want gateway-friendly classic checkout and block-style cart out of the box.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chronoluxe
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
 * ChronoLuxe 1.0 — luxury watch boutique theme.
 *
 * One stylesheet. No plugin dependencies. Variables on :root, mobile-first
 * layouts. Designed to look right with stock WP + WooCommerce, then style any
 * plugin output (variation swatches, filter widgets, sticky cart) without
 * overriding theme styles. Palette: charcoal #1a1a1a + rose gold #b76e79.
 * ========================================================================== */

:root {
	--cl-bg: #ffffff;
	--cl-bg-alt: #f7f3f1;          /* warm off-white panels */
	--cl-fg: #1a1a1a;               /* charcoal — body text & dark surfaces */
	--cl-fg-soft: #2a2a2a;
	--cl-muted: #6b6b6b;
	--cl-line: #e5dedb;             /* warm hairline */
	--cl-line-soft: #f2ecea;
	--cl-accent: #b76e79;           /* rose gold — primary brand */
	--cl-accent-hover: #a35a66;
	--cl-accent-fg: #ffffff;
	--cl-gold: #c9a96e;              /* secondary accent for ratings/highlights */
	--cl-sale: #b04545;
	--cl-success: #5a8f6b;
	--cl-content-w: 1280px;
	--cl-radius: 2px;                /* tighter, more luxe than 4px */
	--cl-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
	--cl-font: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--cl-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--cl-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--cl-fg);
	background: var(--cl-bg);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--cl-accent); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--cl-heading);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 0.6em;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.cl-shell { max-width: var(--cl-content-w); margin: 0 auto; padding: 0 24px; }
.cl-button, .button, button.button, input[type="submit"], .wp-block-button__link {
	display: inline-block;
	padding: 13px 30px;
	background: var(--cl-accent);
	color: var(--cl-accent-fg);
	border: 1px solid var(--cl-accent);
	border-radius: var(--cl-radius);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cl-button:hover, .button:hover, button.button:hover, input[type="submit"]:hover, .wp-block-button__link:hover {
	background: var(--cl-accent-hover);
	border-color: var(--cl-accent-hover);
	color: var(--cl-accent-fg);
}
.cl-button.outline, .button.alt {
	background: transparent;
	color: var(--cl-fg);
	border-color: var(--cl-fg);
}
.cl-button.outline:hover, .button.alt:hover {
	background: var(--cl-fg);
	color: var(--cl-bg);
	border-color: var(--cl-fg);
}

/* ==========================================================================
 * Header
 * ========================================================================== */
.cl-header {
	border-bottom: 1px solid var(--cl-line);
	background: var(--cl-bg);
	position: sticky;
	top: 0;
	z-index: 100;
}
.cl-topbar {
	background: var(--cl-fg);
	color: var(--cl-bg);
	font-size: 13px;
	text-align: center;
	padding: 8px 16px;
}
.cl-topbar a { color: inherit; text-decoration: underline; }
.cl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}
.cl-brand {
	font-family: var(--cl-heading);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.cl-brand img { max-height: 48px; width: auto; }
.cl-nav { flex: 1; }
.cl-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
	justify-content: center;
}
.cl-nav li { position: relative; }
.cl-nav a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.4px;
	padding: 8px 0;
	display: block;
}
.cl-nav a:hover { color: var(--cl-accent); }
.cl-nav .sub-menu, .cl-nav .children {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--cl-bg);
	border: 1px solid var(--cl-line);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	display: none;
	flex-direction: column;
	gap: 0;
	padding: 12px 0;
	z-index: 10;
}
.cl-nav li:hover > .sub-menu,
.cl-nav li:hover > .children { display: flex; }
.cl-nav .sub-menu li { display: block; }
.cl-nav .sub-menu a { padding: 8px 20px; font-size: 13px; }

.cl-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.cl-icon-btn {
	background: transparent;
	border: 0;
	padding: 8px;
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}
.cl-icon-btn:hover { color: var(--cl-accent); }
.cl-cart-count {
	background: var(--cl-accent);
	color: var(--cl-accent-fg);
	font-size: 11px;
	border-radius: 999px;
	min-width: 18px;
	height: 18px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cl-mobile-toggle { display: none; }

@media (max-width: 900px) {
	.cl-mobile-toggle { display: inline-flex; background: transparent; border: 0; padding: 8px; }
	.cl-nav {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: var(--cl-bg);
		border-left: 1px solid var(--cl-line);
		padding: 24px;
		overflow-y: auto;
		transition: right 0.3s ease;
		z-index: 200;
	}
	body.cl-menu-open .cl-nav { right: 0; }
	.cl-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
	.cl-nav .sub-menu { position: static; border: 0; box-shadow: none; padding: 0 0 0 16px; display: none; }
	.cl-nav li.is-open > .sub-menu { display: flex; }
}

/* ==========================================================================
 * Front page
 * ========================================================================== */
.cl-hero {
	position: relative;
	min-height: 540px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cl-line-soft) center / cover no-repeat;
	color: var(--cl-bg);
	text-align: center;
	overflow: hidden;
}
.cl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}
.cl-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 80px 24px;
}
.cl-hero h1 {
	font-size: clamp(36px, 6vw, 64px);
	margin: 0 0 16px;
	color: #fff;
}
.cl-hero p { font-size: 18px; margin-bottom: 28px; }

.cl-section { padding: 72px 0; }
.cl-section + .cl-section { padding-top: 0; }
.cl-section-head { text-align: center; margin-bottom: 48px; position: relative; }
.cl-section-head .eyebrow {
	display: inline-block;
	font-family: var(--cl-font);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--cl-accent);
	margin-bottom: 12px;
}
.cl-section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 0; }
.cl-section-head h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 1px;
	background: var(--cl-accent);
	margin: 18px auto 0;
}
.cl-section-head p { color: var(--cl-muted); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Category grid */
.cl-cats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}
.cl-cat-card {
	display: block;
	text-align: center;
	color: inherit;
}
.cl-cat-card .img {
	aspect-ratio: 1 / 1;
	background: var(--cl-line-soft) center / cover no-repeat;
	border-radius: var(--cl-radius);
	overflow: hidden;
	margin-bottom: 12px;
	transition: transform 0.4s ease;
}
.cl-cat-card:hover .img { transform: scale(1.03); }
.cl-cat-card .name { font-size: 15px; font-weight: 500; }
.cl-cat-card .count { font-size: 12px; color: var(--cl-muted); }

/* Blog grid */
.cl-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}
.cl-blog-card .img {
	aspect-ratio: 4 / 3;
	background: var(--cl-line-soft) center / cover no-repeat;
	border-radius: var(--cl-radius);
	margin-bottom: 14px;
	overflow: hidden;
}
.cl-blog-card .meta { font-size: 12px; color: var(--cl-muted); margin-bottom: 6px; }
.cl-blog-card h3 { font-size: 20px; margin: 0; }

/* ==========================================================================
 * WooCommerce — product loop (shop, categories, search)
 * ========================================================================== */
.woocommerce ul.products,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.woocommerce ul.products li.product,
ul.products li.product {
	list-style: none;
	margin: 0;
	padding: 0;
	width: auto !important;
	float: none !important;
	clear: none !important;
}
ul.products li.product .woocommerce-loop-product__link,
ul.products li.product a.woocommerce-LoopProduct-link,
ul.products li.product > a {
	display: block;
	color: inherit;
}
ul.products li.product .attachment-woocommerce_thumbnail,
ul.products li.product img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	background: var(--cl-line-soft);
	border-radius: var(--cl-radius);
	margin-bottom: 12px;
	display: block;
}
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product h3 {
	font-family: var(--cl-font);
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	margin: 0 0 6px;
	color: var(--cl-fg);
}
ul.products li.product .price {
	font-size: 15px;
	font-weight: 600;
	color: var(--cl-fg);
	display: block;
	margin: 0 0 10px;
}
ul.products li.product .price del { color: var(--cl-muted); margin-right: 6px; }
ul.products li.product .price ins { text-decoration: none; color: var(--cl-sale); }
ul.products li.product .star-rating {
	font-size: 13px;
	margin: 0 0 8px;
}
ul.products li.product .button,
ul.products li.product a.button,
ul.products li.product .added_to_cart {
	display: inline-block;
	margin-top: 4px;
	padding: 8px 16px;
	font-size: 12px;
}
ul.products li.product.sale .onsale,
.woocommerce span.onsale {
	background: var(--cl-sale);
	color: #fff;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: var(--cl-radius);
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	min-height: auto;
	min-width: auto;
	margin: 0;
	line-height: 1.4;
}
ul.products li.product { position: relative; }

/* Star rating */
.star-rating {
	font-family: "star";
	width: 5.4em;
	height: 1.2em;
	line-height: 1.2;
	display: inline-block;
	font-size: 14px;
	position: relative;
	color: var(--cl-gold);
}
.star-rating::before {
	content: "\73\73\73\73\73";
	color: var(--cl-line);
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}
.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}
.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: var(--cl-gold);
}

/* ==========================================================================
 * WooCommerce — single product
 * ========================================================================== */
.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 48px;
	margin: 32px 0 64px;
}
@media (max-width: 900px) {
	.woocommerce div.product { grid-template-columns: 1fr; gap: 32px; }
}
.woocommerce div.product .images,
.woocommerce div.product div.images {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	position: relative;
}
.woocommerce div.product .images img,
.woocommerce div.product div.images img {
	width: 100%;
	height: auto;
	border-radius: var(--cl-radius);
}
.woocommerce-product-gallery__image a { display: block; }
.flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	list-style: none;
	margin: 12px 0 0 !important;
	padding: 0 !important;
}
.flex-control-thumbs li { float: none !important; width: auto !important; margin: 0 !important; }
.flex-control-thumbs img {
	width: 100%;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s;
	border-radius: var(--cl-radius);
}
.flex-control-thumbs img:hover, .flex-control-thumbs img.flex-active { opacity: 1; }

.woocommerce div.product .summary,
.woocommerce div.product div.summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
}
.woocommerce div.product .product_title {
	font-size: clamp(24px, 3vw, 34px);
	margin: 0 0 12px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 24px;
	color: var(--cl-fg);
	font-weight: 600;
	margin: 0 0 16px;
}
.woocommerce div.product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 24px 0;
}
.woocommerce div.product form.cart .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--cl-line);
	border-radius: var(--cl-radius);
}
.woocommerce div.product form.cart .quantity input {
	width: 60px;
	border: 0;
	text-align: center;
	padding: 12px 4px;
	background: transparent;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	padding: 14px 32px;
	font-size: 14px;
}
.woocommerce div.product .product_meta {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--cl-line);
	font-size: 13px;
	color: var(--cl-muted);
}
.woocommerce div.product .product_meta > span { display: block; margin-bottom: 6px; }

/* Variations */
.woocommerce div.product table.variations { margin: 16px 0; border: 0; }
.woocommerce div.product table.variations td { padding: 6px 0; border: 0; }
.woocommerce div.product table.variations select {
	padding: 10px 14px;
	border: 1px solid var(--cl-line);
	border-radius: var(--cl-radius);
	background: #fff;
	min-width: 200px;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
	margin: 48px 0;
	grid-column: 1 / -1;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	border-bottom: 1px solid var(--cl-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	color: var(--cl-muted);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--cl-fg);
	border-bottom-color: var(--cl-fg);
}
.woocommerce div.product .woocommerce-tabs .panel { padding: 0; max-width: 800px; }

/* Related */
.woocommerce .related,
.woocommerce .upsells {
	grid-column: 1 / -1;
	margin: 48px 0;
}
.woocommerce .related h2,
.woocommerce .upsells h2 { font-size: 28px; margin-bottom: 24px; }

/* ==========================================================================
 * Shop archive — sidebar
 * ========================================================================== */
.cl-shop-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 40px;
	margin: 32px 0 64px;
}
@media (max-width: 900px) {
	.cl-shop-layout { grid-template-columns: 1fr; }
	.cl-shop-sidebar { order: 2; }
}
.cl-shop-sidebar .widget {
	border-bottom: 1px solid var(--cl-line);
	padding-bottom: 24px;
	margin-bottom: 24px;
}
.cl-shop-sidebar .widget:last-child { border: 0; margin: 0; }
.cl-shop-sidebar .widget-title,
.cl-shop-sidebar h2 {
	font-family: var(--cl-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.cl-shop-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.cl-shop-sidebar ul li {
	padding: 4px 0;
	font-size: 14px;
}
.cl-shop-sidebar ul li a:hover { color: var(--cl-accent); }
.cl-shop-sidebar .count {
	color: var(--cl-muted);
	font-size: 12px;
	margin-left: 4px;
}

.woocommerce-result-count, .woocommerce-ordering {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 14px;
}
.woocommerce-result-count { color: var(--cl-muted); }
.woocommerce-ordering { float: right; }
.woocommerce-ordering select {
	padding: 8px 12px;
	border: 1px solid var(--cl-line);
	border-radius: var(--cl-radius);
	background: #fff;
}
.woocommerce nav.woocommerce-pagination {
	margin: 32px 0;
	text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 4px;
	list-style: none;
	padding: 0;
	margin: 0;
	border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0;
	display: inline-block;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	padding: 8px 14px;
	border: 1px solid var(--cl-line);
	border-radius: var(--cl-radius);
	color: inherit;
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--cl-accent); color: var(--cl-accent-fg); border-color: var(--cl-accent); }

/* Breadcrumb */
.woocommerce-breadcrumb,
.cl-breadcrumb {
	font-size: 13px;
	color: var(--cl-muted);
	margin: 24px 0;
}
.woocommerce-breadcrumb a:hover { color: var(--cl-accent); }

/* Cart, checkout — keep WC defaults but tighten */
.woocommerce table.shop_table {
	border: 1px solid var(--cl-line);
	border-radius: var(--cl-radius);
	border-collapse: separate;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 14px 16px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top-color: var(--cl-accent);
	background: var(--cl-line-soft);
}

/* ==========================================================================
 * Footer
 * ========================================================================== */
.cl-footer {
	background: #0a0a0a;
	color: #cbcbcb;
	padding: 64px 0 32px;
	margin-top: 64px;
}
.cl-footer a { color: #cbcbcb; }
.cl-footer a:hover { color: #fff; }
.cl-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.cl-footer-grid h3, .cl-footer-grid .widget-title {
	font-family: var(--cl-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 18px;
}
.cl-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.cl-footer-grid ul li { padding: 4px 0; font-size: 14px; }
.cl-footer-bottom {
	border-top: 1px solid #2a2a2a;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: #888;
}
.cl-footer-bottom .cl-payment img { max-height: 24px; }
.cl-newsletter input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #2a2a2a;
	background: #141414;
	color: #fff;
	border-radius: var(--cl-radius);
	margin-bottom: 8px;
}
.cl-newsletter input[type="email"]::placeholder { color: #888; }
.cl-newsletter button {
	width: 100%;
	background: var(--cl-accent);
	color: var(--cl-accent-fg);
	border: 0;
	padding: 13px;
	border-radius: var(--cl-radius);
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	font-size: 12px;
	transition: background 0.2s ease;
}
.cl-newsletter button:hover { background: var(--cl-accent-hover); }

/* ==========================================================================
 * Generic page / blog
 * ========================================================================== */
.cl-content { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.cl-content h1, .cl-content h2, .cl-content h3 { margin-top: 1.4em; }
.cl-content p { margin: 0 0 1em; }
.cl-content img { border-radius: var(--cl-radius); }
.cl-content ul, .cl-content ol { padding-left: 1.4em; }

article.post header h1, article.post header h2 { font-size: 32px; }
article.post .entry-meta { font-size: 13px; color: var(--cl-muted); margin-bottom: 16px; }
article.post .entry-content { font-size: 16px; line-height: 1.7; }

/* ==========================================================================
 * Utility
 * ========================================================================== */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}
.alignwide { max-width: 100%; }
.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
}

/* ==========================================================================
 * Hero slider — full-bleed editorial banner with auto-rotate, dots, arrows.
 * ========================================================================== */
.cl-hero-slider {
	position: relative;
	width: 100%;
	height: clamp(480px, 70vh, 720px);
	overflow: hidden;
	background: var(--cl-fg);
	color: #fff;
}
.cl-hero-slider__rail {
	position: absolute;
	inset: 0;
}
.cl-hero-slider__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	opacity: 0;
	transition: opacity 0.9s ease;
	pointer-events: none;
}
.cl-hero-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}
.cl-hero-slider__plate {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.cl-hero-slider__plate::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.55) 38%, rgba(26,26,26,0.18) 70%, rgba(26,26,26,0) 100%);
	z-index: 1;
}
.cl-hero-slider__plate img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.04);
	transition: transform 8s ease-out;
}
.cl-hero-slider__slide.is-active .cl-hero-slider__plate img {
	transform: scale(1);
}
.cl-hero-slider__inner {
	position: relative;
	z-index: 2;
	width: 100%;
}
.cl-hero-slider__copy {
	max-width: 580px;
	padding: 32px 0;
}
.cl-hero-slider__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--cl-accent);
	margin-bottom: 18px;
	padding: 6px 16px;
	border: 1px solid rgba(183, 110, 121, 0.5);
	border-radius: 2px;
	background: rgba(183, 110, 121, 0.08);
}
.cl-hero-slider__title {
	font-family: var(--cl-heading);
	font-size: clamp(40px, 6.5vw, 76px);
	line-height: 1.05;
	font-weight: 500;
	margin: 0 0 20px;
	color: #fff;
}
.cl-hero-slider__title span { display: block; }
.cl-hero-slider__title--em em {
	font-style: italic;
	color: var(--cl-accent);
	font-weight: 500;
}
.cl-hero-slider__sub {
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.65;
	color: rgba(255,255,255,0.85);
	margin: 0 0 28px;
	max-width: 480px;
}
.cl-hero-slider__slide .cl-button {
	background: var(--cl-accent);
	border-color: var(--cl-accent);
}
.cl-hero-slider__slide .cl-button:hover {
	background: var(--cl-accent-hover);
	border-color: var(--cl-accent-hover);
}

/* Arrows */
.cl-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255,255,255,0.4);
	background: rgba(26,26,26,0.35);
	color: #fff;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.cl-hero-slider__arrow:hover {
	background: var(--cl-accent);
	border-color: var(--cl-accent);
	color: #fff;
}
.cl-hero-slider__arrow--prev { left: 24px; }
.cl-hero-slider__arrow--next { right: 24px; }

/* Dots */
.cl-hero-slider__dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 10px;
}
.cl-hero-slider__dot {
	width: 28px;
	height: 4px;
	border: 0;
	background: rgba(255,255,255,0.35);
	border-radius: 2px;
	cursor: pointer;
	padding: 0;
	transition: background 0.25s ease, width 0.25s ease;
}
.cl-hero-slider__dot:hover { background: rgba(255,255,255,0.6); }
.cl-hero-slider__dot.is-active {
	background: var(--cl-accent);
	width: 44px;
}

@media (max-width: 768px) {
	.cl-hero-slider { height: clamp(440px, 80vh, 560px); }
	.cl-hero-slider__copy { padding: 24px 0; }
	.cl-hero-slider__arrow { display: none; }
	.cl-hero-slider__plate::after {
		background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.75) 60%, rgba(26,26,26,0.85) 100%);
	}
}

/* ==========================================================================
 * Editorial homepage — split spec hero, asymmetric showcase, TOTM,
 * movement stories, trust pillars, journal preview.
 * ========================================================================== */

/* Shared utilities */
.cl-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cl-fg);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: color 0.2s ease;
}
.cl-link-arrow:hover { color: var(--cl-accent); }
.cl-link-arrow--accent { color: var(--cl-accent); }

.cl-section-head--left { text-align: left; }
.cl-section-head--left h2::after { margin-left: 0; }
.cl-section-head--left p { margin-left: 0; margin-right: auto; }
.cl-section-head--split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	text-align: left;
	margin-bottom: 48px;
}
.cl-section-head--split h2 { text-align: left; }
.cl-section-head--split h2::after { margin-left: 0; }
.cl-section-head--split .eyebrow { display: block; }

/* ─── 1. HERO — multi-reference spec-sheet slider ───────────────────────── */
.cl-hero-spec {
	background: var(--cl-bg-alt);
	padding: 56px 0 96px;
	position: relative;
	overflow: hidden;
}
.cl-hero-spec::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -120px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(183,110,121,0.18) 0%, rgba(183,110,121,0) 70%);
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}
.cl-hero-spec__viewport {
	position: relative;
	z-index: 1;
}
.cl-hero-spec__slide {
	display: none;
	opacity: 0;
	transition: opacity 0.7s ease;
}
.cl-hero-spec__slide.is-active {
	display: block;
	opacity: 1;
	animation: cl-spec-fade 0.7s ease;
}
@keyframes cl-spec-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.cl-hero-spec__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center;
}
/* Arrows */
.cl-hero-spec__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border: 1px solid var(--cl-line);
	background: rgba(255,255,255,0.92);
	color: var(--cl-fg);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.cl-hero-spec__arrow:hover {
	background: var(--cl-accent);
	border-color: var(--cl-accent);
	color: #fff;
}
.cl-hero-spec__arrow--prev { left: 8px; }
.cl-hero-spec__arrow--next { right: 8px; }

/* Numbered dots — luxe style ("01 02 03") */
.cl-hero-spec__dots {
	position: absolute;
	bottom: -40px;
	left: 24px;
	z-index: 5;
	display: flex;
	gap: 24px;
	align-items: center;
}
.cl-hero-spec__dot {
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	font-family: var(--cl-heading);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: var(--cl-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
	position: relative;
	padding-bottom: 4px;
}
.cl-hero-spec__dot::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--cl-accent);
	transition: width 0.3s ease;
}
.cl-hero-spec__dot:hover { color: var(--cl-fg); }
.cl-hero-spec__dot.is-active {
	color: var(--cl-accent);
}
.cl-hero-spec__dot.is-active::after { width: 100%; }
.cl-hero-spec__dot-num {
	font-variant-numeric: tabular-nums;
}
.cl-hero-spec__photo {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 640px;
	background: var(--cl-line-soft);
	overflow: hidden;
	border-radius: var(--cl-radius);
	box-shadow: var(--cl-shadow);
}
.cl-hero-spec__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cl-hero-spec__badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(255,255,255,0.95);
	color: var(--cl-fg);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 2px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.cl-hero-spec__copy { padding: 12px 0; }
.cl-hero-spec__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--cl-accent);
	padding-bottom: 14px;
	border-bottom: 1px solid var(--cl-line);
	margin-bottom: 24px;
}
.cl-hero-spec__title {
	font-family: var(--cl-heading);
	font-size: clamp(48px, 6.5vw, 80px);
	line-height: 1.02;
	font-weight: 500;
	margin: 0 0 22px;
	color: var(--cl-fg);
	letter-spacing: -0.5px;
}
.cl-hero-spec__title em { color: var(--cl-accent); font-style: italic; }
.cl-hero-spec__lede {
	font-size: 16px;
	line-height: 1.7;
	color: var(--cl-fg-soft);
	margin: 0 0 32px;
	max-width: 520px;
}
.cl-spec-sheet {
	border-top: 1px solid var(--cl-line);
	margin: 0 0 32px;
	padding: 0;
}
.cl-spec-sheet__row {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--cl-line);
	font-size: 14px;
}
.cl-spec-sheet__row dt {
	color: var(--cl-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0;
	padding-top: 2px;
}
.cl-spec-sheet__row dd {
	margin: 0;
	color: var(--cl-fg);
	font-weight: 500;
}
.cl-spec-sheet__row--accent dd {
	font-family: var(--cl-heading);
	font-size: 22px;
	color: var(--cl-accent);
	font-weight: 600;
}
.cl-hero-spec__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

/* ─── 2. ASYMMETRIC SHOWCASE ───────────────────────────────────────────── */
.cl-showcase__grid {
	display: grid;
	grid-template-columns: 5fr 4fr;
	grid-template-rows: auto auto;
	gap: 24px;
}
.cl-showcase__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	background: #fff;
	overflow: hidden;
	border-radius: var(--cl-radius);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cl-showcase__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cl-shadow);
}
.cl-showcase__card--hero {
	grid-row: 1 / 3;
}
.cl-showcase__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--cl-line-soft);
}
.cl-showcase__card--hero .cl-showcase__media { aspect-ratio: 1 / 1; }
.cl-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.cl-showcase__card:hover .cl-showcase__media img { transform: scale(1.04); }
.cl-showcase__caption {
	padding: 22px 26px 26px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cl-showcase__tag {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--cl-accent);
}
.cl-showcase__caption h3 {
	font-family: var(--cl-heading);
	font-size: clamp(22px, 2.2vw, 30px);
	margin: 4px 0 0;
	color: var(--cl-fg);
	font-weight: 500;
	line-height: 1.15;
}
.cl-showcase__caption p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--cl-muted);
	margin: 0;
}
.cl-showcase__price {
	font-size: 15px;
	font-weight: 600;
	color: var(--cl-fg);
	margin-top: 6px;
}

/* ─── 3. TIMEPIECE OF THE MONTH ────────────────────────────────────────── */
.cl-totm {
	background: var(--cl-fg);
	color: #fff;
	padding: 96px 0;
}
.cl-totm__inner {
	max-width: var(--cl-content-w);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.cl-totm__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--cl-radius);
	box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.cl-totm__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cl-totm__copy { padding: 24px 0; }
.cl-totm__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--cl-accent);
	border: 1px solid rgba(183,110,121,0.5);
	padding: 6px 14px;
	margin-bottom: 26px;
	border-radius: 2px;
}
.cl-totm__title {
	font-family: var(--cl-heading);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.1;
	margin: 0 0 22px;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.3px;
}
.cl-totm__deck {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,0.78);
	margin: 0 0 32px;
	max-width: 480px;
}
.cl-totm__quote {
	border-left: 2px solid var(--cl-accent);
	padding: 8px 0 8px 24px;
	margin: 0 0 32px;
}
.cl-totm__quote p {
	font-family: var(--cl-heading);
	font-size: 22px;
	font-style: italic;
	line-height: 1.4;
	margin: 0 0 12px;
	color: #fff;
}
.cl-totm__quote cite {
	font-size: 12px;
	font-style: normal;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}
.cl-totm .cl-link-arrow { color: #fff; }
.cl-totm .cl-link-arrow:hover { color: var(--cl-accent); }
.cl-totm .cl-link-arrow--accent { color: var(--cl-accent); }

/* ─── 4. MOVEMENT STORIES ──────────────────────────────────────────────── */
.cl-movements__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--cl-line);
	border-left: 1px solid var(--cl-line);
}
.cl-movement {
	display: flex;
	flex-direction: column;
	padding: 36px 28px;
	border-right: 1px solid var(--cl-line);
	border-bottom: 1px solid var(--cl-line);
	color: inherit;
	transition: background 0.25s ease;
	position: relative;
	min-height: 320px;
}
.cl-movement:hover { background: var(--cl-bg-alt); }
.cl-movement__num {
	font-family: var(--cl-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--cl-accent);
	margin-bottom: 16px;
}
.cl-movement__title {
	font-family: var(--cl-heading);
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 14px;
	color: var(--cl-fg);
	line-height: 1.1;
}
.cl-movement__desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--cl-muted);
	margin: 0 0 16px;
	flex: 1;
}
.cl-movement__meta {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cl-fg-soft);
	padding-top: 16px;
	border-top: 1px solid var(--cl-line);
	margin-bottom: 12px;
}
.cl-movement__cta {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cl-accent);
	transition: gap 0.25s ease;
}
.cl-movement:hover .cl-movement__cta {
	letter-spacing: 2px;
}

/* ─── 5. TRUST PILLARS ─────────────────────────────────────────────────── */
.cl-pillars {
	background: var(--cl-bg-alt);
	padding: 72px 0;
}
.cl-pillars__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.cl-pillar {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cl-pillar__icon {
	width: 36px;
	height: 36px;
	color: var(--cl-accent);
	margin-bottom: 4px;
}
.cl-pillar h3 {
	font-family: var(--cl-heading);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 4px;
	color: var(--cl-fg);
	line-height: 1.2;
}
.cl-pillar p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--cl-muted);
	margin: 0;
}
.cl-pillar a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cl-accent);
	margin-top: 6px;
}
.cl-pillar a:hover { color: var(--cl-accent-hover); }

/* ─── 6. JOURNAL ───────────────────────────────────────────────────────── */
.cl-journal__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
}
.cl-journal__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	transition: transform 0.4s ease;
}
.cl-journal__card:hover { transform: translateY(-3px); }
.cl-journal__media {
	aspect-ratio: 4 / 3;
	background: var(--cl-line-soft) center / cover no-repeat;
	border-radius: var(--cl-radius);
	margin-bottom: 16px;
}
.cl-journal__card--lead .cl-journal__media { aspect-ratio: 5 / 4; }
.cl-journal__body { padding: 0; }
.cl-journal__meta {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cl-accent);
	display: block;
	margin-bottom: 8px;
}
.cl-journal__body h3 {
	font-family: var(--cl-heading);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 8px;
	color: var(--cl-fg);
	line-height: 1.2;
}
.cl-journal__card--lead .cl-journal__body h3 { font-size: 28px; }
.cl-journal__body p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--cl-muted);
	margin: 0;
}

/* ─── Responsive — editorial homepage ──────────────────────────────────── */
@media (max-width: 980px) {
	.cl-hero-spec__grid { grid-template-columns: 1fr; gap: 36px; }
	.cl-hero-spec__photo { aspect-ratio: 4 / 3; max-height: 480px; }
	.cl-hero-spec__arrow { display: none; }
	.cl-hero-spec__dots { left: 50%; transform: translateX(-50%); bottom: -32px; gap: 18px; }
	.cl-showcase__grid { grid-template-columns: 1fr 1fr; }
	.cl-showcase__card--hero { grid-row: auto; grid-column: 1 / -1; }
	.cl-totm__inner { grid-template-columns: 1fr; gap: 40px; }
	.cl-movements__grid { grid-template-columns: repeat(2, 1fr); }
	.cl-pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.cl-journal__grid { grid-template-columns: 1fr 1fr; }
	.cl-journal__card--lead { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.cl-hero-spec { padding: 32px 0 72px; }
	.cl-hero-spec__title { font-size: clamp(40px, 10vw, 56px); }
	.cl-spec-sheet__row { grid-template-columns: 110px 1fr; gap: 12px; font-size: 13px; }
	.cl-showcase__grid { grid-template-columns: 1fr; }
	.cl-showcase__caption { padding: 18px 20px 22px; }
	.cl-totm { padding: 64px 0; }
	.cl-totm__inner { padding: 0 20px; gap: 28px; }
	.cl-totm__media { aspect-ratio: 4 / 4; }
	.cl-movements__grid { grid-template-columns: 1fr; }
	.cl-movement { min-height: auto; }
	.cl-pillars { padding: 48px 0; }
	.cl-pillars__grid { grid-template-columns: 1fr; gap: 28px; }
	.cl-section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
	.cl-journal__grid { grid-template-columns: 1fr; gap: 24px; }
}
