/**
 * WristMansWorth — design system
 * Visual language inspired by premium marketplace UX (monochrome, editorial, sharp).
 * Original branding for WristMansWorth.
 */

:root {
	--color-primary: #111111;
	--color-primary-hover: #2b2b2b;
	--color-primary-dim: #040404;
	--color-secondary: #1c1d1d;
	--color-background: #ffffff;
	--color-background-dim: #f2f2f2;
	--color-surface: #ffffff;
	--color-text: #000000;
	--color-text-muted: #666666;
	--color-border: #e8e8e1;
	--color-announcement: #0f0f0f;
	--color-announcement-text: #ffffff;
	--color-hero-overlay: rgba(15, 15, 15, 0.55);
	--color-error: #b00020;
	--color-success: #1a5c3a;
	--color-focus: #111111;

	--font-display: "Tenor Sans", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-md: 1.125rem;
	--fs-lg: 1.375rem;
	--fs-xl: 1.75rem;
	--fs-2xl: 2.25rem;
	--fs-3xl: 2.75rem;
	--fs-hero: clamp(2.5rem, 6vw, 3.75rem);

	--lh-tight: 1.2;
	--lh-body: 1.5;
	--ls-wide: 0.08em;
	--ls-body: 0.02em;

	--container-width: 1280px;
	--container-narrow: 720px;
	--gutter: 1.25rem;
	--header-height: 72px;
	--radius: 0;
	--shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--duration: 280ms;
	--duration-fast: 160ms;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 300;
	font-size: var(--fs-base);
	letter-spacing: var(--ls-body);
	line-height: var(--lh-body);
	color: var(--color-text);
	background: var(--color-background);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--duration-fast) var(--ease);
}

a:hover {
	opacity: 0.7;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: var(--lh-tight);
	letter-spacing: 0;
	margin: 0 0 0.75rem;
}

.screen-reader-text,
.wmw-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wmw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: #000;
	color: #fff;
	padding: 0.75rem 1rem;
}

.wmw-skip-link:focus {
	left: 0;
}

.wmw-container {
	width: min(100% - (var(--gutter) * 2), var(--container-width));
	margin-inline: auto;
}

.wmw-container--narrow {
	width: min(100% - (var(--gutter) * 2), var(--container-narrow));
}

/* Announcement */
.wmw-announcement {
	background: var(--color-announcement);
	color: var(--color-announcement-text);
	text-align: center;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	padding: 0.55rem var(--gutter);
}

.wmw-announcement p {
	margin: 0;
}

/* Header — centered brand, left nav, right actions (marketplace pattern) */
.wmw-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid transparent;
	color: #fff;
	transition: background var(--duration) var(--ease),
		border-color var(--duration) var(--ease),
		color var(--duration) var(--ease),
		box-shadow var(--duration) var(--ease);
}

.wmw-header .wmw-logo,
.wmw-header .wmw-logo__mark,
.wmw-header .wmw-nav a,
.wmw-header__search-toggle,
.wmw-header__menu-toggle,
.wmw-header__cart {
	color: inherit;
}

.wmw-header .wmw-nav a:hover,
.wmw-header__cart:hover {
	opacity: 0.7;
}

/* Scrolled / solid: white bar, black content */
.wmw-header.is-scrolled,
.wmw-header.is-solid {
	background: #fff;
	border-bottom-color: var(--color-border);
	color: #111;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Inner pages: always solid (no dark hero behind) */
body:not(.home):not(.front-page) .wmw-header {
	background: #fff;
	border-bottom-color: var(--color-border);
	color: #111;
}

/* Main clears fixed header on non-hero pages */
.wmw-main {
	padding-top: var(--header-height);
}
body.home .wmw-main,
body.front-page .wmw-main {
	padding-top: 0;
}

.wmw-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	min-height: var(--header-height);
	width: min(100% - (var(--gutter) * 2), var(--container-width));
	margin-inline: auto;
}

.wmw-header__nav--left {
	justify-self: start;
}

.wmw-header__brand {
	justify-self: center;
	text-align: center;
}

