/* ============================================================
   Kees Engelbarts — Unique Handmade Watches, Geneva
   Modern rebuild · Copperplate Gothic display (original site font)
   ============================================================ */

/* Self-hosted brand font: Copperplate Gothic Std (licensed) */
@font-face {
  font-family: "Copperplate Gothic Std";
  src: url("../fonts/CopperplateGothicStd-29BC.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Copperplate Gothic Std";
  src: url("../fonts/CopperplateGothicStd-30BC.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Copperplate Gothic Std";
  src: url("../fonts/CopperplateGothicStd-33BC.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #0c0c0e;
  --bg-2:      #131318;
  --surface:   #1a1a20;
  --surface-2: #202028;
  --line:      rgba(200, 169, 106, 0.16);
  --line-soft: rgba(243, 237, 225, 0.08);

  --gold:      #c8a96a;
  --gold-soft: #ddc89c;
  --gold-deep: #9c7f47;

  --cream:     #f3ede1;
  --text:      #e9e3d6;
  --muted:     #a39a89;
  --muted-2:   #6f6a60;

--font-display: "Copperplate Gothic Std", "Copperplate Gothic Bold", "Copperplate", "Copperplate Gothic Light", Georgia, serif;
--font-body:    "Copperplate Gothic Std", "Copperplate Gothic", "Copperplate", "Copperplate Gothic Light", Georgia, serif;

  --maxw: 1240px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.2rem);
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film-grain / vignette backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(200,169,106,0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(200,169,106,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin: 0;
  color: var(--cream);
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  position: relative;
  z-index: 1;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 400;
  padding: 1.05em 2.1em;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover {
  background: var(--gold);
  color: #14110a;
}
.btn--solid {
  background: var(--gold);
  color: #14110a;
}
.btn--solid:hover {
  background: transparent;
  color: var(--gold-soft);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(12, 12, 14, 0.55);
  backdrop-filter: blur(10px) saturate(130%);
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  height: 66px;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { height: 42px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .brand img { height: 34px; }
.brand .brand-text { line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}
.brand .brand-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.nav a {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--gold-soft); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
}
.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 7rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background: #0c0c0e; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  opacity: 0; transform: scale(1.08);
  animation: heroFade 30s linear infinite, heroZoom 30s ease-out infinite;
  will-change: opacity, transform;
}
.hero__img:nth-child(1) { animation-delay: 0s, 0s; }
.hero__img:nth-child(2) { animation-delay: 6s, 6s; }
.hero__img:nth-child(3) { animation-delay: 12s, 12s; }
.hero__img:nth-child(4) { animation-delay: 18s, 18s; }
.hero__img:nth-child(5) { animation-delay: 24s, 24s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  18%  { opacity: 1; }
  22%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.1) 35%, rgba(12,12,14,0.85) 100%),
    radial-gradient(120% 80% at 50% 0%, transparent, rgba(12,12,14,0.6));
}
.hero .wrap { width: 100%; }
.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__lede {
  margin-top: 1.6rem; max-width: 56ch;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.6; color: var(--cream); opacity: 0.92;
  font-weight: 300;
}
.hero h1 {
  font-size: clamp(3rem, 11vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.98;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero h1 .light { color: var(--gold-soft); display: block; }
.hero__tag {
  margin-top: 1.4rem;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 300;
}
.hero__tag .dot { color: var(--gold); margin: 0 0.7rem; }
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }


/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(4.5rem, 11vh, 9rem) 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section-head p { color: var(--muted); margin-top: 1.1rem; }

/* Intro / About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.92) contrast(1.02);
  transition: opacity 0.7s var(--ease), filter 0.6s var(--ease);
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  margin: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius);
}
.split__body p { color: var(--muted); }
.split__body p strong, .split__body p b { color: var(--text); font-weight: 400; }

/* Process page placeholder figures (WIP photos to be added) */
.process-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(176,141,87,0.07) 14px, rgba(176,141,87,0.07) 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.process-ph::after { content: attr(data-label); }

/* Philosophy quote */
.quote {
  text-align: center;
  max-width: 940px;
  margin-inline: auto;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.9rem);
  line-height: 1.3;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}
.quote .mark { color: var(--gold); font-size: 3em; line-height: 0; vertical-align: -0.35em; }
.quote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  color: var(--gold);
}

/* ============================================================
   TIMEPIECES GRID
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem) clamp(1.2rem, 2.5vw, 2rem);
}
.card {
  position: relative;
  display: block;
  cursor: pointer;
  color: inherit;
}
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--surface);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s var(--ease), opacity 0.7s var(--ease);
  filter: saturate(0.92);
}
.card:hover .card__media img { transform: scale(1.05); filter: saturate(1.04); }
/* gold accent that wipes in along the bottom edge on hover */
.card__media::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media::after { transform: scaleX(1); }
.card__body { padding: 1.1rem 0.15rem 0; }
.card__cat {
  display: block;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.3vw, 1.32rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--cream);
}
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: color 0.4s var(--ease), gap 0.4s var(--ease);
}
.card:hover .card__more { color: var(--gold-soft); gap: 0.85rem; }

