/* =============================================================
   THE 1916 COMPANY — PREMIUM WEBSITE
   main.css
   Stack: Vanilla CSS + GSAP (no frameworks)
   Typography: Cormorant Garamond / Inter
   Color system: Dark-dominant luxury palette
============================================================= */

/* ──────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
────────────────────────────────────────── */
:root {
  /* Colors */
  --color-black:        #0A0A0A;
  --color-off-black:    #111111;  /* section alternating dark bg */
  --color-dark:         #111118;
  --color-charcoal:     #1E1E28;
  --color-cream:        #F7F4EF;
  --color-ivory:        #EDE8DE;
  --color-gold:         #B89728;
  --color-gold-light:   #D4AE3A;
  --color-gold-dim:     rgba(184, 151, 40, 0.15);
  --color-text-dark:    #1A1A1A;
  --color-text-light:   #E8E3D9;
  --color-text-muted:   #c4bfb8;  /* high-contrast on dark backgrounds */
  --color-text-muted-light: rgba(232, 227, 217, 0.85); /* clear on dark sections */
  --color-border:       rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(26, 26, 26, 0.1);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;
  --space-2xl: 12rem;

  /* Layout */
  --container:  1280px;
  --container-md: 960px;
  --nav-height: 72px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  --duration-fast: 0.25s;
  --duration-base: 0.4s;
  --duration-slow: 0.65s;
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* needed on iOS where body overflow-x:hidden alone doesn't prevent scroll */
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Dark background for all native select dropdowns site-wide */
select {
  background-color: #111111;
  color: #e8e3d9;
}
select option,
select option:checked {
  background-color: #111111;
  color: #e8e3d9;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ──────────────────────────────────────────
   3. LAYOUT UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.break-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .break-desktop {
    display: block;
  }
}

/* ──────────────────────────────────────────
   4. TYPOGRAPHY
────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Used across dark-bg pages as the gold eyebrow above section titles */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.section-eyebrow--gold {
  color: var(--color-gold);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-cream); /* site is dark-dominant; use explicit color */
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-gold);
}

.section-title--light {
  color: var(--color-text-light);
}

.section-title--dark {
  color: var(--color-text-dark);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.section-header .section-eyebrow {
  width: 100%;
  margin-bottom: 0.5rem;
}

.section-header .section-title {
  margin-bottom: 0;
}

.section-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-text-muted);
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
  align-self: flex-end;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ──────────────────────────────────────────
   5. BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--color-black);
  color: var(--color-cream);
  border-color: var(--color-black);
}

.btn--primary:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-black);
  border-color: rgba(26, 26, 26, 0.35);
}

.btn--ghost:hover {
  background-color: var(--color-black);
  color: var(--color-cream);
  border-color: var(--color-black);
}

.btn--ghost-light {
  color: var(--color-cream);
  border-color: rgba(232, 227, 217, 0.35);
}

.btn--ghost-light:hover {
  background-color: var(--color-cream);
  color: var(--color-black);
  border-color: var(--color-cream);
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.btn--outline:hover {
  background-color: var(--color-text-dark);
  color: var(--color-cream);
}

.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: 0.8125rem;
}

/* ──────────────────────────────────────────
   6. NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: rgba(5, 5, 5, 0.92);
  transition:
    background-color var(--duration-base) var(--ease-out),
    backdrop-filter var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.nav.is-scrolled {
  background-color: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 2rem;
}

.nav__logo   { justify-self: start; }
.nav__links  { justify-self: center; }
.nav__actions { justify-self: end; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-cream);
  text-decoration: none;
  flex-shrink: 0;
  min-width: max-content;
}

/* Actual logo image in nav */
.nav__logo-img {
  height: 60px;
  width: auto;
  min-width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: brightness(1.12) contrast(1.08);
}

/* Phone link in nav */
.nav__phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(232, 227, 217, 0.85);
  transition: color var(--duration-fast);
  text-decoration: none;
}

.nav__phone:hover { color: var(--color-cream); }

.nav__phone-text { white-space: nowrap; }