.wmw-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.wmw-logo,
.wmw-logo__mark {
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2.5vw, 1.45rem);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.wmw-header .custom-logo-link img {
	max-height: 36px;
	width: auto;
}

.wmw-nav {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--fs-sm);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
}

.wmw-nav a {
	opacity: 1;
}

.wmw-nav a:hover {
	opacity: 0.55;
}

.wmw-header__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1rem;
	background: var(--color-primary);
	color: #fff;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	border-radius: var(--radius);
	transition: background var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
}

.wmw-header__cta:hover {
	background: var(--color-primary-hover);
	opacity: 1;
	color: #fff;
}

.wmw-header__menu-toggle,
.wmw-header__search-toggle {
	appearance: none;
	background: none;
	border: 0;
	padding: 0.35rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wmw-header__menu-icon,
.wmw-header__menu-icon::before,
.wmw-header__menu-icon::after {
	display: block;
	width: 20px;
	height: 1.5px;
	background: currentColor;
	position: relative;
}

.wmw-header__menu-icon::before,
.wmw-header__menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.wmw-header__menu-icon::before { top: -6px; }
.wmw-header__menu-icon::after { top: 6px; }

.wmw-header__menu-toggle {
	display: none;
}

.wmw-search-drawer {
	border-top: 1px solid var(--color-border);
	padding: 1rem var(--gutter);
	background: #fff;
}

.wmw-search-drawer__form {
	display: flex;
	gap: 0.5rem;
	max-width: 720px;
	margin: 0 auto;
}

.wmw-search-drawer__form input {
	flex: 1;
	border: 1px solid var(--color-border);
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	background: var(--color-background-dim);
}

.wmw-search-drawer__form button {
	border: 0;
	background: var(--color-primary);
	color: #fff;
	padding: 0.75rem 1.25rem;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: var(--ls-wide);
	font-size: var(--fs-xs);
}

/* Mobile nav */
.wmw-mobile-nav {
	position: fixed;
	inset: 0 auto 0 0;
	width: min(86vw, 360px);
	background: #fff;
	z-index: 1000;
	padding: 1.5rem;
	transform: translateX(-100%);
	transition: transform var(--duration) var(--ease);
	overflow-y: auto;
}

.wmw-mobile-nav.is-open {
	transform: translateX(0);
}

.wmw-mobile-nav__list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.wmw-mobile-nav__list a {
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--color-border);
	font-family: var(--font-display);
	font-size: var(--fs-lg);
	letter-spacing: 0.04em;
}

.wmw-mobile-nav__close {
	appearance: none;
	border: 0;
	background: none;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.wmw-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 950;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--duration) var(--ease);
}

.wmw-nav-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* Buttons */
.wmw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
	text-decoration: none;
}

.wmw-btn:hover {
	opacity: 1;
}

.wmw-btn--primary {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.wmw-btn--primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff;
}

.wmw-btn--ghost {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.wmw-btn--ghost:hover {
	background: var(--color-primary);
	color: #fff;
}

.wmw-btn--block {
	width: 100%;
}

.wmw-btn.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.wmw-link {
	font-size: var(--fs-sm);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}

.wmw-eyebrow {
	font-size: var(--fs-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	opacity: 0.8;
}

/* Hero */
.wmw-hero {
	position: relative;
	min-height: min(78vh, 720px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}

.wmw-hero__media {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.08), transparent 50%),
		linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 45%, #2a2a2a 100%);
}

.wmw-hero__gradient {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 80px,
			rgba(255, 255, 255, 0.015) 80px,
			rgba(255, 255, 255, 0.015) 81px
		);
}

.wmw-hero__content {
	position: relative;
	z-index: 1;
	padding: 4.5rem 0 4rem;
	max-width: 720px;
	margin-left: max(var(--gutter), calc((100% - var(--container-width)) / 2));
	animation: wmw-fade-up 0.8s var(--ease) both;
}

