/* ── Mears Trading Company ── */
/* Obsidian Elegance — Static Site v1.0 */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@300;400;500;600&family=Jost:wght@200;300;400;500;600&display=swap");

:root {
  --bg: #0c0c0c;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #242424;
  --border: rgba(205, 173, 104, 0.12);
  --border-hover: rgba(205, 173, 104, 0.4);
  --gold: #cdad68;
  --gold-hover: #dfc07b;
  --gold-dim: rgba(205, 173, 104, 0.35);
  --gold-subtle: rgba(205, 173, 104, 0.07);
  --text: #f5f5f5;
  --text-secondary: #9a9a9a;
  --text-muted: #555;
  --success: #3ad17f;
  --error: #df5641;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-nav: "Jost", sans-serif;
  --nav-height: 72px;
  --max-width: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}
/* Atmosphere layer — vignette + warm top wash, fixed behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse 120% 80% at 50% 0%,
      rgba(205, 173, 104, 0.035) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 140% 100% at 50% 100%,
      rgba(0, 0, 0, 0.6) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      #111111 0%,
      #0c0c0c 55%,
      #070707 100%
    );
  pointer-events: none;
}
/* Film-grain noise overlay — fixed, overlay blend, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8  0 0 0 0 0.68  0 0 0 0 0.41  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

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

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  color: #0c0c0c;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, #ebd090 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(205, 173, 104, 0.28);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-1px);
}
.btn-outline:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 10px;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  /* Transparent at top so the hero spotlight bleeds continuously
     from the page corner through the nav area into the hero. */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
nav.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-secondary);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(12, 12, 12, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ── LAYOUT ── */
main {
  padding-top: var(--nav-height);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

/* ── HERO (Reid reference layout) ── */
.hero.hero-split {
  background: #000;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 0;
}

/* ── Spotlight (cinematic, multi-layer, no blur, no grain) ──
 * Three layered asymmetric radial gradients positioned at the same source point
 * (just outside the top-left corner). The elongated ellipse (height 4-6x width)
 * creates the directional beam effect. mix-blend-mode: screen makes it additive,
 * like real light. Inspired by Linear.app and Stripe hero techniques.
 */
.hero.hero-split::before {
  content: "";
  position: absolute;
  /* Extend upward past the fixed navbar so the spotlight visually originates
     from the page corner — light flows through the now-transparent navbar
     into the hero, no abrupt clip. */
  top: calc(-1 * var(--nav-height));
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background:
    /* Layer 1 — bright source core, near top-left corner */
    radial-gradient(
      ellipse 80px 260px at 6% 2%,
      rgba(255, 240, 210, 0.5) 0%,
      rgba(255, 235, 195, 0.2) 35%,
      transparent 70%
    ),
    /* Layer 2 — beam, elongated falloff */
    radial-gradient(
        ellipse 200px 900px at 7% 2%,
        rgba(255, 230, 180, 0.18) 0%,
        rgba(255, 220, 160, 0.07) 40%,
        transparent 65%
      ),
    /* Layer 3 — ambient atmospheric wash */
    radial-gradient(
        ellipse 760px 1400px at 8% 2%,
        rgba(255, 215, 145, 0.06) 0%,
        transparent 70%
      );
  mix-blend-mode: screen;
}

/* Subtle vignette on right edge to focus eye toward watch */
.hero.hero-split::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.18) 0%, transparent 22%);
}

.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 540px;
  position: relative;
  z-index: 2;
}

