/* ===================================================================
   VERLINI — Noir Collection
   Global design system & styles
   =================================================================== */

:root {
    /* Palette — monochrome luxury */
    --black: #0a0a0b;
    --ink: #141416;
    --graphite: #1c1c1f;
    --steel: #2a2a2e;
    --smoke: #6b6b70;
    --silver: #b9b9be;
    --platinum: #e6e6e8;
    --white: #ffffff;
    --paper: #f6f5f3;

    /* Accent — polished silver gradient tokens */
    --accent: #c8c8cd;
    --accent-bright: #f2f2f4;

    /* Typography */
    --font-display: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

    /* Metrics */
    --header-h: 84px;
    --maxw: 1320px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--smoke);
}

.display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
}

.section {
    padding: clamp(72px, 11vw, 160px) 0;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
}

.center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 16px 34px;
    border-radius: 40px;
    transition: all 0.45s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn--solid {
    background: var(--ink);
    color: var(--white);
}

.btn--solid:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--ink);
}

.btn--line {
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    gap: 0.5em;
}

.btn--line .arrow {
    transition: transform 0.4s var(--ease);
}

.btn--line:hover .arrow {
    transform: translateX(6px);
}

/* ===================================================================
   Header
   =================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-header__inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
    color: var(--white);
    transition: color 0.5s var(--ease);
    justify-self: center;
    grid-column: 2;
}

.nav {
    display: flex;
    gap: 38px;
    grid-column: 1;
}

.nav a {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
    transition: color 0.4s var(--ease);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.icon-btn {
    color: var(--white);
    display: inline-flex;
    transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0.9;
}

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

.icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Scrolled / solid header */
.site-header.is-solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header.is-solid .brand,
.site-header.is-solid .nav a,
.site-header.is-solid .icon-btn {
    color: var(--ink);
}

.site-header.is-solid .nav a {
    color: rgba(20, 20, 22, 0.78);
}

/* Pages with a light hero use the solid theme from the start */
.theme-light .site-header:not(.is-solid) .brand,
.theme-light .site-header:not(.is-solid) .nav a,
.theme-light .site-header:not(.is-solid) .icon-btn {
    color: var(--ink);
}

/* Hamburger */
.burger {
    display: none;
    width: 26px;
    height: 18px;
    position: relative;
}

.burger span {
    position: absolute;
    left: 0;
    height: 1.5px;
    width: 100%;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

.site-header.is-solid .burger span { background: var(--ink); }

.is-open .burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.is-open .burger span:nth-child(2) { opacity: 0; }
.is-open .burger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__content {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px) clamp(70px, 12vh, 130px);
    text-align: center;
}

.hero__eyebrow {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 6rem);
    margin-bottom: 18px;
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0 auto 38px;
}

.hero__cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-hint::after {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2.4s var(--ease) infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================================================
   Generic feature / split sections
   =================================================================== */
.lead {
    max-width: 760px;
    margin: 0 auto;
}

.lead .eyebrow { margin-bottom: 22px; }

.lead h2 {
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    margin-bottom: 26px;
}

.lead p {
    font-size: 1.08rem;
    color: var(--steel);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
}

.split--reverse .split__media { order: 2; }

.split__media img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.split__body .eyebrow { margin-bottom: 18px; }

.split__body h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    margin-bottom: 22px;
}

.split__body p {
    color: var(--steel);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* Dark section variant */
.section--dark {
    background: var(--black);
    color: var(--platinum);
}

.section--dark .lead p,
.section--dark .split__body p {
    color: var(--silver);
}

.section--paper { background: var(--paper); }

/* ===================================================================
   Collection cards
   =================================================================== */
.collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ink);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: flex-end;
}

.card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.card:hover img { transform: scale(1.06); }

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.card__label {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
}

.card__label h3 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.card__label span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ===================================================================
   Strip / banner
   =================================================================== */
.banner {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.4);
}

.banner__inner { padding: 0 24px; }

.banner h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    margin-bottom: 22px;
}