.wmw-hero__title {
	font-size: var(--fs-hero);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.wmw-hero__lead {
	font-size: var(--fs-md);
	font-weight: 300;
	max-width: 34ch;
	margin: 0 0 1.75rem;
	opacity: 0.9;
}

.wmw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.wmw-hero .wmw-btn--ghost {
	border-color: #fff;
	color: #fff;
}

.wmw-hero .wmw-btn--ghost:hover {
	background: #fff;
	color: #111;
}

.wmw-hero .wmw-btn--primary {
	background: #fff;
	color: #111;
	border-color: #fff;
}

.wmw-hero .wmw-btn--primary:hover {
	background: transparent;
	color: #fff;
}

@keyframes wmw-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Sections */
.wmw-section {
	padding: 4.5rem 0;
}

.wmw-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.wmw-section__head h2 {
	font-size: var(--fs-xl);
	letter-spacing: 0.04em;
	margin: 0;
}

/* Watch grid / cards */
.wmw-watch-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem 1.15rem;
}

.wmw-card {
	margin: 0;
}

.wmw-card__link {
	display: block;
	opacity: 1;
}

.wmw-card__link:hover {
	opacity: 1;
}

.wmw-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--color-background-dim);
	overflow: hidden;
	margin-bottom: 0.85rem;
}

.wmw-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.wmw-card__link:hover .wmw-card__img {
	transform: scale(1.04);
}

.wmw-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 280px;
	background:
		linear-gradient(145deg, #f7f7f7 0%, #eaeaea 40%, #f4f4f4 100%),
		radial-gradient(circle at 50% 42%, #d8d8d8 0%, transparent 55%);
}

.wmw-card__condition {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	background: rgba(255, 255, 255, 0.92);
	padding: 0.3rem 0.55rem;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wmw-card__brand {
	margin: 0 0 0.25rem;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.wmw-card__title {
	font-size: var(--fs-md);
	margin: 0 0 0.35rem;
}

.wmw-card__meta {
	margin: 0 0 0.65rem;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

.wmw-card__cta {
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	border-bottom: 1px solid currentColor;
}

.wmw-card__link:hover .wmw-card__cta {
	opacity: 0.55;
}

/* Brands index */
.wmw-brands {
	background: var(--color-background-dim);
}

.wmw-brand-index {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--color-border);
}

.wmw-brand-index li {
	border-bottom: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
}

.wmw-brand-index li:nth-child(3n) {
	border-right: 0;
}

.wmw-brand-index a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.15rem 1rem;
	opacity: 1;
	transition: background var(--duration-fast) var(--ease);
}

.wmw-brand-index a:hover {
	background: #fff;
	opacity: 1;
}

.wmw-brand-index__count {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
}

/* Trust / steps */
.wmw-trust__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: start;
}

.wmw-trust h2 {
	font-size: var(--fs-2xl);
	max-width: 12ch;
}

.wmw-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.wmw-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.25rem 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.wmw-steps__num {
	grid-row: span 2;
	font-family: var(--font-display);
	font-size: var(--fs-lg);
	opacity: 0.35;
}

.wmw-steps strong {
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: var(--fs-sm);
}

.wmw-steps p {
	margin: 0;
	grid-column: 2;
	color: var(--color-text-muted);
}

.wmw-cta-band {
	background: var(--color-primary);
	color: #fff;
	text-align: center;
}

.wmw-cta-band__inner {
	max-width: 560px;
}

.wmw-cta-band .wmw-btn--primary {
	background: #fff;
	color: #111;
	border-color: #fff;
	margin-top: 0.5rem;
}

.wmw-cta-band .wmw-btn--primary:hover {
	background: transparent;
	color: #fff;
}

/* Archive */
.wmw-archive-header {
	padding: 2rem 0 1.5rem;
}

.wmw-archive-header h1 {
	font-size: var(--fs-2xl);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wmw-archive-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 2.5rem;
	padding-bottom: 4rem;
}

.wmw-filters__form {
	display: grid;
	gap: 1rem;
	position: sticky;
	top: calc(var(--header-height) + 1.5rem);
}

.wmw-filters__group label {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}

.wmw-filters__group input,
.wmw-filters__group select,
.wmw-form input,
.wmw-form textarea,
.wmw-newsletter input {
	width: 100%;
	border: 1px solid var(--color-border);
	background: #fff;
	padding: 0.7rem 0.85rem;
	border-radius: var(--radius);
}

.wmw-filters__toggle {
	display: none;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.75rem;
	border: 1px solid var(--color-border);
	background: #fff;
	text-transform: uppercase;
	letter-spacing: var(--ls-wide);
	font-size: var(--fs-xs);
	cursor: pointer;
}

.wmw-archive-results__meta {
	margin-bottom: 1.25rem;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

.wmw-archive-results.is-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity var(--duration) var(--ease);
}

/* Single watch */
.wmw-watch__layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3rem;
	padding: 1.5rem 0 3rem;
	align-items: start;
}