@media (min-width: 1100px) {
  .nav__phone { display: flex; }
}

/* SMS / Text link in nav */
.nav__sms {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(232, 227, 217, 0.65);
  transition: color var(--duration-fast);
  text-decoration: none;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(232, 227, 217, 0.2);
  margin-left: 0.25rem;
}

.nav__sms:hover { color: var(--color-cream); }

@media (min-width: 1100px) {
  .nav__sms { display: flex; }
}

/* SMS link in mobile menu */
.mobile-menu__sms {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(232, 227, 217, 0.35);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.mobile-menu__sms:hover { color: var(--color-cream); }

/* Appointment CTA in nav */
.nav__appt {
  display: none;
  font-size: 0.5625rem;
  padding: 0.5rem 1.125rem;
}

@media (min-width: 1180px) {
  .nav__appt { display: inline-flex; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

/* iPad Pro portrait (1024–1150px): tighten nav so all 8 links fit without overflow */
@media (min-width: 1024px) and (max-width: 1150px) {
  .nav__inner {
    padding-inline: 1.25rem;
    column-gap: 1rem;
  }
  .nav__links { gap: 0.875rem; }
}

.nav__link {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 227, 217, 0.75);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--accent {
  color: var(--color-gold);
}

.nav__link--accent:hover {
  color: var(--color-gold-light);
}

.nav__link--active {
  color: var(--color-gold);
  opacity: 1;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__search,
.nav__account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(232, 227, 217, 0.75);
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__search:hover,
.nav__account:hover {
  color: var(--color-cream);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  color: var(--color-cream);
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}

@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: var(--space-lg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

.mobile-menu__close:hover {
  color: var(--color-cream);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: rgba(232, 227, 217, 0.9);
  transition: color var(--duration-fast);
  letter-spacing: -0.02em;
}

.mobile-menu__link:hover {
  color: var(--color-cream);
}

/* ──────────────────────────────────────────
   7. HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero__parallax-bg {
  position: absolute;
  inset: -20%;
  will-change: transform;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 1;
}

.hero__video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 50%, #0d0d18 100%);
  /* Replaced by <video> once hero-watch.mp4 is provided */
}

/* ── Hero video (active once file is added) ── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Video sits below the overlay (.hero__bg-overlay handles the dark tint) */
}

/* ── 3D watch float (right side, Nano Banana asset) ── */
.hero__watch-3d {
  position: absolute;
  right: -4%;
  bottom: -2%;
  width: clamp(320px, 45vw, 680px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  /* Subtle depth: watch floats above the video, below the copy */
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
  will-change: transform;
}

@media (max-width: 768px) {
  .hero__watch-3d {
    /* On mobile: push watch to bottom-right corner, smaller */
    width: clamp(200px, 55vw, 320px);
    right: -8%;
    bottom: 5%;
    opacity: 0.35;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  padding-top: var(--nav-height);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__headline {
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  max-width: 14ch;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subhead {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  color: rgba(232, 227, 217, 0.88);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 44ch;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(232, 227, 217, 0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 227, 217, 0.4);
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ──────────────────────────────────────────
   8. TRUST BAR
────────────────────────────────────────── */
.trust-bar {
  background-color: var(--color-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.trust-bar__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.trust-bar__label {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .trust-bar__divider {
    display: none;
  }
  .trust-bar__grid {
    gap: 1.5rem 3rem;
  }
}

/* ──────────────────────────────────────────
   9. BRAND SELECTOR
────────────────────────────────────────── */
.brands {
  padding: var(--space-xl) 0;
  background-color: var(--color-cream);
}

.brands .section-eyebrow {
  color: #6b6560;
}

.brands .section-title {
  color: var(--color-text-dark);
}

.brands .section-link {
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.brands .section-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.brands__track-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px clamp(1.5rem, 5vw, 4rem) 10px;
  margin-top: 2rem;
  cursor: grab;
}

.brands__track-wrapper:active {
  cursor: grabbing;
}

.brands__track-wrapper::-webkit-scrollbar {
  display: none;
}

.brands__track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border: 1px solid var(--color-border-light);
  min-width: 160px;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.brand-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.brand-card__image {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__image img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.75;
  transition: filter var(--duration-fast), opacity var(--duration-fast);
}

.brand-card:hover .brand-card__image img {
  filter: grayscale(0);
  opacity: 1;
}

.brand-card__name {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  transition: color var(--duration-fast);
}

.brand-card:hover .brand-card__name {
  color: var(--color-gold);
}

/* ──────────────────────────────────────────
   10. FEATURED WATCHES GRID
────────────────────────────────────────── */
.featured {
  padding: var(--space-xl) 0;
  background-color: var(--color-ivory);
}

.featured .section-eyebrow {
  color: #6b6560;
}

.featured .section-title {
  color: var(--color-text-dark);
}

.featured .section-link {
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.featured .section-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.watches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .watches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .watches-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .watches-grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.watch-card {
  background-color: #fff;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.watch-card__image-link {
  display: block;
  flex-shrink: 0;
}

.watch-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  background-color: #fff;
  overflow: hidden;
}

.watch-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition: transform var(--duration-slow) var(--ease-out);
}

.watch-card:hover .watch-card__image-wrap img {
  transform: scale(1.04);
}

.watch-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.watch-card:hover .watch-card__overlay {
  opacity: 1;
}

.watch-card__cta {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  border-bottom: 1px solid rgba(232, 227, 217, 0.5);
  padding-bottom: 2px;
}

.watch-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.watch-card__brand {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
  flex-shrink: 0;
}

.watch-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0.375rem;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}

.watch-card__name a {
  transition: color var(--duration-fast);
}

.watch-card__name a:hover {
  color: var(--color-gold);
}

.watch-card__ref {
  font-size: 0.6875rem;
  color: #5a5550;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  padding-bottom: 0.5rem;
}

.watch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
  margin-top: auto;
  flex-shrink: 0;
}

.watch-card__median {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
  margin-bottom: 0.125rem;
}

.watch-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-dark);
}

.watch-card__price--por {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.watch-card__condition {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5550;
  background-color: #ede9e2;
  padding: 0.25rem 0.625rem;
}


/* ──────────────────────────────────────────
   11. SELL & TRADE SECTION
────────────────────────────────────────── */
.sell-section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  background-color: var(--color-black);
}

.sell-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184, 151, 40, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.sell-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .sell-section__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.sell-section__text {
  position: relative;
  z-index: 1;
}

.sell-section__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted-light);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.sell-section__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.sell-section__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(232, 227, 217, 0.75);
  letter-spacing: 0.02em;
}

.sell-section__features li svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.sell-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sell-section__image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(184, 151, 40, 0.05) 0%, rgba(30, 30, 40, 0.8) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Trade Exchange Animation ── */
.trade-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  width: 100%;
}

.trade-anim__piece {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trade-anim__piece--watch {
  animation: tradeWatchFloat 3.8s ease-in-out infinite;
}

.trade-anim__watch-svg {
  width: 150px;
  filter: drop-shadow(0 0 24px rgba(184,151,40,0.25)) drop-shadow(0 16px 32px rgba(0,0,0,0.55));
}

.trade-anim__piece--money {
  animation: tradeMoneyFloat 3.8s ease-in-out infinite 1.9s;
}

.trade-anim__money-svg {
  width: 155px;
  filter: drop-shadow(0 0 16px rgba(184,151,40,0.18)) drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.trade-anim__label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184,151,40,0.55);
  margin: 0;
  text-align: center;
}

.trade-anim__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.trade-anim__arrows-svg {
  width: 34px;
  animation: arrowsPulse 2.2s ease-in-out infinite;
}

.trade-anim__arrows-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184,151,40,0.38);
  margin: 0;
}

