/* ============================================================
   TEIXEIRA TIMEPIECES — shared stylesheet
   ------------------------------------------------------------
   Type pairing: Italiana (display) + EB Garamond (long-form serif)
                 + Manrope (UI sans). Deliberately avoids the
                 Cormorant + Inter pairing that has become an
                 AI-generated luxury cliché.
   Palette: Linen + parchment + sepia-ink + aged copper. Warmer,
            more antiquarian than the standard "cream + gold."
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  /* PALETTE — "Quiet Luxury"
     Snoweall cream + Dark Night + Roasted Cashew + Temple Grey.
     Brunello Cucinelli / The Row register — restrained neutrals. */
  --linen:        #EBE5DC;   /* primary background — Snoweall cream */
  --parchment:    #DDD5C5;   /* card surface — between Snoweall and Frozen Dew */
  --paper:        #F2EDE5;   /* lightest accent surface */
  --sepia:        #4A413E;   /* primary text — Dark Night charcoal brown */
  --forest:       #3A322F;   /* dark sections — deeper Dark Night */
  --char:         #5C5450;   /* secondary text — softer Dark Night */
  --stone:        #8B8480;   /* muted text — Temple Grey darker */
  --sand:         #C8C2BC;   /* rule / divider — Temple Grey adjusted */
  --copper:       #8C7868;   /* Roasted Cashew taupe accent */
  --copper-warm:  #A18B7A;   /* hover — lighter taupe */
  --copper-light: #BDA48E;   /* highlight on dark — pale cashew */
  --copper-pale:  #D4C2AC;   /* subtle accent on dark */

  /* TYPOGRAPHY */
  --display: 'Italiana', 'Didot', 'Bodoni Moda', serif;
  --serif:   'EB Garamond', 'Adobe Garamond Pro', 'Garamond', serif;
  --sans:    'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* SPACING SCALE */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--sepia);
  background: var(--linen);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.005em;
}
a { color: inherit; text-decoration: none; transition: color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

/* TYPOGRAPHY UTILITY */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--copper);
}
.eyebrow.muted { color: var(--stone); }
.eyebrow.on-dark { color: var(--copper-light); }

.divider {
  width: 32px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  top: -3px;
}
.on-dark .divider, .divider.on-dark { background: var(--copper-light); }

/* ============================================================
   HEADER — sticky, sliver-thin, mobile-aware
   ============================================================ */
header.site {
  position: sticky;
  top: 0;
  background: rgba(235, 229, 220, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--sand);
  z-index: 100;
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--char);
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { position: relative; padding-bottom: 4px; }
.nav-left a:hover, .nav-right a:hover { color: var(--copper); }
.nav-left a.active, .nav-right a.active {
  color: var(--sepia);
  border-bottom: 1px solid var(--copper);
}
.nav-right a.inquire {
  color: var(--copper);
  border: 1px solid var(--copper);
  padding: 10px 22px;
  letter-spacing: 0.22em;
}
.nav-right a.inquire:hover { background: var(--copper); color: var(--paper); }

/* ---------- Wishlist ---------- */
.nav-right a.wishlist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.wishlist-link::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A7B3A' stroke-width='1.8' stroke-linejoin='round'><path d='M12 21s-7-4.35-7-10a4 4 0 0 1 7-2.65A4 4 0 0 1 19 11c0 5.65-7 10-7 10z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.wishlist-count {
  display: none;
  background: var(--copper);
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 999px;
  min-width: 18px;
  padding: 1px 6px;
  text-align: center;
  letter-spacing: 0;
  margin-left: 2px;
}
.wishlist-count.has-items { display: inline-block; }

/* Heart toggle button on cards & detail page */
.wishlist-toggle {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 237, 229, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(154, 123, 58, 0.18);
  border-radius: 999px;
  color: var(--stone, #666);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.18s ease;
  padding: 0;
}
.wishlist-toggle:hover { color: var(--copper); transform: scale(1.06); }
.wishlist-toggle.is-saved { color: var(--copper); background: rgba(255,255,255,0.96); }
.wishlist-toggle svg { display: block; }
.wishlist-toggle-lg {
  position: static;
  width: 48px; height: 48px;
  margin-left: 8px;
}
.wishlist-toggle-lg svg { width: 26px; height: 26px; }

/* Wishlist page */
.wishlist-empty {
  text-align: center;
  padding: 80px 24px 120px;
  font-family: var(--serif);
  color: var(--stone);
}
.wishlist-empty h3 { font-family: var(--display); font-size: 32px; margin: 0 0 12px; color: var(--char); }
.wishlist-empty p { font-size: 16px; margin: 0 0 32px; }

.wishlist-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sand);
  font-family: var(--serif);
  color: var(--stone);
  font-size: 15px;
}
.wishlist-toolbar .wishlist-actions {
  display: flex; align-items: center; gap: 18px;
}
.link-btn {
  background: transparent;
  border: 0;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 6px 8px;
}
.link-btn:hover { color: var(--copper); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 18, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--paper, #FBF8EE);
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 28px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--stone);
}
.modal-close:hover { color: var(--copper); }
.batch-inq-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--sand);
}
.batch-inq-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--char);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}
.batch-inq-list .brand { color: var(--sepia, #6B4F2B); font-weight: 600; letter-spacing: 0.02em; }
.batch-inq-list .ref { color: var(--stone); font-size: 13px; font-family: var(--display); letter-spacing: 0.06em; }

/* ============================================================
   Luxe Select - custom dropdown enhancement
   ============================================================ */
.luxe-select {
  position: relative;
  display: block;
  width: 100%;
}
/* Hide the native <select> but leave it focusable for screen readers.
   Position absolute + clip removes the visual without removing semantics. */
.luxe-select select.luxe-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  opacity: 0;
  pointer-events: none;
}
/* Trigger button - looks like the original underline-style input */
.luxe-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sand);
  padding: 6px 24px 10px 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--sepia);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: border-color 0.3s, color 0.2s;
}
.luxe-trigger:hover,
.luxe-select.is-open .luxe-trigger,
.luxe-trigger:focus-visible { border-bottom-color: var(--copper); color: var(--char, #2A2620); }
.luxe-trigger-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.luxe-trigger-chevron {
  display: inline-flex;
  margin-left: 12px;
  color: var(--copper);
  transition: transform 0.25s ease;
}
.luxe-select.is-open .luxe-trigger-chevron { transform: rotate(180deg); }
.luxe-select.is-disabled .luxe-trigger { opacity: 0.4; cursor: not-allowed; }

/* The dropdown panel itself - parchment surface, soft shadow */
.luxe-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 200;
  background: var(--paper, #FBF8EE);
  border: 1px solid rgba(154, 123, 58, 0.22);
  box-shadow:
    0 20px 40px -20px rgba(38, 30, 22, 0.32),
    0 1px 0 rgba(154, 123, 58, 0.1);
  max-height: 280px;
  overflow-y: auto;
  display: none;
  padding: 6px 0;
  border-radius: 2px;
  /* Subtle inset texture: a pale champagne tint so it reads as warm cream
     rather than computer-white. */
  background-image: linear-gradient(180deg, rgba(255, 251, 235, 0.4), rgba(245, 237, 215, 0.2));
}
.luxe-panel.drops-up {
  top: auto;
  bottom: calc(100% + 6px);
  box-shadow:
    0 -20px 40px -20px rgba(38, 30, 22, 0.32),
    0 -1px 0 rgba(154, 123, 58, 0.1);
}
.luxe-select.is-open .luxe-panel {
  display: block;
  animation: luxe-fade-in 0.18s ease-out;
}
@keyframes luxe-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.luxe-panel.drops-up.is-open,
.luxe-select.is-open .luxe-panel.drops-up { animation: luxe-fade-in-up 0.18s ease-out; }
@keyframes luxe-fade-in-up {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar inside the panel - thin, copper accent */
.luxe-panel::-webkit-scrollbar { width: 8px; }
.luxe-panel::-webkit-scrollbar-track { background: transparent; }
.luxe-panel::-webkit-scrollbar-thumb {
  background: rgba(154, 123, 58, 0.3);
  border-radius: 4px;
}
.luxe-panel::-webkit-scrollbar-thumb:hover { background: rgba(154, 123, 58, 0.5); }

.luxe-option {
  padding: 11px 22px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--char, #2A2620);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.005em;
  transition: background 0.12s ease, color 0.12s ease;
  border-left: 2px solid transparent;
}
.luxe-option:hover,
.luxe-option.is-active {
  background: rgba(154, 123, 58, 0.08);
  color: var(--sepia, #6B4F2B);
}
.luxe-option.is-selected {
  color: var(--copper);
  font-weight: 500;
  border-left-color: var(--copper);
  background: rgba(154, 123, 58, 0.06);
}
.luxe-option.is-selected::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 6px; height: 11px;
  border-right: 1.5px solid var(--copper);
  border-bottom: 1.5px solid var(--copper);
  transform: translateY(-70%) rotate(45deg);
}
.luxe-option.is-disabled {
  color: var(--stone, #888);
  cursor: not-allowed;
  opacity: 0.55;
  font-style: italic;
}
.luxe-option.is-disabled:hover { background: transparent; color: var(--stone); }

/* Mobile: full-width tap targets */
@media (max-width: 720px) {
  .luxe-option { padding: 14px 22px; font-size: 16px; }
  .luxe-trigger { font-size: 16px; padding: 8px 24px 12px 0; }
  .luxe-panel { max-height: 60vh; }
}

.logo {
  text-align: center;
  display: inline-block;
}
.logo img {
  height: 46px;
  width: auto;
  display: inline-block;
}
.logo .tag {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--stone);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Mobile menu trigger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sepia);
  padding: 8px 0;
}
.menu-toggle .bars {
  display: inline-block;
  width: 20px;
  height: 10px;
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
}
.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--sepia);
}
.menu-toggle .bars::before { top: 2px; }
.menu-toggle .bars::after { bottom: 2px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 32px 32px 48px;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.drawer-top .logo img { filter: brightness(0) invert(1); opacity: 0.92; }
.drawer-top .logo .tag { color: rgba(242, 237, 229, 0.5); }
.drawer-close {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 8px 0;
  font-weight: 500;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 0; }
.mobile-drawer nav a {
  font-family: var(--display);
  font-size: 34px;
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 237, 229, 0.15);
  letter-spacing: 0.01em;
}
.mobile-drawer nav a.inquire { color: var(--copper-light); }
.drawer-footer {
  margin-top: auto;
  padding-top: 48px;
  color: rgba(242, 237, 229, 0.5);
  font-size: 13px;
  line-height: 1.8;
}
.drawer-footer a { color: var(--copper-light); }