.wmw-watch__info-col {
	position: sticky;
	top: calc(var(--header-height) + 1.25rem);
}

.wmw-watch__brand {
	margin: 0 0 0.35rem;
	font-size: var(--fs-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.wmw-watch__title {
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	margin-bottom: 0.5rem;
}

.wmw-watch__meta {
	margin: 0 0 1rem;
	color: var(--color-text-muted);
}

.wmw-watch__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.wmw-watch__badges li {
	border: 1px solid var(--color-border);
	padding: 0.35rem 0.65rem;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
}

.wmw-watch__price-area {
	padding: 1.15rem 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 1.25rem;
}

.wmw-watch__price-label {
	margin: 0 0 0.25rem;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.wmw-watch__price-locked {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--fs-lg);
}

.wmw-watch__price-value {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--fs-2xl);
	animation: wmw-fade-up 0.5s var(--ease);
}

.wmw-watch__actions {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 2rem;
}

.wmw-watch__description {
	padding: 2.5rem 0 1rem;
	border-top: 1px solid var(--color-border);
	max-width: 720px;
}

.wmw-related {
	padding: 3rem 0 4.5rem;
	border-top: 1px solid var(--color-border);
}

/* Gallery */
.wmw-gallery__stage {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-background-dim);
	overflow: hidden;
}

.wmw-gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	pointer-events: none;
}

.wmw-gallery__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.wmw-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wmw-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--duration-fast) var(--ease);
}

.wmw-gallery:hover .wmw-gallery__nav,
.wmw-gallery__nav:focus-visible {
	opacity: 1;
}

.wmw-gallery__nav--prev { left: 0.75rem; }
.wmw-gallery__nav--next { right: 0.75rem; }

.wmw-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.wmw-gallery__thumb {
	appearance: none;
	border: 1px solid transparent;
	padding: 0;
	background: var(--color-background-dim);
	cursor: pointer;
	aspect-ratio: 1;
	overflow: hidden;
	opacity: 0.65;
	transition: opacity var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}

.wmw-gallery__thumb.is-active,
.wmw-gallery__thumb:hover {
	opacity: 1;
	border-color: var(--color-primary);
}

.wmw-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Specs */
.wmw-specs__title {
	font-size: var(--fs-sm);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.wmw-specs__list {
	margin: 0;
}

.wmw-specs__row {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 1rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--color-border);
	font-size: var(--fs-sm);
}

.wmw-specs__row dt {
	color: var(--color-text-muted);
	margin: 0;
}

.wmw-specs__row dd {
	margin: 0;
}

/* Modals */
.wmw-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.wmw-modal[hidden] {
	display: none !important;
}

.wmw-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	animation: wmw-fade 0.25s var(--ease);
}

.wmw-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 440px);
	background: #fff;
	border: 1px solid var(--color-border);
	padding: 2rem 1.5rem 1.5rem;
	box-shadow: var(--shadow-soft);
	animation: wmw-fade-up 0.35s var(--ease);
	max-height: min(90vh, 720px);
	overflow-y: auto;
}

.wmw-modal__dialog h2 {
	font-size: var(--fs-xl);
	margin-bottom: 0.5rem;
}

.wmw-modal__lead {
	margin: 0 0 1.5rem;
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
}

.wmw-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.85rem;
	border: 0;
	background: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.wmw-form__row {
	margin-bottom: 1rem;
}