/* feature row (available pieces, large) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: flex-end;
}
.feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), opacity 0.7s var(--ease);
  filter: saturate(0.92);
}
.feature:hover img { transform: scale(1.05); }
.feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,12,0.9));
}
.feature__cap {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.feature__cap .eyebrow { margin-bottom: 0.5rem; }
.feature__cap h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.feature__cap a {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; gap: 0.5rem; align-items: center;
  margin-top: 0.7rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 1.3rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list .k {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.66rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.info-list .v { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.info-list a.v:hover { color: var(--gold-soft); }

.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  color: var(--muted);
}
.field input, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95rem 1rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 150px; }

/* ============================================================
   PRESS
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.press-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  background: var(--surface);
  aspect-ratio: 3 / 4;
}
.press-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.7s var(--ease);
  filter: saturate(0.9);
}
.press-item:hover img { transform: scale(1.05); }

/* Progressive image reveal — only when JS is available, so a no-JS
   client still shows every image. Images stay hidden until decoded, then
   fade in over the (already reserved) aspect-ratio box: no CLS, no flash. */
.js .card__media img,
.js .split__media img,
.js .feature img,
.js .press-item img { opacity: 0; }
.js .card__media img.is-loaded,
.js .split__media img.is-loaded,
.js .feature img.is-loaded,
.js .press-item img.is-loaded { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #08080a;
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 8vh, 6rem) 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.site-footer .brand img { height: 40px; }
.footer-about { color: var(--muted); max-width: 340px; margin-top: 1.2rem; }
.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.85rem; }
.footer-col a { color: var(--text); transition: color 0.3s var(--ease); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 0.9rem; margin-top: 0.4rem; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text);
  transition: all 0.4s var(--ease);
}
.socials a:hover { background: var(--gold); color: #14110a; border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  color: var(--muted-2);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,6,8,0.94);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox__close {
  position: absolute; top: 1.6rem; right: 1.8rem;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none; color: var(--cream);
  font-size: 1.3rem; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--gold); color: #14110a; border-color: var(--gold); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(12, 12, 14, 0.6); color: var(--cream);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox.gallery .lightbox__nav { display: flex; }
.lightbox__nav:hover { background: var(--gold); color: #14110a; border-color: var(--gold); }
.lightbox__nav--prev { left: clamp(0.6rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(0.6rem, 3vw, 2rem); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(12,12,14,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 2rem;
    transform: translateY(-130%);
    transition: transform 0.5s var(--ease);
    height: calc(100svh - var(--header-h));
    justify-content: center;
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.1rem; padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); letter-spacing: 0.28em; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .form .row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; }
}

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

/* Keyboard focus + skip link */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem; z-index: 1000;
  background: var(--gold); color: #14110a;
  padding: 0.6rem 1rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   WATCH DETAIL MODAL
   ============================================================ */
.detail {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.detail.open { display: flex; }
.detail__overlay {
  position: absolute; inset: 0;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(8px);
}
.detail__panel {
  position: relative; z-index: 1;
  width: min(1000px, 100%);
  height: min(94vh, 880px);
  max-height: 96vh;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  animation: detailIn 0.5s var(--ease);
}
@keyframes detailIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.detail__media { position: relative; background: #000; align-self: stretch; height: 100%; min-height: 320px; overflow: hidden; cursor: zoom-in; }
.detail__media.zoom-on { cursor: zoom-out; }
.detail__media img { width: 100%; height: 100%; object-fit: contain; transform-origin: center; transition: transform 0.15s ease; }
.detail__media.zoom-on img:hover { transform: scale(2.4); }
.zoom-hint { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 4; pointer-events: none; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); background: rgba(12,12,14,0.6); border: 1px solid var(--line); padding: 0.35rem 0.7rem; border-radius: 999px; }
.detail__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(12, 12, 14, 0.55); color: var(--cream);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); z-index: 2;
}
.detail__nav:hover { background: var(--gold); color: #14110a; border-color: var(--gold); }
.detail__nav--prev { left: 0.7rem; }
.detail__nav--next { right: 0.7rem; }
.detail__thumbs {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; gap: 0.4rem; padding: 0.6rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}
.detail__thumbs img {
  width: 54px; height: 54px; flex: 0 0 auto;
  object-fit: cover; cursor: pointer; opacity: 0.55;
  border: 1px solid transparent; border-radius: 4px;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.detail__thumbs img.active, .detail__thumbs img:hover { opacity: 1; border-color: var(--gold); }
.detail__body { padding: clamp(1.2rem, 2.2vw, 2.2rem); max-height: 94vh; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.detail__body::-webkit-scrollbar { display: none; }
.detail__desc { color: var(--muted); font-style: italic; font-size: 0.9rem; line-height: 1.5; margin: 0.4rem 0 1.1rem; }
.specs { margin: 0 0 1.2rem; border-top: 1px solid var(--line-soft); }
.specs div {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.specs dt {
  flex: 0 0 auto;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.58rem;
  color: var(--gold);
  padding-top: 0.15rem;
}
.specs dd { flex: 1 1 auto; min-width: 0; margin: 0; color: var(--text); font-size: 0.85rem; line-height: 1.4; }
.detail__close {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(12, 12, 14, 0.6);
  color: var(--cream); font-size: 1.3rem; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.detail__close:hover { background: var(--gold); color: #14110a; border-color: var(--gold); }
@media (max-width: 760px) {
  .detail__panel { grid-template-columns: 1fr; height: auto; max-height: 94vh; }
  .detail__media { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
}
