/* ============================================================
   JCB TIMEPIECES — DESIGN SYSTEM
   Black & chrome. Polished steel, modern, luxury, timeless.
   Display: Cormorant Garamond · Labels/body: Jost
   ============================================================ */

:root {
  --black: #050607;
  --ink: #0b0d11;
  --charcoal: #12151a;
  --surface: #171b21;
  --line: rgba(184, 192, 202, 0.18);
  --line-strong: rgba(184, 192, 202, 0.4);
  --chrome: #b8c0ca;
  --chrome-light: #e9edf2;
  --chrome-deep: #707885;
  --cream: #f2f4f7;
  --body: #a8aeb8;
  --muted: #6f7580;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Avenir Next", sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain + vignette atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.72 0 0 0 0 0.76 0 0 0 0 0.82 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

::selection { background: var(--chrome); color: var(--black); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- type utilities ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--chrome);
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: 0.005em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--chrome-light);
}

.h-xl { font-size: clamp(2.9rem, 7.2vw, 6.2rem); }
.h-lg { font-size: clamp(2.2rem, 4.6vw, 3.9rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.5rem); }

.lede { font-size: 1.05rem; max-width: 34rem; }

/* chrome hairline with diamond pip */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 0 0 44px;
  background: linear-gradient(90deg, var(--chrome), transparent);
}
.rule::after { background: linear-gradient(-90deg, var(--chrome), transparent); }
.rule i {
  width: 6px; height: 6px;
  background: var(--chrome);
  transform: rotate(45deg);
  flex: none;
}
.rule--left { justify-content: flex-start; }
.rule--left::after { display: none; }
.rule--center { justify-content: center; }

/* ---------- layout ---------- */

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

section { position: relative; }

.section-pad { padding: clamp(90px, 12vh, 150px) 0; }

/* ---------- scroll reveal ---------- */

.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
  transition-delay: var(--rv-delay, 0s);
}
.rv.is-in { opacity: 1; transform: none; }
.rv--fade { transform: none; }
.rv--left { transform: translateX(-40px); }
.rv--right { transform: translateX(40px); }
.rv--left.is-in, .rv--right.is-in { transform: none; }

/* pop reveal — items spring into place with a chrome-crisp overshoot
   as they scroll into view (cards, chapters, remarks, steps) */
.rv--pop {
  transform: translateY(48px) scale(0.88);
  filter: blur(7px);
  transition:
    opacity 0.7s var(--ease-lux),
    filter 0.7s var(--ease-lux),
    transform 0.95s cubic-bezier(0.18, 1.28, 0.32, 1);
  transition-delay: var(--rv-delay, 0s);
  will-change: opacity, transform, filter;
}
.rv--pop.is-in { opacity: 1; transform: none; filter: none; }

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

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 5, 4, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 6px 18px rgba(0,0,0,0.6);
}
.nav-brand .brand-word {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-brand .brand-word span { color: var(--chrome); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--body);
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--chrome);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--chrome-light); }
.nav-links a:hover::after, .nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links .nav-cta {
  border: 1px solid var(--line-strong);
  padding: 12px 22px;
  color: var(--chrome-light);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--chrome);
  border-color: var(--chrome);
  color: var(--black);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--chrome);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6,7,9,0.97);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 28px;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(184,192,202,0.08); }
  .nav-links a { display: block; padding: 16px 4px; font-size: 12px; }
  .nav-links .nav-cta { margin-top: 18px; text-align: center; border-bottom: 1px solid var(--line-strong); }
  .nav-burger { display: block; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--line-strong);
  color: var(--chrome-light);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.45s ease, border-color 0.45s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--chrome-deep), var(--chrome) 55%, var(--chrome-light));
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-lux);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--black); border-color: var(--chrome); }
.btn:hover::before { transform: translateY(0); }

.btn--solid {
  background: linear-gradient(120deg, var(--chrome-deep), var(--chrome) 55%, var(--chrome-light));
  color: var(--black);
  border-color: var(--chrome);
}
.btn--solid::before { background: var(--cream); }

.btn-arrow { font-family: var(--serif); font-size: 1.1em; font-style: italic; }

/* ============================================================
   HOME — hero + 3D scroll stage
   ============================================================ */

#watch-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--black);
}
#watch-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#watch-stage .stage-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,9,0.88), rgba(6,7,9,0.5) 45%, rgba(6,7,9,0.08) 72%),
    linear-gradient(180deg, rgba(6,7,9,0.55), rgba(6,7,9,0) 22%, rgba(6,7,9,0) 68%, rgba(6,7,9,0.68));
}
@media (max-width: 760px) {
  #watch-stage .stage-scrim {
    background:
      linear-gradient(180deg, rgba(6,7,9,0.7), rgba(6,7,9,0.35) 35%, rgba(6,7,9,0.25) 65%, rgba(6,7,9,0.7));
  }
}