.hero-split .hero-text {
  padding: 56px clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-split .hero-monogram {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split .hero-monogram img,
.hero-split .hero-monogram img[data-role="logo"] {
  display: block;
  height: 92px !important;
  width: auto !important;
  max-width: 92px !important;
  max-height: 92px !important;
  object-fit: contain;
}

.hero-split .hero-eyebrow {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0.94;
  display: block;
}

.hero-split .hero-h1 {
  font-size: clamp(44px, 6.2vw, 88px);
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.04;
  color: var(--text);
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  margin: 0 0 24px 0;
}

.hero-split .hero-rule {
  width: 280px;
  max-width: 80%;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.hero-split .hero-tagline {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--text);
  margin: 0 0 32px 0;
  text-transform: uppercase;
}

.hero-split .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-split .hero-cta {
  min-width: 180px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  border-radius: 2px;
}

.hero-split .hero-image {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero-split .hero-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* Mid sizes — keep 2-col, ratio 58/42 like reference */
@media (max-width: 1024px) {
  .hero-split .hero-inner {
    grid-template-columns: 58% 42%;
    min-height: 480px;
  }
  .hero-split .hero-image {
    min-height: 480px;
  }
  .hero-split .hero-text {
    padding: 40px 24px;
  }
  .hero-split .hero-h1 {
    font-size: clamp(36px, 5.5vw, 64px);
  }
  .hero-split .hero-monogram {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
  }
  .hero-split .hero-monogram img,
  .hero-split .hero-monogram img[data-role="logo"] {
    height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
  }
}

/* Narrow tablet — keep 2-col, tighter */
@media (max-width: 720px) {
  .hero-split .hero-inner {
    grid-template-columns: 58% 42%;
    min-height: 380px;
  }
  .hero-split .hero-image {
    min-height: 380px;
  }
  .hero-split .hero-text {
    padding: 28px 14px;
  }
  .hero-split .hero-h1 {
    font-size: clamp(26px, 5.6vw, 40px);
    margin-bottom: 14px;
  }
  .hero-split .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.34em;
    margin-bottom: 18px;
  }
  .hero-split .hero-rule {
    width: 160px;
    margin-bottom: 12px;
  }
  .hero-split .hero-tagline {
    font-size: 10px;
    letter-spacing: 0.36em;
    margin-bottom: 20px;
  }
  .hero-split .hero-ctas {
    gap: 8px;
  }
  .hero-split .hero-cta {
    min-width: 0;
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .hero-split .hero-monogram {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  .hero-split .hero-monogram img,
  .hero-split .hero-monogram img[data-role="logo"] {
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }
}

/* Mobile — stack vertically, image on top, full-width CTAs */
@media (max-width: 600px) {
  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-split .hero-text {
    padding: 36px 22px 48px;
    align-items: center;
    text-align: center;
  }
  .hero-split .hero-image {
    order: -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .hero-split .hero-image img {
    object-position: center center;
  }
  .hero-split .hero-monogram {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
  }
  .hero-split .hero-monogram img,
  .hero-split .hero-monogram img[data-role="logo"] {
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
  }
  .hero-split .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 22px;
  }
  .hero-split .hero-h1 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .hero-split .hero-rule {
    width: 200px;
    margin: 0 auto 14px;
  }
  .hero-split .hero-tagline {
    font-size: 11px;
    letter-spacing: 0.42em;
    margin-bottom: 26px;
  }
  /* Stack CTAs vertically on phone — full-width each, no wrap */
  .hero-split .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 10px;
  }
  .hero-split .hero-cta {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}

/* On mobile the spotlight should originate from the actual page corner
 * (not project up past a navbar that's no longer extending beyond the
 * stacked image). Reposition for the new layout. */
@media (max-width: 600px) {
  .hero.hero-split::before {
    top: 0;
    background:
      radial-gradient(
        ellipse 60px 200px at 8% -2%,
        rgba(255, 240, 210, 0.4) 0%,
        rgba(255, 235, 195, 0.16) 35%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 160px 600px at 9% -2%,
        rgba(255, 230, 180, 0.14) 0%,
        rgba(255, 220, 160, 0.05) 40%,
        transparent 65%
      ),
      radial-gradient(
        ellipse 480px 900px at 10% -2%,
        rgba(255, 215, 145, 0.05) 0%,
        transparent 70%
      );
  }
}

/* ── INVENTORY ── */
.inventory-section {
  background: transparent;
}

.inventory-empty {
  text-align: center;
  padding: 72px 20px;
}
.inventory-empty h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 12px;
}
.inventory-empty p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Single watch — hero layout */
.inventory-single {
  max-width: 860px;
  margin: 0 auto;
}
.watch-card-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.watch-card-hero:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.65);
}
.watch-card-hero .wc-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
}
.watch-card-hero .wc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.watch-card-hero:hover .wc-image img {
  transform: scale(1.04);
}
.watch-card-hero .wc-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pair layout */
.inventory-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.watch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.watch-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}
.watch-card .wc-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
}
.watch-card .wc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.watch-card:hover .wc-image img {
  transform: scale(1.04);
}
.watch-card .wc-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Recently Sold */
.sold-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.sold-card .wc-image {
  position: relative;
}
.sold-card .wc-image img {
  filter: grayscale(30%) brightness(0.75);
}
.sold-card:hover .wc-image img {
  transform: none;
}
.sold-card:hover {
  transform: none;
  box-shadow: none;
}
.sold-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.sold-card .wc-info {
  padding: 18px;
}
@media (max-width: 960px) {
  .sold-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .sold-grid {
    grid-template-columns: 1fr;
  }
}