body.locked { overflow: hidden; }

/* ============================================================
   CTAs — copper-accented, never gold
   ============================================================ */
.cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sepia);
  padding: 14px 0;
  border-bottom: 1px solid var(--sepia);
}
.cta:hover { color: var(--copper); border-color: var(--copper); }
.cta.alt {
  color: var(--stone);
  border-color: transparent;
  padding-left: 20px;
}
.cta.alt:hover { color: var(--copper); }
.cta.on-dark { color: var(--paper); border-color: var(--paper); }
.cta.on-dark:hover { color: var(--copper-light); border-color: var(--copper-light); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--sepia);
  padding: 18px 36px;
  border: 1px solid var(--sepia);
}
.btn:hover { background: var(--copper); border-color: var(--copper); }
.btn.outline { background: transparent; color: var(--sepia); }
.btn.outline:hover { background: var(--sepia); color: var(--paper); }
.btn.copper { background: var(--copper); border-color: var(--copper); }
.btn.copper:hover { background: var(--sepia); border-color: var(--sepia); }

/* ============================================================
   SECTIONS — generous, editorial spacing
   ============================================================ */
section { padding: 128px 56px; }
.container { max-width: 1380px; margin: 0 auto; }
.container-narrow { max-width: 920px; margin: 0 auto; }
.container-tight { max-width: 720px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 80px; }
.section-head .eyebrow { margin-bottom: 24px; display: inline-block; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  color: var(--sepia);
  max-width: 800px;
  margin: 0 auto 28px;
  letter-spacing: 0.005em;
}
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.section-head p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-text {
  padding: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--linen);
}
.hero-text .eyebrow { margin-bottom: 32px; display: inline-block; }
.hero-text h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 80px;
  line-height: 1.02;
  color: var(--sepia);
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}
.hero-text h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.hero-text p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--char);
  max-width: 460px;
  margin-bottom: 56px;
  line-height: 1.65;
}
.hero-image {
  background-size: cover;
  background-position: center;
  background-color: var(--forest);
  min-height: 90vh;
  position: relative;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 50, 47, 0.15) 0%, rgba(58, 50, 47, 0) 50%);
  pointer-events: none;
}
.hero-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HEADERS (inner pages)
   ============================================================ */
.page-header {
  padding: 128px 56px 88px;
  text-align: center;
  background: var(--linen);
  border-bottom: 1px solid var(--sand);
}
.page-header .eyebrow { margin-bottom: 24px; display: inline-block; }
.page-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.005em;
}
.page-header h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}
.page-header p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--stone);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   FEATURED PIECE
   ============================================================ */
/* ============================================================
   ATMOSPHERE BAND — full-bleed cinematic image break.
   Usage: <div class="atmosphere-band" style="background-image:url(...)"></div>
   Optionally pair with .atmosphere-band--tall for extra height.
   ============================================================ */
.atmosphere-band {
  width: 100%;
  height: 40vh;
  min-height: 260px;
  max-height: 460px;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment);
  display: block;
}
.atmosphere-band--tall {
  height: 50vh;
  max-height: 560px;
}
.atmosphere-band--short {
  height: 28vh;
  min-height: 180px;
  max-height: 320px;
}
@media (max-width: 860px) {
  .atmosphere-band { height: 36vw; min-height: 180px; max-height: none; }
  .atmosphere-band--tall { height: 48vw; }
  .atmosphere-band--short { height: 28vw; }
}

.featured {
  background: var(--parchment);
  padding: 144px 56px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.featured-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper);
}
.featured-text .eyebrow { margin-bottom: 28px; display: inline-block; }
.featured-text h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.featured-text .ref {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--stone);
  margin-bottom: 36px;
  text-transform: uppercase;
  font-weight: 500;
}
.featured-text p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--char);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.75;
}
.specs {
  margin: 44px 0;
  border-top: 1px solid var(--sand);
}
.spec {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
}
.spec dt {
  font-family: var(--sans);
  color: var(--stone);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.spec dd {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--sepia);
}
.price {
  font-family: var(--display);
  font-size: 36px;
  margin: 36px 0;
  color: var(--sepia);
}
.price small {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--stone);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* ============================================================
   DARK SECTION (concierge / sourcing)
   ============================================================ */
.dark {
  background: var(--forest);
  color: var(--paper);
  padding: 144px 56px;
  position: relative;
}
.dark .eyebrow { color: var(--copper-light); }
.dark h2, .dark h3, .dark h4 { color: var(--paper); }
.dark p { color: rgba(242, 237, 229, 0.78); }
.dark .section-head h2 em { color: var(--copper-light); }