.home-fg { position: relative; z-index: 4; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(60px, 10vh, 120px);
  position: relative;
}
.hero-inner { max-width: 780px; }
.hero .display, .hero .eyebrow, .hero .lede {
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.85), 0 0 8px rgba(0, 0, 0, 0.55);
}
.hero .eyebrow { display: block; margin-bottom: 26px; }
.hero-tagline {
  margin-top: 34px;
  max-width: 30rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

.hero-monogram {
  position: absolute;
  right: -2vw;
  top: 12vh;
  width: clamp(180px, 26vw, 380px);
  opacity: 0.1;
  filter: saturate(0.9);
  border-radius: 20px;
  pointer-events: none;
  display: none;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 64px;
  background: linear-gradient(var(--chrome), transparent);
  animation: cueDrop 2.4s var(--ease-lux) infinite;
}
@keyframes cueDrop {
  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; }
}

/* chapters — the scroll-scrubbed 3D tour */
.chapters { position: relative; }
.chapter {
  min-height: 105svh;
  display: flex;
  align-items: center;
}
.chapter-card {
  max-width: 430px;
  padding: 40px 38px;
  background: linear-gradient(160deg, rgba(12,14,18,0.86), rgba(12,14,18,0.62));
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
}
.chapter-card::before {
  content: "";
  position: absolute;
  top: -7px; left: -7px;
  width: 100%; height: 100%;
  border: 1px solid rgba(184,192,202,0.22);
  pointer-events: none;
}
.chapter:nth-child(even) { justify-content: flex-end; }
.chapter-kicker { margin-bottom: 18px; display: block; }
.chapter-card h3 { margin-bottom: 16px; }
.chapter-callout {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome-light);
}
.chapter-callout::before {
  content: "";
  width: 7px; height: 7px;
  border: 1px solid var(--chrome);
  transform: rotate(45deg);
  flex: none;
  box-shadow: 0 0 12px rgba(184,192,202,0.8);
}

/* panels after the 3D tour sit on solid ground */
.home-solid {
  position: relative;
  background: linear-gradient(180deg, transparent, var(--black) 140px);
}

/* ============================================================
   SHARED SECTIONS
   ============================================================ */

.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-head p { margin-top: 22px; }

/* --- watch grid --- */
.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 56px 40px;
}
.watch-card { position: relative; }
.watch-card a { display: block; }
.watch-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(184,192,202,0.1);
}
.watch-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6,7,9,0.55));
  opacity: 0;
  transition: opacity 0.7s ease;
}
.watch-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-lux), filter 1.4s ease;
}
.watch-card:hover .watch-frame img { transform: scale(1.045); }
.watch-card:hover .watch-frame::after { opacity: 1; }
.watch-frame .flag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: rgba(6,7,9,0.8);
  border: 1px solid var(--line-strong);
  color: var(--chrome-light);
}
.watch-meta { padding-top: 22px; }
.watch-meta .vendor {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 8px;
}
.watch-meta h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cream);
}
.watch-meta .detail { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.watch-meta .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(184,192,202,0.12);
}
.watch-meta .price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--chrome-light);
  letter-spacing: 0.04em;
}
.watch-meta .view {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.4s ease;
}
.watch-card:hover .view { color: var(--chrome-light); }

/* --- founder / house --- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.portrait {
  position: relative;
  z-index: 1;
}
.portrait::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 100%;
  aspect-ratio: 4 / 5; /* trace the photo only, never the caption */
  border: 1px solid rgba(184,192,202,0.3);
  z-index: 0;
}
.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}
.portrait figcaption {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
}
.portrait figcaption small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-top: 6px;
}

.letter p + p { margin-top: 20px; }
.letter .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--chrome-light);
  margin-top: 30px;
}

/* --- testimonials --- */
.remarks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.remark {
  border: 1px solid var(--line);
  padding: 42px 36px;
  background: linear-gradient(170deg, rgba(19,22,27,0.65), rgba(12,14,18,0.4));
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.remark q {
  quotes: "\201C" "\201D";
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
}
.remark q::before { color: var(--chrome); }
.remark cite {
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-top: auto;
}

/* --- trust list --- */
.trust-list { border-top: 1px solid var(--line); }
.trust-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(34px, 5vh, 54px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.trust-item .idx {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--chrome-deep);
  font-style: italic;
}
.trust-item h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
}
@media (max-width: 760px) {
  .trust-item { grid-template-columns: 56px 1fr; }
  .trust-item p { grid-column: 2; }
}