/* Trade second hand rotates around watch face center (90, 152) in SVG coords */
.trade-second-hand {
  transform: translate(90px, 152px);
  animation: sweepSecondTrade 10s linear infinite;
}

@keyframes tradeWatchFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-14px) rotate(-4deg); }
}

@keyframes tradeMoneyFloat {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%       { transform: translateY(-14px) rotate(3deg); }
}

@keyframes arrowsPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

@keyframes sweepSecondTrade {
  from { transform: translate(90px, 152px) rotate(0deg); }
  to   { transform: translate(90px, 152px) rotate(360deg); }
}

/* ──────────────────────────────────────────
   12. BRAND STORY
────────────────────────────────────────── */
.story {
  padding: var(--space-xl) 0;
  background-color: var(--color-cream);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.story .section-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-weight: 600;
}

.story__left {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.story__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.story__quote {
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.story__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.story__quote cite {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
}

.story__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story__milestone {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.story__milestone:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 39px;
  width: 1px;
  height: calc(100% - 1.5rem);
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.story__year {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.4;
  text-align: right;
}

.story__milestone-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.story__milestone-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.6);
}

/* ──────────────────────────────────────────
   13. COLLECTOR'S LOUNGE
────────────────────────────────────────── */
.lounge {
  background-color: var(--color-dark);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.lounge__info-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .lounge__info-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lounge__info-card {
  background-color: #111116;
  border: 1px solid rgba(184,151,40,0.12);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--duration-fast);
}

.lounge__info-card:hover {
  border-color: rgba(184,151,40,0.35);
}

.lounge__info-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.lounge__info-value {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(232,227,217,0.82);
  margin: 0;
}

.lounge__info-link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(232,227,217,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast);
}