.concierge-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.concierge-inner .eyebrow { margin-bottom: 32px; display: inline-block; }
.concierge-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 36px;
}
.concierge-inner h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper-light);
}
.concierge-inner p {
  font-family: var(--serif);
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.concierge-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  max-width: 1040px;
  margin: 112px auto 0;
  text-align: left;
}
.step .num {
  font-family: var(--display);
  font-size: 40px;
  color: var(--copper-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
}
.step p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: rgba(242, 237, 229, 0.65);
  margin: 0;
  line-height: 1.75;
}

/* ============================================================
   INVENTORY GRID
   ============================================================ */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
}
.inventory-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.inventory-grid.four-col { grid-template-columns: repeat(4, 1fr); gap: 56px; }

.watch {
  text-align: left;
  position: relative;
  transition: transform 0.5s ease;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
/* Cards in the same grid row always share the tallest card's height (default stretch) */
.inventory-grid {
  align-items: stretch;
}
.watch:hover { transform: translateY(-4px); }
.watch-img-wrap {
  aspect-ratio: 1/1;
  background-color: var(--parchment);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.5s ease;
}
.watch:hover .watch-img-wrap {
  box-shadow: 0 18px 36px -18px rgba(58, 50, 47, 0.25), 0 1px 0 rgba(154, 123, 58, 0.15);
}
.watch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.watch:hover .watch-img-wrap img { transform: scale(1.05); }

/* Brand hero (Lightroom photo used as fallback for source-able cards).
   The ref number sits in the corner so identical hero photos still feel
   distinct between two cards of the same brand. */
.watch-img-wrap.brand-hero-wrap { position: relative; }
.watch-img-wrap.brand-hero-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(20,18,15,0) 50%, rgba(20,18,15,0.55) 100%);
  pointer-events: none;
}
.brand-hero-ref {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  color: var(--parchment, #F5F1E6);
  font-family: var(--display, Georgia, serif);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.watch.has-brand-hero .badge-stock { background: rgba(245, 241, 230, 0.94); }

/* Badge floats on top-left of image now, more refined */
.watch .badge-instock,
.watch .badge-stock {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(242, 237, 229, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  padding: 6px 12px;
}
.watch .badge-instock { color: var(--sepia); border: 1px solid rgba(58, 50, 47, 0.18); }
.watch .badge-stock { color: var(--copper); border: 1px solid rgba(140, 120, 104, 0.35); }

.watch .brand-line {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.watch h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: var(--sepia);
}
.watch .ref-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: var(--stone);
  text-transform: none;
  margin-bottom: 22px;
  font-weight: 400;
  line-height: 1.5;
}
.watch .price-line {
  font-family: var(--display);
  font-size: 22px;
  color: var(--sepia);
  margin-bottom: 22px;
  letter-spacing: 0.015em;
  padding-top: 18px;
  border-top: 1px solid var(--sand);
}
.watch a.inquire-link,
.watch span.inquire-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sepia);
  border-bottom: 1px solid var(--sepia);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
  margin-top: auto;
  display: inline-block;
}
.watch:hover a.inquire-link,
.watch:hover span.inquire-link {
  color: var(--copper);
  border-color: var(--copper);
  letter-spacing: 0.36em;
}

/* Stock listings (available to source — not currently in inventory) */
.watch.stock .watch-img-wrap {
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream, #EFEBE0) 100%);
  border: 1px dashed var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.watch.stock .watch-img-wrap .stock-mark {
  text-align: center;
  width: 100%;
}
.watch.stock .watch-img-wrap .stock-mark .stock-brand {
  font-family: var(--display);
  font-size: 28px;
  color: var(--copper);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.watch.stock .watch-img-wrap .stock-mark .stock-ref {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
.watch.stock .watch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
/* Stock card with a specific per-watch image — render like an in-stock card */
.watch.stock.has-specific-img .watch-img-wrap {
  background: var(--parchment);
  border: 0;
}
.watch.stock.has-specific-img .watch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--parchment) 100%);
}

/* When stock card uses a watch PNG, remove the dashed border */
.watch.stock.has-watch-png .watch-img-wrap {
  background: linear-gradient(135deg, var(--paper) 0%, var(--parchment) 100%);
  border: 1px solid var(--sand);
}
.watch.stock.has-watch-png .watch-img-wrap img {
  padding: 8px;
}
/* Available-to-source cards: show brand name as styled text */
.watch.stock.has-brand-name .watch-img-wrap {
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream, #EFEBE0) 100%);
  border: 1px dashed var(--sand);
}
.watch.stock.has-brand-name .watch-img-wrap .stock-brand {
  font-size: clamp(14px, 2vw, 24px);
  letter-spacing: 0.04em;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.15;
}
.watch.stock .price-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
}
.watch.stock .price-line::before { content: ''; }
.watch .badge-stock {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(140, 120, 104, 0.08);
  padding: 4px 10px;
  margin-bottom: 12px;
  border: 1px solid var(--copper);
}
.watch .badge-instock {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sepia);
  background: var(--parchment);
  padding: 4px 10px;
  margin-bottom: 12px;
  border: 1px solid var(--sand);
}

/* ============================================================
   FOUNDER / ABOUT
   ============================================================ */
.founder {
  background: var(--parchment);
  padding: 144px 56px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.founder-img {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #E0D8C2 0%, #C0B59A 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  color: var(--char);
  position: relative;
  background-size: cover;
  background-position: center;
}
.founder-img::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(140, 120, 104, 0.3);
  pointer-events: none;
}
.founder-img-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(92, 84, 80, 0.65);
  font-weight: 500;
}

/* When a real portrait photo is loaded */
.founder-img.has-portrait {
  background-size: cover;
  background-position: center top;
  background-color: var(--parchment);
  padding: 0;
}
.founder-img.has-portrait::before {
  border-color: rgba(242, 237, 229, 0.45);
  inset: 18px;
}
.founder-text .eyebrow { margin-bottom: 32px; display: inline-block; }
.founder-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 60px;
  line-height: 1.06;
  margin-bottom: 36px;
}
.founder-text h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
}
.founder-text p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--char);
  margin-bottom: 22px;
  max-width: 540px;
  line-height: 1.8;
}
.founder-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  margin-top: 48px;
  color: var(--sepia);
}
.founder-sign small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   GOOGLE REVIEWS STRIP
   An infinite-scroll marquee of client testimonials.
   Two identical track copies run end-to-end so the loop is
   seamless. Pauses on hover so readers can linger.
   ============================================================ */
.reviews-strip {
  padding: 80px 0 64px;
  background: var(--parchment);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
}
.reviews-strip-head {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}
.reviews-strip-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.reviews-strip-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: var(--sepia);
  margin: 0;
  letter-spacing: 0.01em;
}
.reviews-strip-head h2 em { color: var(--copper); }
.reviews-ticker-wrap {
  overflow: hidden;
  position: relative;
  /* Fade edges for infinite feel */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-ticker {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: reviews-scroll 48s linear infinite;
}
.reviews-ticker:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--paper);
  border-top: 2px solid var(--sepia);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card .stars {
  display: flex;
  gap: 3px;
}
.review-card .stars span {
  color: var(--copper);
  font-size: 14px;
  line-height: 1;
}
.review-card .review-text {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--char);
  flex: 1;
  /* Clamp to 5 lines so cards stay same height */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card .review-attr {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 12px;
  border-top: 1px solid var(--sand);
}
.reviews-strip-footer {
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 860px) {
  .reviews-strip-head h2 { font-size: 28px; }
  .review-card { width: 290px; }
  .reviews-ticker { gap: 20px; animation-duration: 36s; }
}

/* ============================================================
   TRUST PILLARS
   ============================================================ */
.trust-strip {
  padding: 112px 56px;
  background: var(--linen);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 72px 0;
}
.pillar { text-align: center; padding: 0 16px; }
.pillar .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 28px;
  border: 1px solid var(--copper);
  transform: rotate(45deg);
  position: relative;
}
.pillar .icon::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--copper);
}
.pillar h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
}
.pillar p {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.75;
}