/* Watch card shared info */
.wc-brand {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wc-model {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 4px;
}
.wc-ref {
  font-family: var(--font-nav);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.wc-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.meta-chip {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 12px;
  font-family: var(--font-nav);
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}
.wc-price {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gold);
  margin-top: auto;
  margin-bottom: 20px;
}
.wc-price.por {
  font-style: italic;
  font-size: 18px;
  color: var(--text-secondary);
}
.wc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── WATCH DETAIL ── */
.watch-detail {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.watch-breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px 0;
  font-family: var(--font-nav);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.watch-breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}
.watch-breadcrumb a:hover {
  color: var(--gold);
}
.watch-breadcrumb span {
  color: var(--text-secondary);
}

.watch-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.gallery-main {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 10px;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-info-panel {
  padding-top: 4px;
}
.watch-info-panel .eyebrow {
  margin-bottom: 12px;
  display: block;
}
.watch-info-panel h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.watch-ref-year {
  font-family: var(--font-nav);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.watch-detail-price {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 28px;
}
.watch-detail-price.por {
  font-style: italic;
  font-size: 26px;
  color: var(--text-secondary);
}
.watch-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.specs-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.spec-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 14px 16px;
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.spec-value {
  font-size: 14px;
  color: var(--text);
  padding: 14px 16px;
  background: var(--surface);
  display: flex;
  align-items: center;
}

.watch-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.auth-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── TRUST SIGNALS ── */
.trust-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.trust-item .trust-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.trust-item h4 {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.trust-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FEATURE SPLIT ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.feature-split-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
}
.feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-split-content {
  padding: 64px 56px;
}
.feature-split-content h2 {
  font-size: clamp(24px, 3vw, 42px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-split-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.cta-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TESTIMONIALS ── */
.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
}
.rating-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.rating-text {
  color: var(--text-secondary);
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.testimonial-cta {
  text-align: center;
  margin-top: 32px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
}
.testimonial-text {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-text::before {
  content: "\201C";
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── FORMS ── */
.form-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 96px;
}
.form-page-header {
  margin-bottom: 48px;
}
.form-page-header .eyebrow {
  margin-bottom: 14px;
  display: block;
}
.form-page-header h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.form-page-header p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

input,
textarea,
select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-dim);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(205, 173, 104, 0.07);
}
textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
select option {
  background: var(--surface-2);
  color: var(--text);
}

.form-submit {
  margin-top: 32px;
}

.form-success {
  display: none;
  background: rgba(58, 209, 127, 0.07);
  border: 1px solid rgba(58, 209, 127, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}
.form-success h3 {
  color: var(--success);
  margin-bottom: 8px;
  font-size: 20px;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.contact-sidebar h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.contact-sidebar > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.contact-detail {
  margin-bottom: 28px;
}
.contact-detail .cd-label {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.contact-detail .cd-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.contact-detail a.cd-value {
  transition: var(--transition);
}
.contact-detail a.cd-value:hover {
  color: var(--gold);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.page-header .eyebrow {
  margin-bottom: 14px;
  display: block;
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.page-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
}

/* ── SKELETON LOADER ── */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skeleton {
  background: linear-gradient(
    90deg,
    var(--surface) 25%,
    var(--surface-2) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease infinite;
  border-radius: var(--radius);
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.footer-logo img {
  height: 34px;
  width: auto;
  margin-bottom: 14px;
}
.footer-logo p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 220px;
}
.footer-nav h5,
.footer-contact h5 {
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav ul a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-nav ul a:hover {
  color: var(--gold);
}
.footer-contact p,
.footer-contact a {
  font-size: 13px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
  line-height: 1.5;
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-nav);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── LOGO SWITCHER ── */
#logo-switcher {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 2000;
  font-family: var(--font-nav);
}
.ls-trigger {
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.ls-trigger:hover {
  border-color: var(--gold-dim);
  background: rgba(205, 173, 104, 0.06);
}
.ls-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: rgba(17, 17, 17, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  width: 296px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.85);
}
.ls-panel.open {
  display: grid;
}
.ls-header {
  grid-column: 1 / -1;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.ls-option {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 8px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.ls-option:hover {
  border-color: var(--gold-dim);
  background: var(--surface-3);
}
.ls-option.active {
  border-color: var(--gold);
  background: var(--gold-subtle);
}
.ls-option img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}
.ls-option span {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}
.ls-option.active span {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root {
    --nav-height: 64px;
  }
  .container {
    padding: 0 24px;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 24px;
    min-height: 90vh;
    min-height: 90dvh;
  }
  .hero-logo img {
    height: 68px;
  }

  .watch-card-hero {
    grid-template-columns: 1fr;
  }
  .watch-card-hero .wc-image {
    aspect-ratio: 16/9;
  }
  .watch-card-hero .wc-info {
    padding: 28px 24px;
  }

  .inventory-pair {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .watch-detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 72px;
  }
  .watch-gallery {
    position: static;
  }
  .watch-breadcrumb {
    padding: 16px 24px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 360px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-split-image {
    aspect-ratio: 16/9;
  }
  .feature-split-content {
    padding: 40px 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 72px;
  }
  .form-page {
    padding: 48px 24px 72px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .watch-detail-actions {
    flex-direction: column;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  #logo-switcher {
    bottom: 16px;
    left: 16px;
  }
}

/* ══════════════════════════════════════
   Gallery counter + zoom hint (product page)
   ══════════════════════════════════════ */
.gallery-main {
  position: relative;
  cursor: zoom-in;
}
.gallery-main video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #000;
}
.gallery-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(14, 14, 15, 0.78);
  color: var(--text);
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.28em;
  padding: 6px 10px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 2px;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 14, 15, 0.65);
  color: var(--text-secondary);
  font-family: var(--font-nav);
  font-size: 9px;
  letter-spacing: 0.26em;
  padding: 6px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms var(--ease, ease);
}
.gallery-main:hover .gallery-zoom-hint {
  opacity: 1;
}
.thumb-video-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(14, 14, 15, 0.85);
  color: var(--gold);
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
}
.gallery-thumb {
  position: relative;
}

/* ══════════════════════════════════════
   Lightbox
   ══════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 9, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFade 200ms ease-out;
}
@keyframes lbFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox-stage {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img,
.lightbox-stage video {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(14, 14, 15, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--text);
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 169, 97, 0.18);
  border-color: var(--gold);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  font-family: var(--font-heading, serif);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 14, 15, 0.78);
  color: var(--text);
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.3em;
  padding: 8px 14px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 2px;
  text-transform: uppercase;
}
@media (max-width: 520px) {
  .lightbox-prev {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .lightbox-next {
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .lightbox-counter {
    bottom: 16px;
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* ══════════════════════════════════════
   Sell explainer (3-step)
   ══════════════════════════════════════ */
.sell-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 40px auto 0;
}
.sell-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface, #17171a);
  border: 1px solid var(--border, #2a2a30);
  border-radius: var(--radius-lg, 10px);
  position: relative;
}
.sell-step-roman {
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  font-size: 44px;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
  font-style: italic;
}
.sell-step-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 auto 18px;
}
.sell-step h4 {
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.sell-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .sell-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   Card title descriptor + dual-angle thumbs
   ══════════════════════════════════════ */
.wc-title-descriptor {
  display: inline;
  color: var(--text-secondary);
  font-family: var(--font-heading, serif);
  font-weight: 400;
  font-style: italic;
  font-size: 0.82em;
  margin-left: 8px;
  letter-spacing: 0;
}
.wc-image-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}
.wc-image-dual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════
   Process grid (Sell / Source page explainer)
   ══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}
.process-step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════
   Form grid — stack earlier than layout
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Testimonial grid — 3 → 2 → 1 progression
   ══════════════════════════════════════ */
@media (max-width: 960px) and (min-width: 561px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   Gallery thumbs — reflow to 2-col on small phones
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ══════════════════════════════════════
   Lightbox counter — mobile reposition (top-left)
   avoids home-indicator overlap on iOS
   ══════════════════════════════════════ */
@media (max-width: 520px) {
  .lightbox-counter {
    bottom: auto;
    top: 18px;
    left: 18px;
    transform: none;
    font-size: 10px;
    padding: 6px 10px;
  }
}

/* ══════════════════════════════════════
   Hamburger — open state X animation
   ══════════════════════════════════════ */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--gold);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--gold);
}

/* ══════════════════════════════════════
   Focus rings — keyboard-only, gold accent
   ══════════════════════════════════════ */
:focus:not(:focus-visible) {
  outline: none;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 173, 104, 0.2);
}
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.footer-nav a:focus-visible,
.footer-contact a:focus-visible,
.watch-breadcrumb a:focus-visible,
.contact-detail a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-hamburger:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible,
.gallery-main:focus-visible,
.gallery-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   Label contrast — bump from 10px → 11px, tighten letterspace
   ══════════════════════════════════════ */
label {
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
}