.lounge__info-link:hover {
  color: var(--color-gold);
}

.lounge__content {
  max-width: 640px;
}

.lounge__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted-light);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.lounge__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.lounge__location-item {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 0.375rem 0.875rem;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.lounge__location-item:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ──────────────────────────────────────────
   14. JOURNAL
────────────────────────────────────────── */
.journal {
  padding: var(--space-xl) 0;
  background-color: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Scoped overrides for dark journal section */
.journal .section-title { color: var(--color-cream); }
.journal .section-link  { color: var(--color-gold); border-bottom-color: rgba(184,151,40,0.35); }

.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .journal-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
  }
}

.journal-card__image-link {
  display: block;
  overflow: hidden;
}

.journal-card__image-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.journal-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.journal-card:hover .journal-card__image-wrap img {
  transform: scale(1.04);
}

.journal-card__image-wrap--small {
  aspect-ratio: 16/9;
}

.journal-card__content {
  padding-top: 1.25rem;
}

.journal-card__tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.625rem;
}

.journal-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.journal-card--small .journal-card__title {
  font-size: 1.125rem;
}

.journal-card__title a {
  transition: color var(--duration-fast);
}

.journal-card__title a:hover {
  color: var(--color-gold);
}

.journal-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(232, 227, 217, 0.68);
  margin-bottom: 0.75rem;
  max-width: 52ch;
}

.journal-card__meta {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.journal-secondary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

/* ──────────────────────────────────────────
   15. NEWSLETTER
────────────────────────────────────────── */
.newsletter {
  padding: var(--space-lg) 0;
  background-color: var(--color-ivory);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .newsletter__inner {
    justify-content: space-between;
  }
}

.newsletter__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  margin-bottom: 0.375rem;
}

.newsletter__sub {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.6);
  max-width: 44ch;
}

.newsletter__form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}

.newsletter__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(26, 26, 26, 0.2);
  background-color: #fff;
  color: var(--color-text-dark);
  outline: none;
  transition: border-color var(--duration-fast);
  min-width: 0;
}

.newsletter__input:focus {
  border-color: var(--color-gold);
}

.newsletter__input::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.newsletter__submit {
  border-radius: 0;
  flex-shrink: 0;
}

.newsletter__privacy {
  width: 100%;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-top: -1rem;
}