/* ============================================================
   JOURNAL TEASE
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 1380px;
  margin: 0 auto;
}
.post .post-img {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment);
  margin-bottom: 28px;
}
.post .date {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
  font-weight: 500;
}
.post h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 14px;
}
.post p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--char);
  line-height: 1.75;
  margin-bottom: 18px;
}
.post a.read-more {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sepia);
  border-bottom: 1px solid var(--sepia);
  padding-bottom: 4px;
}
.post a.read-more:hover { color: var(--copper); border-color: var(--copper); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  text-align: center;
  padding: 176px 56px;
  background: var(--linen);
}
.cta-strip h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
}
.cta-strip p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.form-row { margin-bottom: 36px; }
.form-row label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.form-row label .required { color: var(--copper); margin-left: 4px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--sepia);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sand);
  padding: 14px 0;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-bottom-color: var(--copper); }
.form-row textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.form-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.form-pills label {
  display: inline-block;
  margin: 0;
  cursor: pointer;
}
.form-pills input[type="radio"], .form-pills input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.form-pills .pill {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--char);
  padding: 12px 22px;
  border: 1px solid var(--sand);
  background: var(--paper);
  transition: all 0.25s ease;
}
.form-pills input:checked + .pill {
  background: var(--sepia);
  border-color: var(--sepia);
  color: var(--paper);
}
.form-pills .pill:hover { border-color: var(--copper); color: var(--copper); }
.form-pills input:checked + .pill:hover { color: var(--paper); border-color: var(--sepia); }

.file-drop {
  border: 1px dashed var(--sand);
  background: var(--paper);
  padding: 40px;
  text-align: center;
  font-family: var(--serif);
  color: var(--stone);
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.file-drop:hover { border-color: var(--copper); background: var(--parchment); }
.file-drop small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 12px;
  font-weight: 500;
}

/* ============================================================
   WIZARD (multi-step services form)
   ============================================================ */
.wizard {
  max-width: 880px;
  margin: 0 auto;
}

.wizard-rail {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  align-items: center;
  justify-content: center;
}
.wizard-rail .rail-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  flex: 1;
  max-width: 140px;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.wizard-rail .rail-step .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}
.wizard-rail .rail-step.done .dot { background: var(--copper); }
.wizard-rail .rail-step.active {
  opacity: 1;
  color: var(--copper);
}
.wizard-rail .rail-step.active .dot {
  background: var(--copper);
  transform: scale(1.4);
}
.wizard-rail .rail-step.done {
  opacity: 0.8;
  color: var(--char);
}
.wizard-rail .rail-line {
  flex: 1;
  height: 1px;
  background: var(--sand);
  max-width: 80px;
  margin-bottom: 18px;
}
.wizard-rail .rail-line.done { background: var(--copper); }

.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wizard-step.active { display: block; }
.wizard-step.active.in { opacity: 1; transform: translateY(0); }

.wizard-step-head {
  text-align: center;
  margin-bottom: 56px;
}
.wizard-step-head .eyebrow { margin-bottom: 20px; display: inline-block; }
.wizard-step-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.wizard-step-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}
.wizard-step-head p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--stone);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Intent picker (step 1) */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.intent-card {
  display: block;
  cursor: pointer;
  background: var(--parchment);
  padding: 36px 32px;
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
  position: relative;
}
.intent-card:hover {
  border-color: var(--copper);
  background: var(--paper);
}
.intent-card input { position: absolute; opacity: 0; pointer-events: none; }
.intent-card input:checked + .intent-body {
  /* show the active state */
}
.intent-card:has(input:checked) {
  border-color: var(--copper);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--copper);
}
.intent-card .intent-num {
  font-family: var(--display);
  font-size: 26px;
  color: var(--copper);
  margin-bottom: 14px;
}
.intent-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--sepia);
}
.intent-card p {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--char);
  line-height: 1.65;
  margin: 0;
}

/* Wizard controls */
.wizard-controls {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.wizard-controls .step-count {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.wizard-controls .controls-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.wizard-controls button.back-btn {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  padding: 12px 0;
}
.wizard-controls button.back-btn:hover { color: var(--copper); }

/* Section divider used inside steps */
.wizard-section-divider {
  margin: 48px 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.wizard-section-divider h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--sepia);
  margin-bottom: 8px;
}
.wizard-section-divider p {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--stone);
  font-style: italic;
}

/* ============================================================
   PHOTO UPLOAD GRID (selling / trade / consign step)
   ============================================================ */
.photo-grid-intro {
  background: var(--parchment);
  padding: 28px 32px;
  margin-bottom: 40px;
  border-left: 2px solid var(--copper);
}
.photo-grid-intro h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 8px;
}
.photo-grid-intro p {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--char);
  line-height: 1.65;
  margin: 0;
}

.photo-section-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.photo-tile {
  position: relative;
  border: 1px dashed var(--sand);
  background: var(--paper);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.photo-tile:hover {
  border-color: var(--copper);
  background: var(--parchment);
}
.photo-tile input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.photo-tile .tile-head {
  position: relative;
  z-index: 2;
}
.photo-tile .tile-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 6px;
  line-height: 1.4;
}
.photo-tile .tile-label .req {
  color: var(--copper);
  margin-left: 2px;
}
.photo-tile .tile-hint {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  font-style: italic;
}
.photo-tile .tile-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
}
.photo-tile .tile-foot::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  color: var(--stone);
}

/* Uploaded state */
.photo-tile.uploaded {
  border: 1px solid var(--copper);
  background: var(--sepia);
}
.photo-tile.uploaded .preview-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.photo-tile.uploaded .preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 50, 47, 0.85) 0%, rgba(58, 50, 47, 0) 50%);
}
.photo-tile.uploaded .tile-label,
.photo-tile.uploaded .tile-hint { color: transparent; }
.photo-tile.uploaded .tile-head { opacity: 0; }
.photo-tile.uploaded .tile-foot {
  color: var(--paper);
  z-index: 3;
}
.photo-tile.uploaded .tile-foot::before {
  content: '✓';
  border-color: var(--copper-light);
  color: var(--copper-light);
  background: rgba(184, 139, 92, 0.18);
}

/* Confirmation (final step) */
.wizard-confirm {
  text-align: center;
  padding: 64px 32px;
  background: var(--parchment);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin: 40px 0;
}
.wizard-confirm .mark {
  font-family: var(--display);
  font-size: 64px;
  color: var(--copper);
  margin-bottom: 24px;
  line-height: 1;
}
.wizard-confirm h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 16px;
}
.wizard-confirm h2 em { font-family: var(--serif); font-style: italic; color: var(--copper); }
.wizard-confirm p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--char);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   WATCH DETAIL PAGE
   ============================================================ */