.wmw-form__row label {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.wmw-form__row label span {
	color: var(--color-error);
}

.wmw-optional {
	color: var(--color-text-muted) !important;
	text-transform: none;
	letter-spacing: 0;
}

.wmw-form-message {
	margin: 0.85rem 0 0;
	font-size: var(--fs-sm);
}

.wmw-form-message.is-error {
	color: var(--color-error);
}

.wmw-form-message.is-success {
	color: var(--color-success);
}

@keyframes wmw-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Breadcrumbs */
.wmw-breadcrumbs {
	padding: 1.25rem 0 0;
	font-size: var(--fs-xs);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.wmw-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wmw-breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin-left: 0.35rem;
	opacity: 0.5;
}

/* Pagination */
.wmw-pagination {
	margin-top: 2.5rem;
}

.wmw-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.wmw-pagination .page-numbers a,
.wmw-pagination .page-numbers span {
	display: inline-flex;
	min-width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	font-size: var(--fs-sm);
	padding: 0 0.5rem;
}

.wmw-pagination .page-numbers .current {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

/* Footer */
.wmw-footer {
	background: #fff;
	border-top: 1px solid var(--color-border);
	padding: 3.5rem 0 1.5rem;
	margin-top: auto;
}

.wmw-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.wmw-footer h3,
.wmw-footer-widget__title {
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.wmw-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wmw-footer__menu li {
	margin-bottom: 0.5rem;
}

.wmw-footer__brand p,
.wmw-footer__col p {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
	max-width: 36ch;
}

.wmw-newsletter {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem;
}

.wmw-newsletter button {
	border: 0;
	background: var(--color-primary);
	color: #fff;
	padding: 0.7rem 1rem;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: var(--ls-wide);
	font-size: var(--fs-xs);
}

.wmw-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-top: 1.25rem;
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
}

.wmw-prose {
	font-size: var(--fs-md);
	line-height: 1.65;
}

.wmw-prose p {
	margin: 0 0 1rem;
}

.wmw-page__header {
	padding: 2rem 0 1.5rem;
}

.wmw-empty-state {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--color-text-muted);
}

.wmw-empty-state--page {
	padding: 6rem 1rem;
}

body.admin-bar .wmw-header {
	top: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
	.wmw-watch-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.wmw-header__nav--left {
		display: none;
	}

	.wmw-header__menu-toggle {
		display: inline-flex;
		flex-shrink: 0;
	}

	.wmw-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 0.5rem;
		width: 100%;
		max-width: 100%;
		padding-inline: var(--gutter);
		box-sizing: border-box;
	}

	.wmw-header__brand {
		min-width: 0;
		max-width: 100%;
		overflow: hidden;
		justify-self: center;
	}

	.wmw-header__brand .wmw-logo,
	.wmw-header__brand .wmw-logo__mark,
	.wmw-header .custom-logo-link {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: clamp(0.72rem, 3.6vw, 1.05rem);
		letter-spacing: 0.08em;
	}

	.wmw-header .custom-logo-link img {
		max-height: 28px;
		max-width: 100%;
		width: auto;
		object-fit: contain;
	}

	.wmw-header__actions {
		flex-shrink: 0;
		gap: 0.2rem;
		justify-self: end;
	}

	.wmw-header__search-toggle,
	.wmw-header__cart {
		padding: 0.3rem;
	}
}