/* ──────────────────────────────────────────
   16. FINAL CTA
────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: var(--space-2xl) 0;
  background-color: var(--color-black);
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 151, 40, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__headline {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.final-cta__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.final-cta__sub {
  font-size: 1rem;
  color: rgba(232, 227, 217, 0.78);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.final-cta__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────
   17. FOOTER
────────────────────────────────────────── */
.footer {
  background-color: var(--color-dark);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

/* Contact links in footer */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.footer__contact-link {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(232, 227, 217, 0.90);
  transition: color var(--duration-fast);
  text-decoration: none;
}

.footer__contact-link:hover { color: var(--color-cream); }

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(232, 227, 217, 0.82);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer__social-label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 151, 40, 0.55);
  margin-bottom: 0.25rem;
}

.footer__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 227, 217, 0.55);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer__ig-link:hover {
  color: var(--color-gold);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition:
    color var(--duration-fast),
    border-color var(--duration-fast);
}

.footer__social-link:hover {
  color: var(--color-cream);
  border-color: rgba(232, 227, 217, 0.3);
}

.footer__nav-heading {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-col a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(232, 227, 217, 0.80);
  transition: color var(--duration-fast);
}

.footer__nav-col a:hover {
  color: var(--color-cream);
}

/* footer__col — used on inner pages (contact, sell-trade, repair, etc.) */
.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(232, 227, 217, 0.80);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-fast, 0.15s);
}

.footer__link:hover {
  color: var(--color-cream);
}

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer__press {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__press-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__press-logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(232, 227, 217, 0.25);
  transition: color var(--duration-fast);
  cursor: default;
}

.footer__press-logo:hover {
  color: rgba(232, 227, 217, 0.5);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.footer__legal nav {
  display: flex;
  gap: 1.5rem;
}

.footer__legal nav a {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
}

.footer__legal nav a:hover {
  color: var(--color-cream);
}

/* ──────────────────────────────────────────
   18. SCROLL ANIMATION BASE STATES
   (GSAP will control the reveal)
────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  will-change: transform, opacity;
}

/* Line draw animation for section dividers */
.line-draw {
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  will-change: width;
}

/* ──────────────────────────────────────────
   19. CUSTOM CURSOR (desktop only)
────────────────────────────────────────── */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a, button, [role="button"] {
    cursor: none;
  }

  input, select, textarea, label {
    cursor: none;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .cursor__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cream);
    border-radius: 50%;
    position: absolute;
    will-change: transform;
  }

  .cursor__ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 227, 217, 0.5);
    border-radius: 50%;
    position: absolute;
    will-change: transform;
    transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out);
  }

  body.cursor-hover .cursor__dot {
    transform: scale(2);
  }

  body.cursor-hover .cursor__ring {
    width: 56px;
    height: 56px;
  }
}

/* ──────────────────────────────────────────
   20. WHY US GRID
────────────────────────────────────────── */
.why-us {
  padding: var(--space-xl) 0;
  background-color: var(--color-cream);
}

.why-us .section-eyebrow {
  font-size: 0.8125rem;
  color: var(--color-gold);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border-light);
  border: 1px solid var(--color-border-light);
}

@media (min-width: 640px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── REVIEWS / TESTIMONIALS ────────────────────────────────────── */
.reviews {
  background: var(--color-off-black);
  padding: var(--space-xl) 0;
}

.reviews__cred-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reviews__cred-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.reviews__cred-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.reviews__cred-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.reviews__cred-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.1;
}

.reviews__cred-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--color-off-black);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.2s;
}

.review-card:hover { background: #161616; }

.review-card__stars {
  display: flex;
  gap: 0.25rem;
  color: #f4b942;
}

.review-card__quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.65;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.review-card__author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.04em;
}

.review-card__location {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.review-card__platform {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.reviews__footer {
  text-align: center;
}

.reviews__all-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,40,0.3);
  padding-bottom: 0.125rem;
  transition: border-color 0.2s, color 0.2s;
}

.reviews__all-link:hover {
  color: var(--color-cream);
  border-color: rgba(232,227,217,0.4);
}

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__cred-divider { display: none; }
}