.watch-detail {
  padding: 80px 56px 144px;
  background: var(--linen);
}
.watch-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  max-width: 1380px;
  margin: 0 auto;
  align-items: start;
}
.gallery .main-img {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--paper) 0%, var(--parchment) 100%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  cursor: zoom-in;
  transition: background-image 0.25s ease;
  position: relative;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.gallery-thumbs .thumb {
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--paper);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  border: 1px solid var(--sand);
  padding: 0;
  border-radius: 0;
}
.gallery-thumbs .thumb:hover { opacity: 0.85; transform: translateY(-1px); }
.gallery-thumbs .thumb.active {
  opacity: 1;
  border-color: var(--copper);
  border-width: 1.5px;
}
.detail-text { padding-top: 24px; }
.detail-text .breadcrumb {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}
.detail-text .breadcrumb a { color: var(--stone); }
.detail-text .breadcrumb a:hover { color: var(--copper); }
.detail-text .brand-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.detail-text h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 12px;
}
.detail-text .ref-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
}
.detail-text .price-line {
  font-family: var(--display);
  font-size: 36px;
  margin: 28px 0 28px;
  color: var(--sepia);
}
.detail-text .model-story {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--char);
  margin: 0 0 36px;
  max-width: 56ch;
  font-style: italic;
}
.detail-text .description {
  font-family: var(--serif);
  color: var(--char);
  font-size: 16.5px;
  line-height: 1.85;
  margin-bottom: 32px;
}
.detail-actions {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICES — five-tile grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1380px;
  margin: 0 auto;
}
.service-tile {
  background: var(--paper);
  padding: 56px 36px;
  text-align: center;
  transition: background 0.3s;
}
.service-tile:hover { background: var(--parchment); }
.service-tile .num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--copper);
  margin-bottom: 20px;
}
.service-tile h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 16px;
}
.service-tile p {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--char);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-tile a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sepia);
  border-bottom: 1px solid var(--sepia);
  padding-bottom: 4px;
}
.service-tile a:hover { color: var(--copper); border-color: var(--copper); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partner-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: 72px 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}
.partner-card:last-child { border-bottom: 0; }
.partner-mark {
  font-family: var(--display);
  font-size: 96px;
  line-height: 1;
  color: var(--copper);
  letter-spacing: 0.02em;
}
.partner-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.partner-card .tagline {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.partner-card p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--char);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 720px;
}
.partner-services {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--stone);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 720px;
}
.partner-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT body
   ============================================================ */
.about-body { padding: 128px 56px; }
.about-body .container-narrow p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.85;
  color: var(--char);
  margin-bottom: 28px;
}
.about-body .container-narrow p.lead {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.3;
  color: var(--sepia);
  margin-bottom: 56px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.about-body .container-narrow h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  margin: 64px 0 24px;
}
.about-body .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1.45;
  text-align: center;
  color: var(--sepia);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 64px 0;
  margin: 72px 0;
}
.about-body .pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 28px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin: 80px 0;
  counter-reset: value-counter;
}
.values-grid .value { counter-increment: value-counter; }
.value h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--sepia);
}
.value h4::before {
  content: counter(value-counter, decimal-leading-zero);
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: 12px;
}
.value p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--char);
  line-height: 1.8;
}

/* ============================================================
   JOURNAL — article rows
   ============================================================ */
.article-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--sand);
  align-items: center;
}
.article-row:last-child { border-bottom: 0; }
.article-row .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment);
}
.article-row .meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.article-row h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-row p {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--char);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 32px;
}
.contact-info .info-block { margin-bottom: 36px; }
.contact-info .info-block .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: block;
}
.contact-info .info-block p, .contact-info .info-block a {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--char);
  line-height: 1.7;
}
.contact-info .info-block a:hover { color: var(--copper); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site {
  background: var(--forest);
  color: rgba(242, 237, 229, 0.7);
  padding: 112px 56px 56px;
  font-size: 13.5px;
}
.footer-grid {
  max-width: 1380px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 72px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p {
  font-family: var(--serif);
  color: rgba(242, 237, 229, 0.6);
  max-width: 340px;
  line-height: 1.8;
  font-size: 15px;
}
.footer-col h6 {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--paper);
  margin-bottom: 28px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(242, 237, 229, 0.55);
  font-family: var(--serif);
  font-size: 15px;
}
.footer-col a:hover { color: var(--copper-light); }
.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(242, 237, 229, 0.12);
  display: flex;
  justify-content: space-between;
  color: rgba(242, 237, 229, 0.42);
  font-size: 12.5px;
  font-family: var(--sans);
  letter-spacing: 0.05em;
}

/* ============================================================
   COLLECTION LAYOUT — sticky sidebar
   ============================================================ */
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.collection-content { min-width: 0; }
.collection-content .inventory-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ============================================================
   SEARCH PANEL — refined for Quiet Luxury
   No heavy card. Underlined fields. Editorial spacing.
   ============================================================ */
.search-panel {
  background: var(--paper);
  border: 0;
  border-top: 2px solid var(--sepia);
  padding: 32px 24px 36px;
  margin-bottom: 56px;
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
  box-shadow: 0 1px 0 var(--sand);
}
.search-panel::-webkit-scrollbar { width: 3px; }
.search-panel::-webkit-scrollbar-track { background: transparent; }
.search-panel::-webkit-scrollbar-thumb { background: var(--sand); }

.search-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 12px;
}
.search-panel-head h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--sepia);
  letter-spacing: 0.01em;
  margin: 0;
}
.search-panel-head .results-count {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  width: 100%;
  margin-top: 4px;
}
.search-panel-head .reset-btn {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  cursor: pointer;
  padding: 4px 0;
  align-self: flex-start;
}
.search-panel-head .reset-btn:hover { color: var(--copper); }

.search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.search-field { position: relative; }
.search-field label {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.search-field select,
.search-field input[type="text"] {
  width: 100%;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--sepia);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sand);
  padding: 6px 0 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.search-field select:focus,
.search-field input[type="text"]:focus {
  border-bottom-color: var(--copper);
}
.search-field select:disabled { opacity: 0.4; cursor: not-allowed; }
.search-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--stone) 50%),
    linear-gradient(-45deg, transparent 50%, var(--stone) 50%);
  background-position: calc(100% - 12px) calc(50% - 1px), calc(100% - 7px) calc(50% - 1px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
  cursor: pointer;
}
.search-field input[type="text"]::placeholder { color: var(--stone); opacity: 0.7; font-style: italic; }
.search-field input[type="text"]:focus::placeholder { opacity: 0.4; }

.quick-pills {
  display: flex;
  gap: 6px 8px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}
.quick-pills .label-inline {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  width: 100%;
  margin-bottom: 8px;
}
.quick-pill {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--char);
  padding: 4px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  margin-right: 8px;
}
.quick-pill:hover { color: var(--copper); border-bottom-color: var(--copper); }
.quick-pill.active { color: var(--sepia); border-bottom-color: var(--copper); font-weight: 500; }

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
  text-align: center;
  padding: 96px 24px;
  font-family: var(--serif);
  color: var(--stone);
  font-size: 17px;
  font-style: italic;
  display: none;
}
.no-results.visible { display: block; }
.no-results h4 {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: var(--sepia);
  margin-bottom: 16px;
}
.no-results .cta { margin-top: 24px; }

/* ============================================================
   BADGES (on watch cards)
   ============================================================ */
