/* ============================================================
   BÉZEL & CO. — LIGHT EDITION (V2)
   White boutique theme. Product photos sit on pure white so the
   original catalog shots blend with their real shadows.
   ============================================================ */

:root {
  --ink:      #18161c;   /* near-black text */
  --ink-soft: #4c4853;
  --paper:    #ffffff;   /* pure white (product areas) */
  --paper-2:  #f6f4f0;   /* warm off-white (rhythm sections) */
  /* POP accent system (replaces gold) */
  --gold:     #ff3d77;   /* primary pop accent (was gold) — small accents, rings */
  --gold-deep:#d62e6a;   /* deeper pop for text on white (contrast) */
  --gold-lt:  #ff86ad;   /* light pop for dark backgrounds */
  --pop-grad: linear-gradient(90deg, #ff5e57 0%, #ff3d77 30%, #b14cff 65%, #4d8bff 100%);
  --grey:     #8f8c95;
  --line:     rgba(24,22,28,0.14);
  --line-soft:rgba(24,22,28,0.08);
  --footer:   #151218;   /* dark footer grounds the page */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-weight: 300; line-height: 1.6; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Custom cursor: the watch follows the mouse (JS follower) ----------
   The native pointer is hidden whenever the follower is active (html.watchcursor).
   This is NOT inside a media query, so it can't misfire — the class is only added
   by JS on mouse/hover devices, and if the script fails the class is never added
   (so we never end up with an invisible cursor). */
html.watchcursor, html.watchcursor * { cursor: url("../assets/blank.png") 16 16, none !important; }
.watch-cursor {
  position: fixed; left: 0; top: 0; width: 60px; height: auto;
  pointer-events: none; z-index: 99999; opacity: 0;
  transition: opacity 0.25s ease; will-change: transform;
}

.kicker { font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.2rem; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.1rem 2.4rem; border: 1px solid var(--gold);
  background: transparent; color: var(--gold-deep); cursor: pointer;
  transition: all 0.5s var(--ease); border-radius: 1px;
}
.btn--gold { background: var(--pop-grad); background-size: 200% 100%; color: #fff; border-color: transparent; }
.btn--gold:hover { background-position: 100% 0; }
.btn--dark { color: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--paper); }
.btn--full { width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem clamp(1.2rem, 4vw, 3.5rem);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
/* nav is white over the dark video hero, dark once scrolled onto the white page */
.nav__brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.18em; color: var(--ink); }
.nav__brand span { color: var(--gold); }
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); opacity: 0.82; transition: opacity 0.3s, color 0.3s; }
.nav__links a:hover { opacity: 1; color: var(--gold-deep); }
.nav__cart { font-family: var(--sans); background: none; border: none; cursor: pointer; color: var(--ink); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.nav__cart-count { display: inline-grid; place-items: center; min-width: 1.4rem; height: 1.4rem; padding: 0 0.3rem; background: var(--gold); color: #fff; border-radius: 50%; font-size: 0.66rem; font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 16vh;
}
.hero__video, .hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video { display: none; z-index: 0; }
.hero__video.is-active { display: block; }
.hero__media {
  /* warm at top, pure white across the lower half so the product photo
     (white background) blends with no visible box */
  background: linear-gradient(180deg, #f4f1ea 0%, #fbfaf7 38%, #ffffff 55%, #ffffff 100%);
  z-index: 0;
}
.hero__veil { position: absolute; inset: 0; z-index: 1; background: none; }
.hero__strap {
  position: absolute; left: 0; right: 0; bottom: -4%; margin-inline: auto;
  width: clamp(250px, 27vw, 410px); z-index: 2;
  /* photos are opaque JPGs (their own shadow is baked in) — no CSS shadow,
     or it would draw a box around the rectangle */
  mix-blend-mode: multiply;
  animation: strapRise 1.6s var(--ease) both; will-change: transform;
}
@keyframes strapRise { from { opacity: 0; transform: translateY(8%); } to { opacity: 1; transform: translateY(0); } }
.hero__inner { position: relative; z-index: 3; padding: 0 1.5rem; max-width: 60rem; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero [data-fade] { animation: heroIn 1s var(--ease) both; }
.hero__eyebrow { animation-delay: 0.15s; font-size: 0.74rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; }
.hero__title { font-size: clamp(3.2rem, 11vw, 9rem); line-height: 0.92; letter-spacing: -0.01em; color: var(--ink); }
.hero__title span { display: block; }
.hero__title span:nth-child(1) { animation-delay: 0.30s; }
.hero__title span:nth-child(2) { animation-delay: 0.45s; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { max-width: 34rem; margin: 2rem auto 2.8rem; font-size: 1.02rem; color: var(--ink-soft); animation-delay: 0.6s; }
.hero .btn { animation-delay: 0.75s; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink); display: flex; flex-direction: column; align-items: center; gap: 0.7rem; opacity: 0.6; animation: heroIn 1s var(--ease) both; animation-delay: 1.1s; }
.hero__scroll span { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Hero 2 (vibrant, colour-forward) ---------- */
.hero2 { position: relative; background: linear-gradient(180deg, #fbf2f6 0%, #fdf8fb 40%, #ffffff 100%); }
.hero2__stage { position: relative; min-height: 100vh; overflow: hidden; }
.hero2__copy { position: absolute; top: 9.5vh; left: 50%; transform: translateX(-50%); width: min(92vw, 54rem); text-align: center; z-index: 6; }
.hero2__eyebrow { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.5rem; }
.hero2__eyebrow span { color: var(--ink); font-style: italic; }
.hero2__title { font-size: clamp(2.8rem, 8.5vw, 7rem); line-height: 0.94; color: var(--ink); letter-spacing: -0.01em; }
.hero2__title em {
  font-style: italic;
  background: var(--pop-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero2__sub { max-width: 33rem; margin: 1.6rem auto 2.2rem; font-size: 1.04rem; color: var(--ink-soft); }
.hero2__cta { font-size: 0.8rem; box-shadow: 0 14px 30px rgba(156,124,60,0.28); }

.hero2__watch {
  position: absolute; left: 50%; top: 68%; transform: translate(-50%, -50%);
  width: clamp(200px, 22vw, 320px); z-index: 4; mix-blend-mode: multiply;
  pointer-events: none;
}
.hero2__band {
  position: absolute; width: clamp(140px, 16vw, 240px);
  mix-blend-mode: multiply; z-index: 3; pointer-events: none;
}
/* resting positions of the fanned bands */
.hero2__band:nth-of-type(1) { left: 4%;  top: 24%; transform: rotate(-12deg); }
.hero2__band:nth-of-type(2) { left: 1%;  top: 56%; transform: rotate(7deg); width: clamp(120px,14vw,210px); }
.hero2__band:nth-of-type(3) { left: 12%; top: 84%; transform: rotate(-5deg); width: clamp(110px,12vw,180px); }
.hero2__band:nth-of-type(4) { right: 4%;  top: 23%; transform: rotate(11deg); }
.hero2__band:nth-of-type(5) { right: 1%;  top: 56%; transform: rotate(-8deg); width: clamp(120px,14vw,210px); }
.hero2__band:nth-of-type(6) { right: 12%; top: 84%; transform: rotate(6deg); width: clamp(110px,12vw,180px); }
.anim-ready .hero2__band, .anim-ready .hero2__watch { opacity: 0; }

.hero2__scrollcue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 6; font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); opacity: 0.55; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero2__scrollcue span { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); }

/* ---------- Hero (cinematic video) ---------- */
.herov { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; background: #fff; }
.herov__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* light scrim — keeps the video bright/poppy while it scrubs */
.herov__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,10,16,0.18) 0%, rgba(12,10,16,0) 20%, rgba(12,10,16,0) 80%, rgba(12,10,16,0.22) 100%); }
/* darker layer that ONLY fades in behind the text at the end of the scroll */
/* white wash that fades in with the V1 elements so the hero reads light like V1 */
.herov__textscrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(125% 100% at 50% 48%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 48%, rgba(255,255,255,0.4) 82%); }
.herov__copy { position: relative; z-index: 5; width: min(92vw, 56rem); padding: 0 1.5rem; }
.herov__copy .hero2__title { text-shadow: 0 1px 14px rgba(255,255,255,0.7); }
.herov__copy .hero2__sub { text-shadow: 0 1px 12px rgba(255,255,255,0.85); }
.herov__scrollcue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 6; font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); opacity: 0.6; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.herov__scrollcue span { width: 1px; height: 38px; background: var(--pop-grad); }

/* ---------- Made for the AP Swatch ---------- */
.madefor { background: var(--ink); color: #fff; padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 6vw, 7rem); }
.madefor__head { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.madefor__head .kicker { color: var(--gold-lt, #d9c397); }
.madefor__head h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); color: #fff; margin-bottom: 1.4rem; }
.madefor__sub { color: #c9c6bd; font-size: 1.02rem; }
.madefor__watches { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.6rem, 1.6vw, 1.3rem); max-width: 88rem; margin: 0 auto; }
.watch-card {
  background: #fff; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  padding: 1rem 0.8rem 0.9rem; cursor: pointer; text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.watch-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.watch-card.is-active { outline: 2px solid var(--gold); outline-offset: 2px; }
.watch-card__img { aspect-ratio: 4/5; display: grid; place-items: center; }
.watch-card__img img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.watch-card__name { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-top: 0.4rem; }
.watch-card__note { font-size: 0.66rem; letter-spacing: 0.04em; color: #8a877e; margin-top: 0.15rem; }
.madefor__hint { text-align: center; color: var(--gold-lt, #d9c397); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2.5rem; transition: opacity 0.4s; }

/* ---------- Configurator: watch picker + pairing ---------- */
.config__pair { display: flex; align-items: center; gap: 0.7rem; justify-content: center; margin-top: 1.2rem; }
.config__pair img { width: 54px; height: 54px; object-fit: contain; mix-blend-mode: multiply; }
.config__pair span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); text-align: left; line-height: 1.5; }
.config__pair b { color: var(--ink); }
.config__watches { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.watch-dot { width: 2.4rem; height: 2.4rem; border-radius: 50%; cursor: pointer; border: 1px solid var(--line); background-size: cover; background-position: center; transition: transform 0.3s var(--ease); }
.watch-dot:hover { transform: scale(1.1); }
.watch-dot.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--gold); }
.swatch.is-pair::after { content: "★"; position: absolute; top: -7px; right: -5px; font-size: 0.7rem; color: var(--gold-deep); }
.config__pairnote { margin-top: 0.9rem; font-size: 0.8rem; color: var(--gold-deep); min-height: 1.1rem; }
.config__pairnote b { font-weight: 500; }

/* ---------- Marquee ---------- */
.marquee { background: var(--pop-grad); color: #fff; overflow: hidden; padding: 0.85rem 0; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 2.5rem; align-items: center; animation: marquee 28s linear infinite; font-size: 0.74rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 500; }
.marquee__track span { display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Statement ---------- */
.statement { padding: clamp(6rem, 16vh, 12rem) clamp(1.5rem, 6vw, 8rem); max-width: 80rem; margin: 0 auto; background: var(--paper-2); }
.statement__text { font-family: var(--serif); font-size: clamp(1.8rem, 5.2vw, 4.2rem); line-height: 1.18; font-weight: 500; }
.statement__text span { transition: color 0.4s var(--ease); }
.anim-ready .statement__text span { color: rgba(23,23,15,0.18); }
.statement__text span.is-lit { color: var(--ink); }
.statement__text span.statement__pop {
  background: var(--pop-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent !important;
  font-style: italic;
}

/* ---------- Showcase ---------- */
.showcase { padding: 4rem 0 6rem; background: var(--paper); position: relative; }
.showcase__heading { text-align: center; padding: 0 1.5rem 2rem; }
.showcase__heading h2 { font-size: clamp(2.4rem, 7vw, 5rem); }
.show-panel { min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1rem, 5vw, 5rem); padding: 4vh clamp(1.5rem, 7vw, 9rem); position: relative; }
.show-panel:nth-child(even) { direction: rtl; }
.show-panel:nth-child(even) > * { direction: ltr; }
.show-panel__media { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.show-panel__media::before { content: ""; position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(156,124,60,0.10), transparent 65%); filter: blur(12px); }
.show-panel__media img { position: relative; width: 100%; object-fit: contain; mix-blend-mode: multiply; will-change: transform; }
.show-panel__index { position: absolute; top: 2vh; font-family: var(--serif); font-size: clamp(6rem, 16vw, 14rem); line-height: 1; color: rgba(23,23,15,0.045); z-index: -1; font-weight: 600; }
.show-panel__copy { max-width: 30rem; }
.show-panel__copy .kicker { margin-bottom: 1rem; }
.show-panel__copy h3 { font-size: clamp(2.6rem, 7vw, 5.5rem); margin-bottom: 1.2rem; }
.show-panel__copy p { color: var(--ink-soft); font-size: 1.05rem; max-width: 26rem; }
.show-panel__cta { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 1px solid var(--gold); padding-bottom: 0.4rem; cursor: pointer; transition: gap 0.4s var(--ease); }
.show-panel__cta:hover { gap: 1.2rem; }

/* ---------- Story ---------- */
.story { background: var(--paper-2); color: var(--ink); padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 7rem); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; max-width: 88rem; margin: 0 auto; }
.story__media { overflow: hidden; background: #fff; border: 1px solid var(--line-soft); }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__copy .kicker { color: var(--gold-deep); }
.story__copy h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 2.5rem; }
.story__steps { list-style: none; margin-bottom: 2.6rem; }
.story__steps li { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.story__num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); min-width: 2rem; }
.story__steps h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.story__steps p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Make it yours (palette) ---------- */
.palette { padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 7rem) 2rem; background: var(--paper); }
.palette__heading { text-align: center; max-width: 46rem; margin: 0 auto 3.5rem; }
.palette__heading h2 { font-size: clamp(2.4rem, 7vw, 5rem); margin-bottom: 1.4rem; }
.palette__sub { color: var(--ink-soft); font-size: 1.02rem; }
.palette__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 2vw, 1.6rem); max-width: 90rem; margin: 0 auto; }
.pal-item { background: #fff; border: 1px solid var(--line-soft); border-radius: 3px; padding: 1.4rem 1rem 1rem; cursor: pointer; text-align: center; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.pal-item:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 18px 40px rgba(60,55,40,0.12); }
.pal-item__img { aspect-ratio: 1/1; display: grid; place-items: center; }
.pal-item__img img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.5s var(--ease); }
.pal-item:hover .pal-item__img img { transform: scale(1.06); }
.pal-item__name { font-family: var(--serif); font-size: 1.15rem; margin-top: 0.6rem; }
.pal-item__line { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); margin-top: 0.2rem; }

/* ---------- Shop / Configurator ---------- */
.shop { padding: 2rem clamp(1.5rem, 6vw, 7rem) clamp(5rem, 12vh, 9rem); background: var(--paper-2); }
.shop__heading { text-align: center; margin-bottom: 4rem; }
.shop__heading h2 { font-size: clamp(2.4rem, 7vw, 5rem); }
.shop__sub { color: var(--ink-soft); font-size: 1rem; margin-top: 1.2rem; max-width: 38rem; margin-inline: auto; }
.config { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); max-width: 86rem; margin: 0 auto; align-items: center; }
.config__stage { background: #fff; border: 1px solid var(--line-soft); border-radius: 3px; padding: clamp(1.5rem, 4vw, 3.5rem); text-align: center; box-shadow: 0 20px 50px rgba(60,55,40,0.07); }
.config__imgwrap { aspect-ratio: 1/1; display: grid; place-items: center; }
.config__imgwrap img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: opacity 0.45s var(--ease), transform 0.6s var(--ease); }
.config__caption { margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey); }
.config__line { font-size: 0.72rem; letter-spacing: 0.34em; color: var(--gold-deep); margin-bottom: 0.8rem; }
.config__name { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.6rem; }
.config__price { font-size: 1.5rem; color: var(--ink); margin-bottom: 1.4rem; font-weight: 300; }
.config__blurb { color: var(--ink-soft); margin-bottom: 2.4rem; font-size: 0.98rem; }
.config__group { margin-bottom: 2rem; }
.config__label { display: block; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; }
.config__label span { color: var(--ink); }
.config__styles { display: flex; gap: 0.8rem; }
.style-tab { flex: 1; font-family: var(--sans); cursor: pointer; padding: 0.9rem 1rem; background: transparent; border: 1px solid var(--line); color: var(--ink); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.4s var(--ease); }
.style-tab:hover { border-color: var(--gold); }
.style-tab.is-active { background: var(--pop-grad); color: #fff; border-color: transparent; }
.config__swatches { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.swatch { width: 2.6rem; height: 2.6rem; border-radius: 50%; cursor: pointer; border: 1px solid var(--line); position: relative; transition: transform 0.3s var(--ease); }
.swatch:hover { transform: scale(1.1); }
.swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--gold); }
.config__sizes { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.size-opt { font-family: var(--sans); cursor: pointer; padding: 0.7rem 1.3rem; background: transparent; border: 1px solid var(--line); color: var(--ink); font-size: 0.78rem; letter-spacing: 0.1em; transition: all 0.3s var(--ease); }
.size-opt:hover { border-color: var(--gold); }
.size-opt.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.config__compat { font-size: 0.78rem; color: var(--grey); margin-bottom: 1.6rem; font-style: italic; }

/* ---------- Assurances ---------- */
.assure { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); text-align: center; background: var(--paper); }
.assure__item { padding: 3rem 1.5rem; border-right: 1px solid var(--line); }
.assure__item:last-child { border-right: none; }
.assure__item h4 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.assure__item p { font-size: 0.86rem; color: var(--grey); }