.banner p {
    max-width: 560px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer {
    background: var(--black);
    color: var(--silver);
    padding: clamp(60px, 8vw, 110px) 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-mark {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.92rem;
    max-width: 320px;
    color: var(--smoke);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--smoke);
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    font-size: 0.78rem;
    color: var(--smoke);
}

.footer-bottom .socials {
    display: flex;
    gap: 18px;
}

.footer-bottom .socials a:hover { color: var(--white); }

/* ===================================================================
   Reveal animations
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
    .split,
    .split--reverse { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   Product page — VERLINI NOIR
   =================================================================== */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 32px) 20px 56px;
    background: #000;
    color: var(--platinum);
    overflow: hidden;
}

.product-hero__eyebrow {
    color: var(--silver);
    margin-bottom: 16px;
    position: relative;
}

.product-hero__title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
}

.product-hero__tag {
    font-size: 0.8rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
    position: relative;
}

.product-hero__buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.price-block--hero {
    margin: 0;
    gap: 10px;
}

.price-block--hero .price--was {
    font-size: 0.95rem;
}

.price-block--hero .price--now {
    font-size: clamp(1.35rem, 3.5vw, 2rem);
}

.btn--header-buy {
    padding: 10px 20px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.page-product .header-actions .desktop-only {
    display: none;
}

@media (max-width: 900px) {
    .btn--header-buy {
        padding: 8px 14px;
        font-size: 0.62rem;
    }

    .header-actions {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .product-hero__buy .price-block--hero {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

/* The live watch — real product photo (full strap) with animated hands.
   The photo has a seamless pure-black background, so it blends directly
   into the pure-black hero with no mask. Sized by height so the whole
   strap fits and the watch head stays prominent. */
.watch-photo {
    position: relative;
    height: min(92vh, 1040px);
    margin-top: 0;
}

.watch-photo > img {
    height: 100%;
    width: auto;
    display: block;
}

/* hands overlay sits exactly over the photo (same box & aspect) */
.watch-hands {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 2;
}

/* Hands are driven each frame by JS (requestAnimationFrame) via the
   SVG transform attribute, so no CSS transition is applied here. */

/* Rolex-style model label pill at the foot of the hero */
.watch-pill {
    position: absolute;
    left: 50%;
    bottom: clamp(4px, 4%, 40px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* -------------------------------------------------------------------
   Product pages — photo backgrounds blended to each section
   ------------------------------------------------------------------- */
body.page-product .split__media img,
body.page-product .gallery img {
    box-shadow: none;
}

body.page-product .split__media {
    overflow: hidden;
    border-radius: 4px;
}

/* Studio-lit product shots (light gray) — CHRONO, MARIN */
body[data-model="chrono"] .watch-photo,
body[data-model="marin"] .watch-photo {
    background: radial-gradient(ellipse 78% 68% at 50% 42%, #d8d8d8 0%, #5a5a5a 48%, #000 88%);
}

body[data-model="chrono"] .watch-photo > img,
body[data-model="marin"] .watch-photo > img {
    -webkit-mask-image: radial-gradient(ellipse 90% 84% at 50% 44%, #000 56%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 84% at 50% 44%, #000 56%, transparent 100%);
}

body[data-model="chrono"] .section:not(.section--dark) .split__media,
body[data-model="marin"] .section:not(.section--dark) .split__media {
    background: radial-gradient(ellipse 105% 98% at 50% 50%, #d6d6d6 0%, #ececec 52%, var(--white) 100%);
}

body[data-model="chrono"] .section--paper .split__media,
body[data-model="marin"] .section--paper .split__media {
    background: radial-gradient(ellipse 105% 98% at 50% 50%, #d4d3d1 0%, #ebeae8 52%, var(--paper) 100%);
}

body[data-model="chrono"] .section--dark .split__media,
body[data-model="marin"] .section--dark .split__media {
    background: radial-gradient(ellipse 88% 82% at 50% 48%, #d0d0d0 0%, #4a4a4a 42%, var(--black) 100%);
}

body[data-model="chrono"] .section:not(.section--dark) .split__media img,
body[data-model="marin"] .section:not(.section--dark) .split__media img,
body[data-model="chrono"] .section--dark .split__media img,
body[data-model="marin"] .section--dark .split__media img {
    -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 62%, transparent 100%);
    mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 62%, transparent 100%);
}

body[data-model="chrono"] .gallery--single a,
body[data-model="marin"] .gallery--single a {
    background: radial-gradient(ellipse 100% 95% at 50% 48%, #d6d6d6 0%, #efefef 55%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px);
}

body[data-model="chrono"] .gallery--single img,
body[data-model="marin"] .gallery--single img {
    -webkit-mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, #000 60%, transparent 100%);
    object-fit: contain;
    aspect-ratio: auto;
    max-height: 520px;
    width: auto;
}

/* Cinematic dark product shots — EON, MONTE */
body[data-model="eon"] .product-hero {
    background: radial-gradient(ellipse 110% 75% at 50% 28%, #141820 0%, #000 58%);
}

body[data-model="monte"] .product-hero {
    background: radial-gradient(ellipse 110% 75% at 50% 28%, #0e1218 0%, #000 58%);
}

body[data-model="eon"] .watch-photo > img,
body[data-model="monte"] .watch-photo > img {
    -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 46%, #000 62%, transparent 100%);
    mask-image: radial-gradient(ellipse 92% 88% at 50% 46%, #000 62%, transparent 100%);
}

body[data-model="eon"] .section:not(.section--dark) .split__media,
body[data-model="monte"] .section:not(.section--dark) .split__media {
    background: radial-gradient(ellipse 100% 95% at 50% 50%, #161a22 0%, var(--black) 72%);
    padding: clamp(28px, 5vw, 56px);
}

body[data-model="eon"] .section--paper .split__media,
body[data-model="monte"] .section--paper .split__media {
    background: radial-gradient(ellipse 100% 95% at 50% 50%, #141820 0%, var(--black) 72%);
}

body[data-model="eon"] .section--dark .split__media,
body[data-model="monte"] .section--dark .split__media {
    background: transparent;
    padding: 0;
}

body[data-model="eon"] .section--dark .split__media img,
body[data-model="monte"] .section--dark .split__media img {
    -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 66%, transparent 100%);
    mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 66%, transparent 100%);
}

body[data-model="eon"] .gallery--single a,
body[data-model="monte"] .gallery--single a {
    background: radial-gradient(ellipse 100% 95% at 50% 48%, #141820 0%, var(--black) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px);
}

body[data-model="eon"] .gallery--single img,
body[data-model="monte"] .gallery--single img {
    -webkit-mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, #000 64%, transparent 100%);
    mask-image: radial-gradient(ellipse 94% 90% at 50% 50%, #000 64%, transparent 100%);
    object-fit: contain;
    aspect-ratio: auto;
    max-height: 520px;
    width: auto;
}

/* Pure-black product shots — NOIR */
body[data-model="noir"] .split__media img {
    -webkit-mask-image: radial-gradient(ellipse 98% 94% at 50% 50%, #000 68%, transparent 100%);
    mask-image: radial-gradient(ellipse 98% 94% at 50% 50%, #000 68%, transparent 100%);
}

body[data-model="noir"] .section:not(.section--dark) .split__media {
    background: radial-gradient(ellipse 100% 95% at 50% 50%, #1a1a1c 0%, var(--white) 78%);
    padding: clamp(16px, 3vw, 32px);
}

body[data-model="noir"] .section--dark .split__media {
    background: transparent;
}

body[data-model="noir"] .gallery img {
    -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 65%, transparent 100%);
    mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 65%, transparent 100%);
}

/* Spec section */
.specs {
    background: var(--ink);
    color: var(--platinum);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(40px, 8vw, 120px);
    margin-top: 50px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row dt {
    color: var(--smoke);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.spec-row dd {
    color: var(--white);
    font-size: 0.96rem;
    text-align: right;
}

/* Detail feature with measured callouts */
.feature-points {
    margin-top: 30px;
    display: grid;
    gap: 22px;
}

.feature-points li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-points .num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--smoke);
    min-width: 36px;
}

.feature-points h4 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.feature-points p {
    font-size: 0.95rem;
    margin: 0;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.8s var(--ease);
}

.gallery a { overflow: hidden; border-radius: 3px; display: block; }
.gallery a:hover img { transform: scale(1.05); }

.gallery--single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.gallery .span-2 { grid-column: span 2; aspect-ratio: auto; }

/* Price / buy block */
.buy {
    text-align: center;
}

.buy .price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin: 10px 0 6px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 10px 0 6px;
}

.price-block .price--was {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--smoke);
    text-decoration: line-through;
    letter-spacing: 0.04em;
}

.price-block .price--now {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
}

.price-block .price-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
}

/* Simple product hero (non-live models) */
.product-hero-simple {
    background: #000;
    padding: calc(var(--header-h) + 40px) 0 0;
    text-align: center;
}

.product-hero-simple__eyebrow { margin-bottom: 8px; }

.product-hero-simple__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 8px;
}

.product-hero-simple__tag {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 28px;
}

.product-hero-simple__photo img {
    width: min(520px, 88vw);
    height: auto;
    display: block;
    margin: 0 auto;
}

.buy .note {
    font-size: 0.85rem;
    color: var(--smoke);
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .watch-photo { height: auto; width: min(94vw, 540px); }
    .watch-photo > img { height: auto; width: 100%; }
}

@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; gap: 0; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery .span-2 { grid-column: span 2; }
}

/* ===================================================================
   Language switcher (Rolex-style)
   =================================================================== */
.lang-switch { position: relative; display: inline-flex; }

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.lang-toggle svg { width: 18px; height: 18px; }
.lang-current { font-weight: 400; }

.lang-panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: min(88vw, 360px);
    background: var(--white);
    color: var(--ink);
    border-radius: 10px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.lang-switch.is-open .lang-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lang-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    color: var(--ink);
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

button.lang-option { width: 100%; }
button.lang-option:hover { background: var(--paper); }

.lang-option.is-active { background: var(--ink); color: var(--white); }

.lang-option.is-disabled { cursor: default; }
.lang-option.is-disabled .lang-name { color: var(--silver); }

.lang-name { line-height: 1.2; }

.lang-soon {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-top: 3px;
}

/* ===================================================================
   Verify panel (authenticity page)
   =================================================================== */
.auth-points {
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
    display: grid;
    gap: 18px;
}

.auth-points li {
    display: grid;
    gap: 4px;
}

.auth-points strong {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.auth-points span {
    font-size: 0.92rem;
    color: var(--smoke);
    line-height: 1.55;
}

.verify-hero { padding-bottom: 20px; }

.verify-panel { padding-top: 0; }

.verify-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 48px clamp(24px, 5vw, 56px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.verify-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
    color: var(--white);
}

.verify-box > p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
}

.verify-form {
    display: grid;
    gap: 16px;
}

.verify-field span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
    text-align: left;
}

.verify-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.verify-field input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.45);
}

.verify-result {
    margin-top: 28px;
    padding: 22px 20px;
    border-radius: 8px;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.verify-result.is-success { border-color: rgba(120, 200, 140, 0.35); }
.verify-result.is-error { border-color: rgba(220, 120, 120, 0.35); }

.verify-result__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.verify-result__meta {
    display: grid;
    gap: 10px;
    margin: 0 0 14px;
}

.verify-result__meta div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    align-items: baseline;
}

.verify-result__meta dt {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.verify-result__meta dd {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}

.verify-result__note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .verify-result__meta div { grid-template-columns: 1fr; gap: 4px; }
}

/* ===================================================================
   Pre-order modal (VERLINI NOIR only)
   =================================================================== */
.po-backdrop {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 8, 10, 0.66);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.po-backdrop.is-open { opacity: 1; visibility: visible; }

.po-modal {
    position: relative;
    width: min(94vw, 460px);
    max-height: 92vh;
    overflow-y: auto;
    background: var(--white);
    color: var(--ink);
    border-radius: 12px;
    padding: 40px clamp(24px, 4vw, 42px);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
    transform: translateY(14px) scale(0.985);
    transition: transform 0.45s var(--ease);
}

.po-backdrop.is-open .po-modal { transform: none; }

.po-x {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--smoke);
    transition: color 0.3s var(--ease);
}

.po-x:hover { color: var(--ink); }

.po-modal .eyebrow { margin-bottom: 14px; }

.po-modal h3 {
    font-size: clamp(1.6rem, 3.4vw, 2rem);
    margin-bottom: 10px;
}

.po-desc {
    font-size: 0.9rem;
    color: var(--smoke);
    margin-bottom: 26px;
}

.po-field { display: block; margin-bottom: 16px; }

.po-field span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 7px;
}

.po-field input,
.po-field select,
.po-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.3s var(--ease);
}

.po-field input:focus,
.po-field select:focus,
.po-field textarea:focus {
    outline: none;
    border-color: var(--ink);
}

.po-field textarea { resize: vertical; min-height: 72px; }

.po-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 16px;
}

.po-fieldset legend {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 10px;
}

.po-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.po-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--ink);
    cursor: pointer;
}

.po-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--ink);
}