.watch .badge-instock,
.watch .badge-stock {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(242, 237, 229, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0;
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0;
}
.watch .badge-instock { color: var(--sepia); border: 1px solid rgba(74, 65, 62, 0.18); }
.watch .badge-stock { color: var(--copper); border: 1px solid rgba(140, 120, 104, 0.4); }

/* Stock card image-wrap variants */
.watch.stock.has-specific-img .watch-img-wrap {
  background: var(--parchment);
  border: 0;
}
.watch.stock.has-specific-img .watch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--parchment) 100%);
}
.watch.stock.has-watch-png .watch-img-wrap {
  background: linear-gradient(135deg, var(--paper) 0%, var(--parchment) 100%);
  border: 1px solid var(--sand);
}
.watch.stock.has-watch-png .watch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.watch.stock.has-logo .watch-img-wrap {
  background: var(--paper);
  border: 1px solid var(--sand);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch.stock.has-logo .watch-img-wrap img {
  width: 65%;
  height: auto;
  max-height: 55%;
  margin: auto;
  padding: 0;
  object-fit: contain;
}
.watch.stock.has-logo .watch-img-wrap::after {
  content: attr(data-ref-label);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
/* Placeholder stock-mark (when no img/logo) */
.watch.stock .watch-img-wrap {
  background: var(--paper);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch.stock .watch-img-wrap .stock-mark {
  text-align: center;
  width: 100%;
}
.watch.stock .watch-img-wrap .stock-mark .stock-brand {
  font-family: var(--display);
  font-size: 28px;
  color: var(--copper);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.watch.stock .watch-img-wrap .stock-mark .stock-ref {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
.watch.stock .price-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--copper);
  border-top: 1px solid var(--sand);
  padding-top: 18px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .collection-layout { grid-template-columns: 240px 1fr; gap: 40px; }
  .collection-content .inventory-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  section { padding: 104px 40px; }
  .featured, .dark, .founder { padding: 104px 40px; }
  .hero-text { padding: 80px 56px; }
  .hero-text h1 { font-size: 64px; }
  .nav-inner { padding: 18px 32px; gap: 16px; }
  .nav-left, .nav-right { gap: 24px; font-size: 11px; }
  .featured-grid, .founder-grid, .watch-detail-grid, .contact-grid { gap: 56px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .collection-layout { grid-template-columns: 1fr; gap: 32px; }
  .collection-content .inventory-grid { grid-template-columns: 1fr; gap: 48px; }
  .search-panel {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 20px 0 24px;
  }
  .search-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  .menu-toggle { display: inline-flex; align-items: center; }
  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 16px 24px; }
  .logo img { height: 36px; }
  .logo .tag { font-size: 8px; margin-top: 4px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 64px 32px 80px; order: 2; }
  .hero-text h1 { font-size: 44px; line-height: 1.06; }
  .hero-text p { font-size: 17px; }
  .hero-image { min-height: 56vh; order: 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta.alt { padding-left: 0; }

  .featured-grid, .founder-grid, .watch-detail-grid, .contact-grid, .article-row, .partner-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .featured-img, .founder-img { aspect-ratio: 1/1; }
  .featured-text h3, .founder-text h2 { font-size: 40px; }
  .section-head h2, .concierge-inner h2, .cta-strip h2, .page-header h1 { font-size: 40px; }
  .section-head p, .page-header p { font-size: 17px; }

  .inventory-grid, .journal-grid, .concierge-steps, .trust-grid, .values-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  section, .featured, .dark, .founder, .trust-strip, .about-body, .cta-strip {
    padding: 80px 24px;
  }
  .page-header { padding: 80px 24px 56px; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .form-double { grid-template-columns: 1fr; gap: 0; }
  .form-row input, .form-row textarea, .form-row select { font-size: 16px; }

  .gallery-thumbs { gap: 10px; }
  .detail-text h1 { font-size: 36px; }
  .detail-text .price-line { font-size: 28px; }
  .partner-card { padding: 56px 0; }
  .partner-mark { font-size: 64px; }
  .partner-card h3 { font-size: 32px; }
  .article-row { padding: 48px 0; }
  .article-row h3 { font-size: 28px; }
  .article-row p { font-size: 15.5px; }

  /* Wizard mobile */
  .wizard-step-head h2 { font-size: 32px; }
  .wizard-rail { gap: 8px; flex-wrap: wrap; }
  .wizard-rail .rail-step { font-size: 9px; letter-spacing: 0.2em; max-width: 80px; }
  .wizard-rail .rail-line { max-width: 32px; }
  .intent-grid { grid-template-columns: 1fr; gap: 14px; }
  .intent-card { padding: 24px 20px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .photo-tile { padding: 12px; }
  .photo-tile .tile-label { font-size: 9.5px; letter-spacing: 0.16em; }
  .photo-tile .tile-hint { font-size: 12px; }
  .wizard-controls { flex-direction: column; gap: 20px; align-items: stretch; }
  .wizard-controls .controls-right { flex-direction: column-reverse; gap: 16px; align-items: stretch; }
  .wizard-controls .step-count { text-align: center; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 36px; line-height: 1.08; }
}

/* ============================================================
   Watch detail page - inquiry form
   ============================================================ */
#inquiry-form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
#inquiry-form label { font-family: var(--sans, system-ui, sans-serif); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone, #555); }
#inquiry-form input,
#inquiry-form textarea {
  font-family: var(--serif, Georgia, serif);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--sand, #d6cdb8);
  border-radius: 3px;
  background: #fff;
  color: var(--ink, #1a1a1a);
  transition: border-color 0.18s ease;
}
#inquiry-form input:focus,
#inquiry-form textarea:focus {
  outline: none;
  border-color: var(--copper, #b6845c);
}
#inquiry-form textarea { resize: vertical; min-height: 120px; }
#inquiry-form .form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
#inquiry-form .inq-status {
  font-family: var(--serif, Georgia, serif);
  font-size: 14px;
  color: var(--stone, #555);
}
@media (max-width: 640px) {
  #inquiry-form .form-actions { flex-direction: column; align-items: stretch; }
  #inquiry-form .form-actions .btn { width: 100%; text-align: center; }
}


/* ============================================================
   Watch detail - photo gallery enhancements
   ============================================================ */
.gallery-counter {
  font-family: var(--sans, system-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone, #666);
  text-align: center;
  margin: 12px 0 4px;
}
.gallery-thumbs .thumb {
  border: 1px solid transparent;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-color: var(--sand, #d6cdb8);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.gallery-thumbs .thumb:hover { transform: translateY(-1px); }
.gallery-thumbs .thumb.active { border-color: var(--copper, #b6845c); }
.gallery .main-img:hover { filter: brightness(1.02); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 14, 12, 0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  padding: 32px;
}
.lightbox .lb-img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(247, 243, 231, 0.08);
  color: #f7f3e7;
  border: 1px solid rgba(247, 243, 231, 0.25);
  cursor: pointer;
  font-family: var(--serif, Georgia, serif);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: rgba(247, 243, 231, 0.2); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(247, 243, 231, 0.7);
  font-family: var(--sans, system-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox .lb-prev,
  .lightbox .lb-next { width: 40px; height: 40px; font-size: 20px; }
  .lightbox .lb-prev { left: 12px; }
  .lightbox .lb-next { right: 12px; }
}


/* Cleaner breadcrumb on watch detail page */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans, system-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone, #666);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--stone, #666);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: var(--ink, #1a1a1a); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb [aria-current="page"] { color: var(--ink, #1a1a1a); }

/* ============================================================
   STICKY INQUIRY BAR — watch detail page
   Slides up from the bottom once the primary CTA scrolls off screen.
   ============================================================ */
.sticky-inquiry-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(235, 229, 220, 0.97);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--sand);
  padding: 16px 56px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px -8px rgba(58, 50, 47, 0.14);
  pointer-events: none;
}
.sticky-inquiry-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-bar-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
}
.sticky-bar-brand {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
}
.sticky-bar-model {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  color: var(--sepia);
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar-btn {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--sepia);
  padding: 16px 36px;
  border: 1px solid var(--sepia);
  transition: background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.sticky-bar-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--paper);
}
@media (max-width: 860px) {
  .sticky-inquiry-bar { padding: 12px 24px; }
  .sticky-bar-model { font-size: 17px; }
  .sticky-bar-btn { padding: 13px 26px; font-size: 10px; }
}
@media (max-width: 480px) {
  .sticky-inquiry-bar { padding: 10px 16px; }
  .sticky-bar-model { font-size: 15px; }
  .sticky-bar-btn { padding: 12px 20px; }
}


/* ============================================================
   FILTER ACTIVE BADGE — collection page
   ============================================================ */
.filter-active-badge {
  display: none;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--sepia);
  color: var(--paper);
  padding: 3px 9px;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.filter-active-badge.visible { display: inline-block; }


/* ============================================================
   COLLECTION GRID — responsive columns
   Tablet (≤860px): 2 columns. Phone (≤520px): 1 column.
   The filter sidebar stays always-visible — it stacks above the
   grid on narrow viewports via the existing single-column grid
   layout already set in the main 860px media query block.
   ============================================================ */
@media (max-width: 860px) {
  .collection-content .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .collection-content .inventory-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ============================================================
   GALLERY LOADING STATE — skeleton shimmer while image loads
   ============================================================ */
.gallery .main-img.is-loading {
  animation: gallery-shimmer 1.6s ease-in-out infinite;
}
@keyframes gallery-shimmer {
  0%   { background-color: var(--parchment); }
  50%  { background-color: var(--sand); }
  100% { background-color: var(--parchment); }
}

/* ============================================================
   NOTIFY ME MODAL (feature 1.3)
   ============================================================ */

/* Overlay — fixed fullscreen dark scrim */
.notify-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9200;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px;
}
.notify-modal-overlay.open {
  display: flex;
}

/* Modal card */
.notify-modal {
  background: var(--paper);
  max-width: 480px;
  width: 100%;
  padding: 48px 44px 40px;
  border-radius: 3px;
  box-shadow: 0 40px 100px -24px rgba(0, 0, 0, 0.48);
  position: relative;
  border-top: 3px solid var(--copper);
}

/* Heading */
.notify-modal h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--sepia);
  margin: 0 0 8px;
}
.notify-modal h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
}

/* Watch name label beneath heading */
.notify-watch-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 20px;
}

/* Body copy */
.notify-modal > p:not(.notify-watch-name) {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Form rows */
.notify-modal .form-row {
  margin-bottom: 18px;
}
.notify-modal .form-row label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sepia);
  display: block;
  margin-bottom: 7px;
}
.notify-modal .form-row input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--sepia);
  background: var(--parchment);
  border: 1px solid rgba(140, 120, 104, 0.32);
  border-radius: 2px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s ease;
}
.notify-modal .form-row input:focus {
  border-color: var(--copper);
}