@media (min-width: 640px) and (max-width: 900px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Escrow hook section: stack on mobile */
@media (max-width: 768px) {
  .escrow-hook { grid-template-columns: 1fr !important; }
  .escrow-hook__steps { min-width: 0 !important; flex-direction: row !important; flex-wrap: wrap; }
}

.why-card {
  background: var(--color-cream);
  padding: 2rem 2rem 2.25rem;
  transition: background var(--duration-fast);
}

.why-card:hover { background: #fff; }

.why-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-dim);
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.why-card__body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.78);
}

/* ──────────────────────────────────────────
   21. FOOTER LOCATION BAR + MOBILE MENU FOOTER
────────────────────────────────────────── */
.footer__locations-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(184, 151, 40, 0.25);
  padding: 0.3rem 0.75rem;
}

.footer__location-pill svg { color: var(--color-gold); }

.footer__location-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Mobile menu footer contact */
.mobile-menu__footer {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.mobile-menu__phone,
.mobile-menu__email {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(232, 227, 217, 0.45);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover { color: var(--color-cream); }

/* ── MEMBER SIGN-IN BUTTON (nav) ────────────────────────────── */
.nav__member {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.55);
  text-decoration: none;
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav__member:hover {
  color: var(--color-gold, #b89728);
  border-color: rgba(184, 151, 40, 0.35);
}
.nav__member--active {
  color: var(--color-gold, #b89728);
  border-color: rgba(184, 151, 40, 0.3);
}
/* Tablet (641–1099px): member button = compact person icon, no text, no border */
@media (max-width: 1099px) {
  .nav__member {
    padding: 0;
    border: none;
    width: 36px;
    height: 36px;
    justify-content: center;
    gap: 0;
  }
  .nav__member span { display: none; }
}

/* ============================================================
   MOBILE — comprehensive responsive overrides
   Covers iPhone SE (375px) through large Android (480px).
   All values tested at 375px, 390px, 414px, 430px viewports.
============================================================ */

/* ── Reduce nav height on mobile so sticky bars don't eat viewport ── */
@media (max-width: 640px) {
  :root { --nav-height: 60px; }
  .nav { height: 60px; }
}

/* ── Nav: larger touch targets on mobile ── */
@media (max-width: 1023px) {
  .nav__inner { padding-inline: 1.25rem; }

  .nav__hamburger {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  .nav__search,
  .nav__account {
    width: 44px;
    height: 44px;
  }
}

/* ── Nav: shrink logo + tighten actions so the whole banner fits any phone ── */
@media (max-width: 640px) {
  /* Grid: cap the logo column so it can never overflow the nav,
     regardless of how wide the logo image actually is */
  .nav__inner {
    grid-template-columns: minmax(0, 140px) 1fr auto;
    column-gap: 0.5rem;
  }

  /* Logo: smaller height, capped width, stays within its grid cell */
  .nav__logo { overflow: hidden; min-width: 0; }
  .nav__logo-img { height: 42px !important; width: auto; max-width: 140px; }

  /* Tighter gap between action icons */
  .nav__actions { gap: 0.375rem; }

  /* Hide the search icon on mobile — search lives on the watches page */
  .nav__search { display: none; }

  /* Wishlist: hide on mobile — keep only cart (shows badge) + hamburger */
  .nav__wishlist-btn { display: none; }

  /* Cart: compact 36×36 touch target */
  .nav__cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    position: relative;
    color: rgba(232,227,217,0.75);
    text-decoration: none;
    flex-shrink: 0;
  }

  /* Hamburger: compact */
  .nav__hamburger {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  /* My Account button: hide on phones — it lives in the hamburger menu already */
  .nav__member { display: none !important; }
}

/* ── Mobile menu: clean boxed-link design ── */
@media (max-width: 1023px) {

  /* Full-screen panel, left-aligned, scrollable */
  .mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 0 2rem;
    gap: 0;
    background-color: #0d0d0d;
  }

  /* Brand header strip at top of menu */
  .mobile-menu::before {
    content: 'Watch Affinity';
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    padding: 1.375rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: #0d0d0d;
    z-index: 1;
  }

  /* Nav container: full width column */
  .mobile-menu nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem 0;
  }

  /* Each link = its own card box */
  .mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 227, 217, 0.78);
    padding: 1rem 1.125rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 2px solid transparent;
    text-align: left;
    transition: background 0.18s, border-left-color 0.18s, color 0.18s;
    border-radius: 2px;
  }

  /* Gold chevron on the right of each link */
  .mobile-menu__link::after {
    content: '›';
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(184, 151, 40, 0.35);
    line-height: 1;
    flex-shrink: 0;
    margin-left: 0.75rem;
    transition: color 0.18s, transform 0.18s;
  }

  /* Hover / active state */
  .mobile-menu__link:hover,
  .mobile-menu__link:active {
    color: var(--color-cream);
    background: rgba(184, 151, 40, 0.06);
    border-left-color: var(--color-gold);
  }

  .mobile-menu__link:hover::after,
  .mobile-menu__link:active::after {
    color: var(--color-gold);
    transform: translateX(3px);
  }

  /* Close button repositioned to top-right of header strip */
  .mobile-menu__close {
    position: fixed;
    top: 0.875rem;
    right: 1.25rem;
    z-index: 2;
    color: rgba(232, 227, 217, 0.45);
  }

  /* Footer: contact info cards at bottom */
  .mobile-menu__footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.25rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    text-align: left;
  }

  /* Phone & email links in footer */
  .mobile-menu__phone,
  .mobile-menu__sms,
  .mobile-menu__email {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    color: rgba(232, 227, 217, 0.4);
    padding: 0.25rem 0;
  }

  .mobile-menu__phone { color: rgba(184, 151, 40, 0.7); font-weight: 500; }
  .mobile-menu__phone:hover { color: var(--color-gold); }
}