/* ---------- Footer (dark, grounds the page) ---------- */
.footer { background: var(--footer); color: var(--paper); padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 6vw, 7rem) 2.5rem; }
.footer__top { text-align: center; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 600; letter-spacing: 0.1em; color: #fff; }
.footer__brand span { color: var(--gold); }
.footer__tag { color: #9a978d; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.74rem; margin-top: 0.6rem; }
.footer__switch { display: inline-block; margin-top: 1.4rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.7rem 1.6rem; transition: all 0.4s var(--ease); }
.footer__switch:hover { background: var(--gold); color: #fff; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 3rem 5rem; justify-content: center; padding: 3rem 0; }
.footer__cols h5 { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__cols a { display: block; color: #cfccc3; font-size: 0.92rem; padding: 0.25rem 0; }
.footer__cols a:hover { color: #fff; }
.footer__legal { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); }
.footer__legal p { font-size: 0.74rem; color: #8d8a80; max-width: 50rem; margin: 0 auto; line-height: 1.7; }

/* ---------- Cart (light) ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(23,23,15,0.4); opacity: 0; visibility: hidden; transition: all 0.45s var(--ease); backdrop-filter: blur(2px); }
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart { position: fixed; top: 0; right: 0; bottom: 0; z-index: 201; width: min(420px, 100vw); background: #fff; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column; }
.cart.is-open { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.8rem; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-size: 1.6rem; }
.cart__close { background: none; border: none; color: var(--ink); font-size: 1.8rem; cursor: pointer; line-height: 1; }
.cart__items { flex: 1; overflow-y: auto; padding: 1.2rem 1.8rem; }
.cart__empty { color: var(--grey); text-align: center; padding: 3rem 0; font-size: 0.92rem; }
.cart-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-item__img { width: 72px; height: 72px; object-fit: cover; background: var(--paper-2); border-radius: 2px; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-family: var(--serif); font-size: 1.15rem; }
.cart-item__meta { font-size: 0.76rem; color: var(--grey); letter-spacing: 0.08em; margin: 0.2rem 0 0.6rem; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; }
.cart-item__qty { display: flex; align-items: center; gap: 0.7rem; }
.cart-item__qty button { width: 1.6rem; height: 1.6rem; background: none; border: 1px solid var(--line); color: var(--ink); cursor: pointer; border-radius: 2px; }
.cart-item__price { color: var(--gold-deep); font-size: 0.95rem; }
.cart-item__remove { background: none; border: none; color: var(--grey); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; margin-top: 0.4rem; }
.cart-item__remove:hover { color: var(--ink); }
.cart__foot { padding: 1.8rem; border-top: 1px solid var(--line); }
.cart__subtotal { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 0.4rem; }
.cart__note { font-size: 0.76rem; color: var(--grey); margin-bottom: 1.2rem; }

/* ---------- Fade-in utility ---------- */
.anim-ready [data-fade] { opacity: 0; transform: translateY(28px); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .show-panel { grid-template-columns: 1fr; min-height: auto; gap: 2rem; padding-top: 8vh; padding-bottom: 8vh; text-align: center; }
  .show-panel:nth-child(even) { direction: ltr; }
  .show-panel__copy { margin: 0 auto; }
  .show-panel__copy p { margin: 0 auto; }
  .story__grid { grid-template-columns: 1fr; }
  .config { grid-template-columns: 1fr; }
  .palette__grid { grid-template-columns: repeat(2, 1fr); }
  .madefor__watches { grid-template-columns: repeat(2, 1fr); }
  .assure { grid-template-columns: 1fr 1fr; }
  /* stronger white wash on mobile so the end text reads light like V1 */
  .herov__textscrim { background:
    radial-gradient(135% 80% at 50% 48%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.5) 88%); }
  .herov__copy { width: 92vw; }
  .herov__copy .hero2__title { font-size: clamp(2.6rem, 11vw, 4rem); }
  /* simplify the hero fan on small screens */
  .hero2__band:nth-of-type(3), .hero2__band:nth-of-type(6) { display: none; }
  .hero2__band { width: clamp(90px, 26vw, 150px) !important; opacity: 0.9; }
  .hero2__band:nth-of-type(1) { left: -4%; top: 60%; }
  .hero2__band:nth-of-type(2) { left: -6%; top: 82%; }
  .hero2__band:nth-of-type(4) { right: -4%; top: 60%; }
  .hero2__band:nth-of-type(5) { right: -6%; top: 82%; }
  .hero2__watch { top: 66%; width: clamp(180px, 50vw, 260px); }
  .hero2__copy { top: 10vh; }
  .assure__item:nth-child(2) { border-right: none; }
  .assure__item:nth-child(1), .assure__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .assure { grid-template-columns: 1fr; }
  .assure__item { border-right: none; border-bottom: 1px solid var(--line); }
}