/* Submit button — full-width copper */
.notify-modal .notify-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Status line */
.notify-status {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
  margin-top: 12px;
  min-height: 18px;
  transition: color 0.15s ease;
}
.notify-status.error   { color: #b94a2c; font-style: normal; font-weight: 500; }
.notify-status.success { color: #3a6244; font-style: normal; font-weight: 500; }

/* Field-level validation error state */
input.field-error,
textarea.field-error {
  border-bottom-color: #b94a2c !important;
  outline: none;
}

/* Contact form inline status */
#cf-status.error   { color: #b94a2c; font-style: normal; }
#cf-status.success { color: #3a6244; font-style: normal; }

/* Close × */
.notify-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--stone);
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.15s ease;
}
.notify-modal-close:hover {
  color: var(--sepia);
}

@media (max-width: 520px) {
  .notify-modal {
    padding: 36px 24px 28px;
  }
  .notify-modal h3 {
    font-size: 24px;
  }
}


/* ============================================================
   NOTIFY ME BUTTON — sourcing / reference cards
   ============================================================ */

.notify-me-btn {
  display: block;
  width: calc(100% - 28px);
  margin: 8px 14px 4px;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  background: transparent;
  border: 1px solid rgba(167, 120, 60, 0.42);
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 3;
}
.notify-me-btn:hover {
  background: var(--copper);
  color: var(--paper);
  border-color: var(--copper);
}
.watch .notify-me-btn {
  pointer-events: auto;
}

/* Notify me button — inline next to brand name */
.watch .card-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.watch .card-brand-row .brand-line {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.watch .card-brand-row .notify-me-btn {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  padding: 4px 9px;
  font-size: 8px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}


/* ============================================================
   WATCH CONTEXT BANNER — contact.html pre-fill indicator
   ============================================================ */

.watch-context-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--parchment);
  border: 1px solid rgba(140, 120, 104, 0.28);
  border-left: 3px solid var(--copper);
  border-radius: 3px;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.wcb-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.wcb-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--sepia);
  font-weight: 500;
  flex: 1;
}
.wcb-back {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.15s ease;
}
.wcb-back:hover { color: var(--copper); }


/* ============================================================
   MARKET CONTEXT BADGES — in-stock cards
   ============================================================ */

.badge-market {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  pointer-events: auto;
  cursor: default;
}
.badge-market.below {
  background: rgba(62, 100, 68, 0.11);
  color: #3a6244;
  border: 1px solid rgba(62, 100, 68, 0.28);
}
.badge-market.at-market {
  background: rgba(140, 120, 104, 0.11);
  color: var(--stone);
  border: 1px solid rgba(140, 120, 104, 0.24);
}
.badge-market.premium {
  background: rgba(167, 120, 60, 0.10);
  color: var(--copper);
  border: 1px solid rgba(167, 120, 60, 0.28);
}
/* Tooltip on hover */
.badge-market[data-tip] {
  position: absolute;
}
.badge-market[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  background: var(--sepia);
  color: var(--parchment);
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 10;
}


/* ============================================================
   COMPARE TOGGLE BUTTON — overlaid top-left of card image
   ============================================================ */

.compare-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(251, 248, 238, 0.92);
  border: 1px solid rgba(140, 120, 104, 0.32);
  border-radius: 2px;
  padding: 5px 9px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.compare-toggle:hover {
  background: rgba(251, 248, 238, 1);
  border-color: var(--sepia);
}
.compare-toggle.selected {
  background: var(--sepia);
  color: var(--paper);
  border-color: var(--sepia);
}
.compare-toggle.selected:hover {
  background: var(--copper);
  border-color: var(--copper);
}
/* Small + icon in button */
.ct-icon {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0;
}
.ct-icon::before,
.ct-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.ct-icon::before { width: 1px; height: 10px; top: 0; left: 4.5px; }
.ct-icon::after  { width: 10px; height: 1px; top: 4.5px; left: 0; }
.compare-toggle.selected .ct-icon::before { transform: rotate(45deg); top: 1px; left: 4.5px; }
.compare-toggle.selected .ct-icon::after  { transform: rotate(45deg); top: 4.5px; left: 0; }


/* ============================================================
   COMPARE TRAY — fixed bottom bar
   ============================================================ */

.compare-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sepia);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 8000;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.22);
}
.compare-tray.visible {
  transform: translateY(0);
}
.compare-tray-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.compare-tray-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 243, 231, 0.55);
  flex-shrink: 0;
}
.compare-tray-slots {
  display: flex;
  gap: 12px;
  flex: 1;
}
.compare-slot {
  flex: 1;
  max-width: 200px;
  background: rgba(247, 243, 231, 0.08);
  border: 1px solid rgba(247, 243, 231, 0.18);
  border-radius: 2px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--paper);
  min-height: 40px;
}
.compare-slot.empty {
  color: rgba(247, 243, 231, 0.32);
  font-style: italic;
  justify-content: center;
  font-size: 12px;
}
.compare-slot-remove {
  background: none;
  border: none;
  color: rgba(247, 243, 231, 0.55);
  font-size: 16px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.compare-slot-remove:hover { color: var(--paper); }
.compare-tray-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.compare-tray-btn {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.compare-tray-btn.primary {
  background: var(--copper);
  color: var(--paper);
  border: 1px solid var(--copper);
}
.compare-tray-btn.primary:hover:not(:disabled) {
  background: var(--paper);
  color: var(--sepia);
  border-color: var(--paper);
}
.compare-tray-btn.primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.compare-tray-btn.ghost {
  background: transparent;
  color: rgba(247, 243, 231, 0.65);
  border: 1px solid rgba(247, 243, 231, 0.25);
}
.compare-tray-btn.ghost:hover {
  background: rgba(247, 243, 231, 0.10);
  color: var(--paper);
}

@media (max-width: 720px) {
  .compare-tray-inner { padding: 12px 20px; gap: 12px; }
  .compare-tray-label { display: none; }
  .compare-slot { max-width: 140px; font-size: 11px; }
}


/* ============================================================
   COMPARE MODAL — full side-by-side table
   ============================================================ */

.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.72);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 9500;
  overflow-y: auto;
  padding: 48px 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.compare-modal-overlay.open {
  display: flex;
}
.compare-modal {
  background: var(--paper);
  width: 100%;
  max-width: 960px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 48px 120px -32px rgba(0, 0, 0, 0.55);
  border-top: 3px solid var(--copper);
}
.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--sand);
}
.compare-modal-header h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--sepia);
  margin: 0;
}
.compare-modal-close {
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--stone);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.15s ease;
}
.compare-modal-close:hover { color: var(--sepia); }
.compare-modal-body {
  overflow-x: auto;
  padding: 32px 36px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--sand);
}
/* Row label column */
.compare-table th:first-child,
.compare-table td:first-child {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  width: 130px;
  white-space: nowrap;
}
/* Watch columns */
.compare-table th:not(:first-child) {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  color: var(--sepia);
}
.compare-table td:not(:first-child) {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--sepia);
  line-height: 1.5;
}
/* Image row */
.compare-table .compare-img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  background: var(--parchment);
  padding: 8px;
  border-radius: 2px;
}
.compare-modal-footer {
  padding: 20px 36px 28px;
  border-top: 1px solid var(--sand);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .compare-modal-header { padding: 20px 20px 16px; }
  .compare-modal-body   { padding: 16px 20px; }
  .compare-modal-footer { padding: 16px 20px 20px; }
  .compare-table th,
  .compare-table td     { padding: 10px 12px; }
}