/* ── Hero: tighter headline, hide scroll indicator on short viewports ── */
@media (max-width: 640px) {
  .hero__headline {
    font-size: clamp(2.5rem, 10vw, 3.75rem);
    letter-spacing: -0.02em;
  }

  .hero__subhead {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .hero__ctas {
    gap: 0.75rem;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__scroll-indicator { display: none; }
}

/* ── Section headings & labels: readable minimum sizes ── */
@media (max-width: 640px) {
  .section-label {
    font-size: 0.625rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
}

/* ── General section padding: less vertical space on mobile ── */
@media (max-width: 640px) {
  .container {
    padding-inline: 1.25rem;
  }
}

/* ── Global iOS auto-zoom prevention: all form inputs ≥ 16px on mobile ── */
@media (max-width: 640px) {
  input,
  select,
  textarea {
    font-size: max(1rem, 16px) !important;
  }
}

/* ── Trust bar ── */
@media (max-width: 640px) {
  .trust-bar__items {
    gap: 1.5rem;
  }
}

/* ── Watch card grid (homepage) ── */
@media (max-width: 640px) {
  .watches-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
}

/* ── Brand scroll: swipe hint on mobile ── */
@media (max-width: 768px) {
  .brands__track-wrapper::after {
    content: 'Swipe to explore';
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(184,151,40,0.35);
    text-align: center;
    padding-top: 0.875rem;
  }
}

/* ── Sell section image placeholder ── */
@media (max-width: 640px) {
  .sell-section__image-placeholder {
    max-width: 100%;
  }
}

/* ── Trade animation: constrain on mobile ── */
@media (max-width: 480px) {
  .trade-anim {
    transform: scale(0.82);
    transform-origin: center center;
  }
}

/* ── Lounge / story sections ── */
@media (max-width: 640px) {
  .story__timeline {
    padding-left: 1rem;
  }
}

/* ── Newsletter: stack on mobile ── */
@media (max-width: 640px) {
  .newsletter__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .newsletter__form {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter__input {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  .newsletter__submit {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/* ── Footer: stack on small screens ── */
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__social-link {
    width: 44px;
    height: 44px;
  }
}

/* ── Buttons: full-width stack on narrow screens ── */
@media (max-width: 480px) {
  .hero__ctas .btn,
  .st-hero .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media print {
  .nav, .hero__scroll-indicator, .mobile-menu, .cursor {
    display: none !important;
  }
  body { color: #000; background: #fff; }
}