@media (max-width: 900px) {
	.wmw-watch__layout,
	.wmw-trust__grid,
	.wmw-archive-layout,
	.wmw-footer__grid {
		grid-template-columns: 1fr;
	}

	.wmw-watch__info-col {
		position: static;
	}

	.wmw-brand-index {
		grid-template-columns: 1fr 1fr;
	}

	.wmw-brand-index li:nth-child(3n) {
		border-right: 1px solid var(--color-border);
	}

	.wmw-brand-index li:nth-child(2n) {
		border-right: 0;
	}

	.wmw-filters__toggle {
		display: block;
	}

	.wmw-filters__form {
		display: none;
		position: static;
	}

	.wmw-filters.is-open .wmw-filters__form {
		display: grid;
	}

	.wmw-watch-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	:root {
		--header-height: 64px;
		--gutter: 1rem;
	}

	.wmw-header__inner {
		gap: 0.35rem;
		padding-inline: 0.75rem;
	}

	.wmw-header__brand .wmw-logo,
	.wmw-header__brand .wmw-logo__mark {
		font-size: clamp(0.65rem, 3.2vw, 0.9rem);
		letter-spacing: 0.05em;
	}

	.wmw-watch-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.wmw-hero {
		min-height: 70vh;
	}

	.wmw-hero__content {
		padding: 3rem 0 2.5rem;
	}

	.wmw-header__cta {
		display: none;
	}

	.wmw-brand-index {
		grid-template-columns: 1fr;
	}

	.wmw-brand-index li {
		border-right: 0;
	}

	.wmw-section {
		padding: 3rem 0;
	}

	.wmw-gallery__nav {
		opacity: 1;
	}

	.wmw-newsletter {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ========== Grailzee-aligned layout additions ========== */

/* Dropdown menus */
.wmw-nav .menu-item-has-children {
	position: relative;
}
.wmw-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--color-border);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	z-index: 50;
	box-shadow: var(--shadow-soft);
}
.wmw-nav .menu-item-has-children:hover > .sub-menu,
.wmw-nav .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}
.wmw-nav .sub-menu a {
	display: block;
	padding: 0.55rem 1rem;
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: var(--fs-sm);
	white-space: nowrap;
	color: #111;
}
.wmw-nav .sub-menu a:hover {
	background: var(--color-background-dim);
	opacity: 1;
}
.wmw-header__nav--right {
	display: block;
}
.wmw-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.wmw-header__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.35rem;
	opacity: 1;
}
.wmw-header__cart:hover { opacity: 0.65; }
.wmw-header__cart-count {
	position: absolute;
	top: -2px;
	right: -4px;
	min-width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #ff4f33;
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	display: none;
}
.wmw-header__cart-count.is-visible { display: block; }

/* Hero slideshow — full viewport (header overlays) */
.wmw-hero-slider {
	position: relative;
	height: 100vh;
	height: 100dvh;
	min-height: 0;
	max-height: none;
	background: #0f0f0f;
	color: #fff;
	overflow: hidden;
}
.wmw-hero-slide {
	display: none;
	position: absolute;
	inset: 0;
	min-height: 0;
	height: 100%;
	align-items: flex-end;
}
.wmw-hero-slide.is-active {
	display: flex;
	animation: wmw-fade 0.6s var(--ease);
}
.wmw-hero-slide__bg {
	position: absolute;
	inset: 0;
}
.wmw-hero-slide__bg--1 {
	background:
		linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.75) 100%),
		radial-gradient(ellipse at 70% 30%, #3a3a3a, #0a0a0a 60%);
}
.wmw-hero-slide__bg--2 {
	background:
		linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.8) 100%),
		linear-gradient(135deg, #1c1c1c, #0d0d0d 50%, #2a2420);
}
.wmw-hero-slide__bg--3 {
	background:
		linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.78) 100%),
		radial-gradient(circle at 40% 60%, #2a2a2a, #050505 70%);
}
.wmw-hero-slide__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 4rem var(--gutter) 5rem;
	box-sizing: border-box;
}
.wmw-hero-slide__eyebrow {
	display: inline-block;
	font-size: var(--fs-sm);
	margin-bottom: 1rem;
	opacity: 0.9;
	border-bottom: 1px solid rgba(255,255,255,.5);
	padding-bottom: 2px;
	color: #fff;
}
.wmw-hero-slide__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 1.25rem;
	max-width: none;
	width: 100%;
}
.wmw-hero-slide__title--sub {
	max-width: none;
	width: 100%;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.wmw-btn--light {
	background: #fff;
	color: #111;
	border-color: #fff;
}
.wmw-btn--light:hover {
	background: transparent;
	color: #fff;
}
.wmw-hero-slider__controls {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	display: flex;
	gap: 0.35rem;
	z-index: 2;
}
.wmw-hero-slider__controls button {
	appearance: none;
	border: 1px solid rgba(255,255,255,.4);
	background: rgba(0,0,0,.35);
	color: #fff;
	padding: 0.4rem 0.65rem;
	cursor: pointer;
	font-size: var(--fs-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.wmw-hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	transform: translateX(-50%);
	display: flex;
	gap: 0.4rem;
	z-index: 2;
}
.wmw-hero-slider__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,.35);
	padding: 0;
	cursor: pointer;
}
.wmw-hero-slider__dots button.is-active {
	background: #fff;
}