/* --- sourcing steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--ink);
  padding: 46px 34px 52px;
  position: relative;
  transition: background 0.6s ease;
}
.step:hover { background: var(--charcoal); }
.step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--chrome-deep);
  display: block;
  margin-bottom: 22px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}
.step p { font-size: 0.92rem; }

.ledger-note {
  margin-top: 60px;
  border: 1px solid var(--line-strong);
  padding: clamp(30px, 4vw, 48px);
  background:
    radial-gradient(ellipse at top left, rgba(184,192,202,0.08), transparent 60%),
    var(--ink);
  max-width: 860px;
}
.ledger-note .eyebrow { display: block; margin-bottom: 16px; }

/* --- journal --- */
.journal-card {
  border: 1px solid var(--line);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 40px;
  align-items: end;
  background: linear-gradient(150deg, rgba(19,22,27,0.6), transparent);
  transition: border-color 0.5s ease;
}
.journal-card:hover { border-color: var(--line-strong); }
.journal-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--cream);
  margin: 14px 0 16px;
}
.journal-card .meta {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.journal-card .read {
  justify-self: end;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .journal-card { grid-template-columns: 1fr; align-items: start; }
  .journal-card .read { justify-self: start; }
}

/* newsletter band */
.dispatch {
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(184,192,202,0.1), transparent 65%),
    var(--ink);
}
.dispatch form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 34px auto 0;
  border: 1px solid var(--line-strong);
}
.dispatch input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 16px 20px;
}
.dispatch input::placeholder { color: var(--muted); }
.dispatch .btn { border: none; border-left: 1px solid var(--line-strong); }
.dispatch small {
  display: block;
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- CTA band --- */
.cta-band {
  text-align: center;
  padding: clamp(100px, 16vh, 190px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 60%, rgba(184,192,202,0.12), transparent 70%);
  pointer-events: none;
}
.cta-band .btn { margin-top: 44px; }

/* ============================================================
   INTERIOR PAGE HEADERS
   ============================================================ */

.page-head {
  padding: calc(var(--nav-h) + clamp(70px, 11vh, 130px)) 0 clamp(50px, 8vh, 90px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% -20%, rgba(184,192,202,0.1), transparent 60%);
  pointer-events: none;
}
.page-head .eyebrow { display: block; margin-bottom: 22px; }
.page-head .lede { margin-top: 26px; }

.page-head--img { min-height: 62svh; display: flex; align-items: flex-end; }
.page-head--img .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-head--img .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.6) contrast(1.05);
}
.page-head--img .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,9,0.55), rgba(6,7,9,0.25) 45%, var(--black));
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 880px) { .product-layout { grid-template-columns: 1fr; } }

.gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(184,192,202,0.14);
  background: var(--charcoal);
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.gallery-thumbs button {
  width: 84px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--charcoal);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.is-active,
.gallery-thumbs button:hover { opacity: 1; border-color: var(--chrome); }

.product-info { position: sticky; top: calc(var(--nav-h) + 30px); }
.product-info .vendor {
  font-size: 10.5px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 14px;
}
.product-info h1 { margin-bottom: 10px; }
.product-info .detail { color: var(--muted); }
.product-info .price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--chrome-light);
  margin: 26px 0;
}
.product-info .desc { margin-bottom: 34px; max-width: 30rem; }
.product-facts {
  border-top: 1px solid var(--line);
  margin: 34px 0;
}
.product-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.product-facts dt {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 9.5px;
  color: var(--muted);
  padding-top: 3px;
}
.product-facts dd { color: var(--cream); text-align: right; }
.product-note { font-size: 0.8rem; color: var(--muted); margin-top: 18px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
  transition: color 0.35s ease;
}
.back-link:hover { color: var(--chrome-light); }

/* ============================================================
   INQUIRY FORM
   ============================================================ */

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(48px, 7vw, 110px);
}
@media (max-width: 880px) { .inquiry-layout { grid-template-columns: 1fr; } }