.po-channel.is-hidden { display: none; }

.po-error {
    font-size: 0.82rem;
    color: #9b2c2c;
    margin: -4px 0 12px;
}

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

.po-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.po-actions .btn { flex: 1; justify-content: center; }

.po-cancel {
    border: 1px solid rgba(0, 0, 0, 0.22);
    color: var(--ink);
}

.po-cancel:hover { background: var(--paper); }

.po-success {
    display: none;
    text-align: center;
    padding: 14px 0 4px;
}

.po-modal.is-success .po-form { display: none; }
.po-modal.is-success .po-success { display: block; }

.po-success svg {
    width: 56px;
    height: 56px;
    color: var(--ink);
    margin: 0 auto 18px;
}

.po-success p {
    font-size: 0.98rem;
    color: var(--steel);
    margin-bottom: 26px;
}

@media (prefers-reduced-motion: reduce) {
    .po-modal { transform: none; }
}

/* ===================================================================
   Collection — model cards (incl. "coming soon")
   =================================================================== */
.models {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.model-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

a.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.model-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #0e0e11;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

a.model-card:hover .model-card__media img { transform: scale(1.05); }
a.model-card.is-soon:hover .model-card__media img { transform: none; }

.model-card__info {
    padding: 22px 24px 26px;
    text-align: left;
}

.model-card__info h3 { font-size: 1.45rem; margin-bottom: 6px; }

.model-card__tag {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoke);
}