/* Unlock + brand cloud (Grailzee brands index) */
.wmw-unlock {
	padding-top: 3.5rem;
}
.wmw-unlock__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}
.wmw-unlock__head h2 {
	font-size: var(--fs-2xl);
	margin: 0;
}
.wmw-brand-cloud {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--color-border);
}
.wmw-brand-cloud li {
	border-bottom: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
}
.wmw-brand-cloud li:nth-child(4n) {
	border-right: 0;
}
.wmw-brand-cloud a {
	display: block;
	padding: 0.95rem 1rem;
	font-size: var(--fs-sm);
	opacity: 1;
	transition: background var(--duration-fast) var(--ease);
}
.wmw-brand-cloud a:hover {
	background: var(--color-background-dim);
	opacity: 1;
}

.wmw-live-dot {
	font-size: 0.55em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	vertical-align: middle;
}
.wmw-view-all-products {
	text-align: center;
	margin: 2rem 0 0;
}
.wmw-card__price {
	margin: 0 0 0.65rem;
	font-size: var(--fs-sm);
}
.wmw-latest {
	background: var(--color-background-dim);
}

/* Footer grailzee columns */
.wmw-footer__grid--grailzee {
	grid-template-columns: repeat(4, 1fr);
}
.wmw-footer__top {
	margin-bottom: 2rem;
}
.wmw-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}
.wmw-back-top {
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-wide);
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.wmw-header__nav--right { display: none; }
	.wmw-brand-cloud { grid-template-columns: repeat(2, 1fr); }
	.wmw-brand-cloud li:nth-child(4n) { border-right: 1px solid var(--color-border); }
	.wmw-brand-cloud li:nth-child(2n) { border-right: 0; }
}
@media (max-width: 900px) {
	.wmw-footer__grid--grailzee { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.wmw-brand-cloud { grid-template-columns: 1fr; }
	.wmw-brand-cloud li { border-right: 0; }
	.wmw-footer__grid--grailzee { grid-template-columns: 1fr; }
	.wmw-hero-slider {
		height: 100svh;
	}
}

/* Hero media (image/video) */
.wmw-hero-slide__media {
	position: absolute;
	inset: 0;
}
.wmw-hero-slide__img,
.wmw-hero-slide__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wmw-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: #000;
	pointer-events: none;
}
.wmw-hero-slide__text {
	max-width: 36ch;
	margin: 0 0 1.25rem;
	opacity: 0.9;
	font-size: var(--fs-md);
}

/* Promo band */
.wmw-promo-band {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.wmw-promo-band__media {
	position: absolute;
	inset: 0;
	background: #111;
}
.wmw-promo-band__media img,
.wmw-promo-band__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wmw-promo-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.72));
}
.wmw-promo-band__content {
	position: relative;
	z-index: 1;
	padding: 4rem 0;
	max-width: 640px;
}
.wmw-promo-band__content h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	max-width: 14ch;
}
.wmw-brand-cloud__logo {
	max-height: 18px;
	width: auto;
	margin-right: 0.5rem;
	display: inline-block;
	vertical-align: middle;
}