/* ============================================================
   WATCH TEXT PLATE — sourcing cards with no image
   A clean editorial header instead of a blank placeholder.
   ============================================================ */

.watch-text-plate {
  background: linear-gradient(160deg, var(--sepia) 0%, var(--forest) 100%);
  padding: 32px 24px 28px;
  margin-bottom: 24px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wtp-brand {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 10px;
}
.wtp-ref {
  font-family: var(--display);
  font-size: 22px;
  color: var(--paper);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
/* Compare button placed inside text plate — bottom-right, pill size only */
.watch-text-plate .compare-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  /* The text-plate is a flex container; absolutely-positioned children still
     participate in align-items:stretch, ballooning the button to fill the
     cross axis. Force the natural pill dimensions. */
  width: auto !important;
  height: auto !important;
  align-self: flex-start;
  display: inline-flex;
  background: rgba(251, 248, 238, 0.15);
  border-color: rgba(251, 248, 238, 0.28);
  color: var(--paper);
}
.watch-text-plate .compare-toggle:hover,
.watch-text-plate .compare-toggle.selected {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--paper);
}


/* ============================================================
   IMAGE BACKGROUND FIX — remove white from PNG product shots
   mix-blend-mode: multiply makes white pixels transparent so
   the parchment card background shows through uniformly.
   ============================================================ */

/* Stock sourcing cards with a specific PNG product image */
.watch.stock.has-specific-img .watch-img-wrap {
  background: var(--parchment);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch.stock.has-specific-img .watch-img-wrap img {
  mix-blend-mode: normal;
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: transparent;
}

/* In-stock cards with photos — clean consistent background */
.watch.has-specific-img .watch-img-wrap {
  background: var(--parchment);
}
.watch.has-specific-img .watch-img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* All image wraps: enforce aspect ratio and no overflow */
.watch-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--parchment);
}


/* ============================================================
   COMPARE TOGGLE — bottom-right overlay inside .watch-img-wrap
   ============================================================ */

.compare-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(242, 237, 229, 0.92);
  border: 1px solid rgba(140, 120, 104, 0.30);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  /* Ensure it sits over the image area */
  pointer-events: auto;
}
.compare-toggle:hover {
  background: rgba(242, 237, 229, 1);
  border-color: var(--sepia);
}
.compare-toggle.selected {
  background: var(--sepia);
  color: var(--paper);
  border-color: var(--sepia);
}
.compare-toggle.selected:hover {
  background: var(--copper);
  border-color: var(--copper);
}


/* ============================================================
   STOCK SOURCING CARD IMAGE BACKGROUNDS — clean, light treatment
   Product shots shown on a soft parchment background without
   any blend-mode tinting so images appear true to color.
   ============================================================ */

/* Stock cards with a specific product photo — parchment background, no dark tint */
.watch.stock.has-specific-img .watch-img-wrap {
  background: linear-gradient(135deg, var(--paper) 0%, var(--parchment) 100%);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.watch.stock.has-specific-img .watch-img-wrap img {
  mix-blend-mode: normal;
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 14px;
  background: transparent;
}

/* Stock cards with brand logo — same soft background */
.watch.stock.has-logo .watch-img-wrap {
  background: var(--paper);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lifestyle/wrist hero shots — no blend mode, let the photo speak */
.watch.stock.has-brand-hero .watch-img-wrap img {
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}

/* Stock-mark text (brand/ref placeholder when truly no image) */
.watch.stock .watch-img-wrap .stock-mark .stock-brand {
}

/* ─── Journal feature articles ────────────────────────────────────────────── */
.journal-features {
  padding: 0;
}
.article-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--sand);
}
.article-feature:last-child { border-bottom: 0; }
.article-feature__img-link {
  display: block;
  overflow: hidden;
}
.article-feature__img {
  width: 100%;
  height: 540px;
  background-size: cover;
  background-position: center;
  background-color: var(--parchment);
  transition: transform 0.7s ease;
}
.article-feature__img-link:hover .article-feature__img {
  transform: scale(1.04);
}
.article-feature__body {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.article-feature--reverse .article-feature__img-link { order: 2; }
.article-feature--reverse .article-feature__body    { order: 1; }
.article-feature .meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.article-feature__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 22px;
}
.article-feature__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.article-feature__title a:hover { color: var(--copper); }
.article-feature__body > p {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--char);
  line-height: 1.85;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .article-feature {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .article-feature__img-link {
    position: relative;
    height: 300px;
  }
  .article-feature--reverse .article-feature__img-link { order: 1; }
  .article-feature--reverse .article-feature__body    { order: 2; }
  .article-feature__body { padding: 44px 28px; }
  .article-feature__title { font-size: 26px; }
}

/* ─── Mobile polish batch 2026-05-26 ─── */

/* Gallery: horizontal scroll strip on mobile */
@media (max-width: 700px) {
  .gallery-thumbs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumbs .thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .gallery .main-img {
    height: 320px;
  }
}

/* Compare tray: mobile-friendly stacked layout */
@media (max-width: 600px) {
  .compare-tray { padding: 10px 0; }
  .compare-tray-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 16px;
  }
  .compare-tray-slots {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-slot {
    flex: 0 0 130px;
    min-width: 130px;
    font-size: 11px;
  }
  .compare-tray-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
  }
  .compare-tray-btn { font-size: 12px; padding: 8px 14px; }
  .compare-modal { padding: 20px 16px; max-width: 100vw; border-radius: 0; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
}

/* Reference number select widget */
.ref-select-wrap { display: flex; flex-direction: column; width: 100%; }
.ref-select-wrap .ref-select { width: 100%; }
.ref-select-wrap .ref-custom { width: 100%; box-sizing: border-box; }

/* Journal: fix image stacking on mobile */
@media (max-width: 900px) {
  .journal-features { padding: 0; }
  .article-feature__img-link { height: 260px; overflow: hidden; }
  .article-feature__img { height: 260px; }
  .article-feature__body { padding: 36px 24px 44px; }
  .article-feature { border-bottom: 1px solid var(--sand); margin-bottom: 0; }
}

/* Recently acquired: limit to 3 on mobile */
@media (max-width: 600px) {
  .sold-strip .sold-item:nth-child(n+4) { display: none; }
}