.model-card__price {
    display: block;
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
}

.model-card__cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}

.model-card.is-soon {
    pointer-events: auto;
    cursor: default;
}

.model-card.is-soon:hover {
    transform: none;
    box-shadow: none;
}

.model-card.is-soon .model-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.model-card__soon {
    display: block;
    margin-top: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
}

.buy-soon,
.stock-badge {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--smoke);
    margin: 16px 0 8px;
}

/* coming-soon variant (placeholder cards) */
.model-card.is-soon.is-placeholder {
    background: #0d0d10;
    border-color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.model-card.is-soon.is-placeholder .model-card__media {
    background: radial-gradient(120% 100% at 50% 35%, #1d1d23 0%, #0a0a0c 70%);
}

.soon-icon { color: rgba(255, 255, 255, 0.26); }
.soon-icon svg { width: 64px; height: 64px; }

.model-card.is-soon .model-card__info h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.92rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .models { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
    .models { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }

    .nav,
    .header-actions .desktop-only { display: none; }

    .burger { display: block; }

    .nav.is-mobile {
        display: flex;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 30px clamp(20px, 5vw, 64px);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        z-index: 99;
    }

    .nav.is-mobile.is-open-menu { transform: none; }

    .nav.is-mobile a {
        color: var(--ink);
        font-size: 1.1rem;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .models { grid-template-columns: 1fr 1fr; gap: 14px; }
    .model-card__info { padding: 16px 16px 20px; }
    .model-card__info h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .lang-panel { grid-template-columns: 1fr; }
}