/* Page hero + sections */
.wmw-page-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	margin-bottom: 2.5rem;
}
.wmw-page-hero__media {
	position: absolute;
	inset: 0;
	background: #111;
}
.wmw-page-hero__media img,
.wmw-page-hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wmw-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.7));
}
.wmw-page-hero__content {
	position: relative;
	z-index: 1;
	padding: 3rem 0 2.5rem;
}
.wmw-page-hero__content .wmw-breadcrumbs,
.wmw-page-hero__content .wmw-breadcrumbs a {
	color: rgba(255,255,255,.75);
}
.wmw-page-hero__content h1 {
	font-size: var(--fs-2xl);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.wmw-page-sections {
	display: grid;
	gap: 3.5rem;
	padding-bottom: 4rem;
}
.wmw-sec--image img,
.wmw-sec--video video,
.wmw-sec__media img {
	width: 100%;
	display: block;
}
.wmw-sec--image figcaption,
.wmw-sec--video figcaption {
	margin-top: 0.5rem;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}
.wmw-sec--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.wmw-sec--split-right .wmw-sec__media { order: 2; }
.wmw-sec--cta {
	position: relative;
	padding: 4rem 1.5rem;
	text-align: center;
	color: #fff;
	background: #111 var(--cta-bg, none) center/cover no-repeat;
}
.wmw-sec--cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.55);
}
.wmw-sec--cta__inner {
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.wmw-sec--split { grid-template-columns: 1fr; }
	.wmw-sec--split-right .wmw-sec__media { order: 0; }
}

/* ========== Scroll / height fixes ========== */
.wmw-hero-slider {
	min-height: 0 !important;
	height: 100vh !important;
	height: 100dvh !important;
	max-height: none !important;
}
.wmw-hero-slide {
	display: none !important;
	position: absolute !important;
	inset: 0;
	min-height: 0 !important;
	height: 100%;
	margin: 0;
}
.wmw-hero-slide.is-active {
	display: flex !important;
}
.wmw-hero-slider__track {
	position: relative;
	height: 100%;
}
.wmw-hero-slide__content {
	padding: 2.5rem var(--gutter) 3.25rem !important;
	max-width: var(--container-width) !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.wmw-section {
	padding: 2.75rem 0 !important;
}
.wmw-unlock {
	padding-top: 2.25rem !important;
	padding-bottom: 1.5rem !important;
}
.wmw-brand-cloud-wrap {
	position: relative;
}
.wmw-brand-cloud-wrap:not(.is-expanded) .wmw-brand-cloud {
	max-height: 220px;
	overflow: hidden;
}
.wmw-brand-cloud-wrap:not(.is-expanded)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2.5rem;
	height: 64px;
	background: linear-gradient(180deg, rgba(255,255,255,0), #fff 90%);
	pointer-events: none;
}
.wmw-brand-cloud-wrap.is-expanded::after {
	display: none;
}
.wmw-brand-cloud {
	grid-template-columns: repeat(4, 1fr) !important;
}
.wmw-brand-cloud a {
	padding: 0.65rem 0.85rem !important;
	font-size: 0.8125rem !important;
}
.wmw-brand-cloud__more {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
	padding: 0.7rem;
	border: 1px solid var(--color-border);
	background: #fff;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem;
}
.wmw-promo-band {
	min-height: 280px !important;
}
.wmw-promo-band__content {
	padding: 2.5rem 0 !important;
}
.wmw-watch-grid {
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 1.15rem 1rem !important;
}
.wmw-card__media {
	aspect-ratio: 1 / 1 !important;
}
.wmw-card__placeholder {
	min-height: 0 !important;
}
.wmw-footer {
	padding: 2.5rem 0 1.25rem !important;
}
.wmw-view-all-products {
	margin: 1.25rem 0 0 !important;
}
@media (max-width: 1100px) {
	.wmw-watch-grid { grid-template-columns: repeat(3, 1fr) !important; }
	.wmw-brand-cloud { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 900px) {
	.wmw-hero-slider {
		height: 100vh !important;
		height: 100dvh !important;
	}
	.wmw-watch-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.wmw-brand-cloud { grid-template-columns: repeat(2, 1fr) !important; }
	.wmw-brand-cloud-wrap:not(.is-expanded) .wmw-brand-cloud { max-height: 180px; }
	.wmw-section { padding: 2rem 0 !important; }
}
@media (max-width: 560px) {
	.wmw-hero-slider {
		height: 100svh !important;
	}
	.wmw-watch-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.wmw-brand-cloud { grid-template-columns: 1fr 1fr !important; }
	.wmw-promo-band { min-height: 220px !important; }
}