.contact-lines { margin-top: 40px; display: grid; gap: 22px; }
.contact-lines a, .contact-lines div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  transition: border-color 0.4s ease;
}
.contact-lines a:hover { border-color: var(--chrome); }
.contact-lines .lbl {
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 88px;
}
.contact-lines .val {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

form.lux-form { display: grid; gap: 26px; }
.field { display: grid; gap: 10px; }
.field label {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--chrome);
}
.field input, .field textarea, .field select {
  background: rgba(19,22,27,0.5);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.4s ease, background 0.4s ease;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--chrome);
  background: rgba(19,22,27,0.85);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  font-size: 0.85rem;
  color: var(--chrome-light);
  min-height: 1.4em;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 9vh, 100px) 0 46px;
  position: relative;
  z-index: 4;
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand img {
  height: 64px; width: 64px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.footer-brand p { max-width: 26rem; font-size: 0.9rem; }
footer h4 {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--chrome);
  font-weight: 400;
  margin-bottom: 22px;
}
footer ul { list-style: none; display: grid; gap: 12px; }
footer ul a {
  font-size: 0.88rem;
  color: var(--body);
  transition: color 0.35s ease;
}
footer ul a:hover { color: var(--chrome-light); }
.footer-base {
  border-top: 1px solid rgba(184,192,202,0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-base a { color: inherit; }
.footer-base a:hover { color: var(--chrome); }

/* ============================================================
   ADMIN
   ============================================================ */

.admin-body {
  background: var(--ink);
  min-height: 100vh;
}
.admin-body::before, .admin-body::after { display: none; }

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-login .panel {
  width: min(420px, 100%);
  border: 1px solid var(--line-strong);
  padding: 54px 44px;
  background: var(--charcoal);
  text-align: center;
}
.admin-login img {
  width: 74px; height: 74px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 26px;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) { .admin-shell { grid-template-columns: 1fr; } }

.admin-side {
  border-right: 1px solid var(--line);
  padding: 30px 0;
  background: var(--black);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media (max-width: 900px) { .admin-side { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--line); } }
.admin-side .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.admin-side .brand img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
}
.admin-side .brand b {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.admin-side .brand small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--chrome);
}
.admin-nav { list-style: none; }
.admin-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  color: var(--body);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.admin-nav button:hover { color: var(--chrome-light); }
.admin-nav button.is-active {
  color: var(--chrome-light);
  border-left-color: var(--chrome);
  background: rgba(184,192,202,0.06);
}
.admin-side .side-actions {
  margin-top: 30px;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.admin-main { padding: clamp(28px, 4vw, 56px); }
.admin-main h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 6px;
}
.admin-main .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }

.admin-card {
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 30px;
  margin-bottom: 26px;
}
.admin-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--chrome-light);
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.admin-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .admin-grid-2, .admin-grid-3 { grid-template-columns: 1fr; } }

.admin-list { display: grid; gap: 14px; }
.admin-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--ink);
  padding: 14px 18px;
}
.admin-row img {
  width: 56px; height: 66px;
  object-fit: cover;
  border: 1px solid var(--line);
  flex: none;
  background: var(--charcoal);
}
.admin-row .grow { flex: 1; min-width: 0; }
.admin-row .ttl {
  color: var(--cream);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-row .sub2 { color: var(--muted); font-size: 0.78rem; }
.admin-row .pill {
  font-size: 8.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--chrome-light);
  flex: none;
}
.admin-row .pill.off { color: var(--muted); border-color: var(--line); }

.btn-sm {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--chrome-light);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: none;
}
.btn-sm:hover { background: var(--chrome); color: var(--black); border-color: var(--chrome); }
.btn-sm.danger { border-color: rgba(190,80,60,0.5); color: #d08a76; }
.btn-sm.danger:hover { background: #8a3a28; border-color: #8a3a28; color: var(--cream); }

.img-drop {
  border: 1px dashed var(--line-strong);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.img-drop:hover { border-color: var(--chrome); background: rgba(184,192,202,0.04); }
.img-drop img {
  width: 64px; height: 76px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--black);
}
.img-drop span { font-size: 0.82rem; color: var(--muted); }

.admin-toast {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  background: var(--chrome);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 26px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-lux);
  pointer-events: none;
}
.admin-toast.show { opacity: 1; transform: none; }

.check-row { display: flex; align-items: center; gap: 12px; }
.check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--chrome);
}
.check-row label { font-size: 0.85rem; color: var(--body); letter-spacing: 0.04em; }

dialog.admin-modal {
  background: var(--charcoal);
  border: 1px solid var(--line-strong);
  color: var(--body);
  width: min(720px, calc(100vw - 40px));
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
}
dialog.admin-modal::backdrop { background: rgba(0,0,0,0.72); backdrop-filter: blur(4px); }

/* misc */
.mono-note { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.hidden { display: none !important; }
