/* ============================================
   ApexTime — Custom Theme
   ============================================ */

:root {
  --midnight: #0C1A2E;
  --navy: #12243A;
  --gold: #B8965A;
  --gold-light: #D4B97A;
  --gold-muted: rgba(184, 150, 90, 0.3);
  --ivory: #F5F0E4;
  --ivory-dark: #EDE8DC;
  --cream: #FAF7F1;
  --text-dark: #0C1A2E;
  --text-mid: #3A4F6A;
  --text-light: #7A8FA8;
  --text-ivory: #D4CFC3;
  --divider: rgba(184, 150, 90, 0.2);
  --section-pad: clamp(64px, 10vw, 120px);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-ivory);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,90,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,150,90,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 28px;
  line-height: 1.1;
}

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

.hero-sub {
  font-size: 16px;
  color: var(--text-ivory);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- WATCH DISPLAY ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.watch-face {
  width: clamp(200px, 25vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #1E2F44 0%, #0C1A2E 50%, #1a2d40 100%);
  box-shadow:
    0 0 0 6px #B8965A,
    0 0 0 8px #8B6F3A,
    inset 0 2px 8px rgba(0,0,0,0.6),
    0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-bezel {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #C9A84C, #8B6F3A, #C9A84C);
  z-index: -1;
}

.watch-dial {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F1E30, #162840);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.dial-marker {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-light);
  font-weight: 400;
}

.m12 { top: 10%; left: 50%; transform: translateX(-50%); }
.m3 { right: 10%; top: 50%; transform: translateY(-50%); }
.m6 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.m9 { left: 10%; top: 50%; transform: translateY(-50%); }

.dial-hands {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hand {
  position: absolute;
  transform-origin: bottom center;
  bottom: 50%;
  left: 50%;
  border-radius: 2px;
}

.hour-hand {
  width: 4px;
  height: 28%;
  background: var(--ivory);
  margin-left: -2px;
  transform: rotate(140deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.minute-hand {
  width: 3px;
  height: 38%;
  background: var(--ivory);
  margin-left: -1.5px;
  transform: rotate(240deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.second-hand {
  width: 1.5px;
  height: 40%;
  background: var(--gold);
  margin-left: -0.75px;
  transform: rotate(80deg);
}

.center-pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  z-index: 10;
}

.watch-stand {
  width: 80px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold), #8B6F3A);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.watch-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-ivory);
  text-transform: uppercase;
  opacity: 0.6;
}

.hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ---- STATS ROW ---- */
.stats-row {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(24px, 5vw, 60px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 48px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-ivory);
  opacity: 0.7;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--divider);
}

/* ---- SECTION EYEBROW ---- */
.section-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ---- PROVENANCE ---- */
.provenance {
  background: var(--cream);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}

.provenance-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.provenance-text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
}

.provenance-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.provenance-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.auth-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--divider);
  background: var(--midnight);
  color: var(--gold);
}

.auth-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}

.auth-icon svg {
  width: 100%;
  height: 100%;
}

.auth-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ivory);
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-mid);
}

.cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- COLLECTION ---- */
.collection {
  background: var(--ivory-dark);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}

.collection-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.collection-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.collection-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 56px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.brand-card {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s;
}

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

.brand-mark {
  margin-bottom: 4px;
}

.brand-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
}

.rolex-mark { background: #0A1F12; color: #C9A84C; }
.omega-mark { background: #0F1B35; color: #79A3E8; }
.ap-mark { background: #120A08; color: #C9A84C; }
.pp-mark { background: #1A0A0F; color: #C9A84C; }
.cartier-mark { background: #1A1510; color: #C9A84C; }
.iwc-mark { background: #0F1A2E; color: #7A8FA8; }

.brand-initials {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.brand-models {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ---- PROMISE ---- */
.promise {
  background: var(--midnight);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
}

.promise-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
}

.promise-card {
  padding: 40px 36px;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.promise-icon svg { width: 100%; height: 100%; }

.promise-card h3 {
  font-size: 22px;
  color: var(--ivory);
  font-weight: 400;
}

.promise-card p {
  font-size: 14px;
  color: var(--text-ivory);
  line-height: 1.7;
  opacity: 0.8;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--cream);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
}

.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.manifesto-attribution {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 28px;
  margin-bottom: 40px;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---- CLOSING ---- */
.closing {
  background: linear-gradient(160deg, var(--navy) 0%, var(--midnight) 100%);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,150,90,0.08) 0%, transparent 70%);
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--ivory);
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-sub {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #070F18;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px) 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-ivory);
  opacity: 0.5;
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-ivory);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--text-ivory);
  opacity: 0.3;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-ivory);
  text-decoration: none;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.footer-legal a:hover { opacity: 0.7; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual .watch-display { transform: scale(0.8); }
  .stats-row { flex-direction: column; }
  .stat-divider { width: 40px; height: 1px; }
  .provenance-inner { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  nav { display: none; }
}

@media (max-width: 480px) {
  .brand-grid { grid-template-columns: 1fr; }
  .watch-display { transform: scale(0.7); }
}

/* ---- HERO SIGNUP FORM ---- */
.hero-signup {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  align-items: center;
}
.hero-email-input {
  padding: 10px 14px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  background: rgba(255,255,255,0.05);
  color: #f5efe6;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9em;
  border-radius: 2px;
  width: 220px;
  outline: none;
}
.hero-email-input::placeholder { color: rgba(245,239,230,0.4); }
.hero-email-input:focus { border-color: rgba(200,169,110,0.8); }
.hero-signup-btn {
  padding: 10px 20px;
  background: #c8a96e;
  color: #1a1a1a;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-signup-btn:hover { background: #d4ba87; }
.hero-signup-btn:disabled { background: #8a7a50; cursor: default; }

@media (max-width: 480px) {
  .hero-signup { flex-direction: column; align-items: stretch; }
  .hero-email-input { width: 100%; }
}

/* ============================================
   SHOP — /shop catalog page
   ============================================ */

/* ---- Shop Hero ---- */
.shop-hero {
  background: var(--midnight);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px) clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--divider);
}

.shop-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.shop-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}

.shop-subtitle {
  font-size: 16px;
  color: var(--text-ivory);
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.7;
}

/* ---- Filter + Sort bar ---- */
.shop-controls {
  background: var(--navy);
  border-bottom: 1px solid var(--divider);
  padding: 0 clamp(24px, 6vw, 80px);
}

.shop-controls-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.shop-filter-group,
.shop-sort-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: all 0.15s;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
  color: var(--midnight);
  background: var(--gold);
  border-color: var(--gold);
}

.sort-select {
  appearance: none;
  padding: 6px 32px 6px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
  background: rgba(255,255,255,0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8965A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 10px center no-repeat;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

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

/* ---- Catalog grid ---- */
.shop-catalog {
  background: var(--cream);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
  min-height: 60vh;
}

.catalog-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.catalog-empty {
  font-size: 16px;
  color: var(--text-mid);
  text-align: center;
  padding: 80px 0;
}

.catalog-empty a { color: var(--gold); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

/* ---- Watch Card ---- */
.watch-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.15s;
}

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

/* Image area */
.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient placeholder */
.card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  height: 100%;
  width: 100%;
}

.placeholder-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: rgba(212, 185, 122, 0.9);
  letter-spacing: 0.06em;
}

.placeholder-model {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: rgba(212, 185, 122, 0.65);
  letter-spacing: 0.04em;
  max-width: 220px;
  line-height: 1.3;
}

.placeholder-ref {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(122, 143, 168, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Ships badge */
.card-badge-ships {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--midnight);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

/* Card body */
.card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-meta-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.card-brand {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-ref {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  font-family: 'DM Sans', monospace;
}

.card-model {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

/* Condition + box/papers tags */
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-condition,
.tag-papers {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.tag-new       { background: rgba(0, 120, 60, 0.1); color: #1A6B3A; border: 1px solid rgba(0,120,60,0.2); }
.tag-unworn    { background: rgba(184, 150, 90, 0.12); color: #8B6520; border: 1px solid rgba(184,150,90,0.25); }
.tag-pre-owned { background: rgba(58, 79, 106, 0.1); color: var(--text-mid); border: 1px solid rgba(58,79,106,0.2); }

.tag-papers {
  background: rgba(58, 79, 106, 0.07);
  color: var(--text-light);
  border: 1px solid rgba(58,79,106,0.15);
}

/* Price row */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.card-price-inquire {
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s;
  white-space: nowrap;
}

.card-cta:hover { background: var(--gold-light); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .shop-controls-inner { flex-direction: column; align-items: flex-start; }
  .card-price-row { flex-direction: column; align-items: flex-start; }
  .card-cta { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================
   WATCH DETAIL — /shop/:id
   ============================================ */

/* ---- Breadcrumb ---- */
.detail-breadcrumb {
  background: var(--navy);
  border-bottom: 1px solid var(--divider);
  padding: 0 clamp(24px, 6vw, 80px);
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 0;
  font-size: 12px;
  color: var(--text-ivory);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-inner a { color: var(--gold); text-decoration: none; opacity: 1; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.4; }

/* ---- Main two-column layout ---- */
.detail-main {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
}
.detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ---- Gallery ---- */
.detail-gallery { display: flex; flex-direction: column; gap: 10px; }
.gallery-hero {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; text-align: center; padding: 32px;
}
.gp-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: rgba(212,185,122,0.9);
  letter-spacing: 0.06em;
}
.gp-model {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300; font-style: italic;
  color: rgba(212,185,122,0.65);
}
.gp-ref {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(122,143,168,0.7); margin-top: 4px;
}
.gallery-badge-ships {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--midnight);
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 2px;
}
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
}
.gallery-thumb {
  aspect-ratio: 1; border-radius: 2px; overflow: hidden;
  cursor: pointer; position: relative;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: rgba(184,150,90,0.4); }
.thumb-img { width: 100%; height: 100%; object-fit: cover; }
.thumb-label {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(212,185,122,0.6);
}

/* ---- Right column: product info ---- */
.detail-info { display: flex; flex-direction: column; gap: 20px; }
.detail-brand-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.detail-model {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; color: var(--text-dark); line-height: 1.1;
}
.detail-ref {
  font-size: 12px; letter-spacing: 0.1em; color: var(--text-light);
  font-family: 'DM Sans', monospace; margin-top: -8px;
}

/* Price */
.detail-price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300; color: var(--text-dark);
}
.detail-price-por { font-style: italic; color: var(--gold); font-size: 32px; }
.detail-below-resale {
  font-size: 12px; color: #1A6B3A;
  background: rgba(0,120,60,0.08);
  border: 1px solid rgba(0,120,60,0.2);
  padding: 3px 10px; border-radius: 2px;
  letter-spacing: 0.02em;
}

/* Badges row */
.detail-badges { display: flex; gap: 8px; flex-wrap: wrap; }

/* Authentication badge */
.detail-auth-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--divider);
  background: var(--midnight);
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.detail-auth-badge:hover { border-color: var(--gold); }
.auth-badge-icon {
  width: 36px; height: 36px; color: var(--gold); flex-shrink: 0;
}
.auth-badge-title {
  display: block; font-size: 14px; font-weight: 500; color: var(--ivory);
}
.auth-badge-sub {
  display: block; font-size: 12px; color: var(--text-ivory); opacity: 0.6; margin-top: 2px;
}

/* Delivery line */
.detail-delivery {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
}
.delivery-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 1px; }

/* CTA button */
.detail-cta {
  display: block; width: 100%;
  padding: 16px 24px;
  background: var(--gold); color: var(--midnight);
  border: none; border-radius: 2px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.15s;
}
.detail-cta:hover { background: var(--gold-light); }

.detail-trust-copy {
  font-size: 12px; color: var(--text-light); text-align: center;
  letter-spacing: 0.03em;
}

/* ---- Below the fold ---- */
.detail-below {
  background: var(--ivory-dark);
  border-top: 1px solid var(--divider);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
}
.detail-below-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.detail-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 24px;
}

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-label {
  padding: 12px 0; color: var(--text-light);
  border-bottom: 1px solid var(--divider); width: 40%; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.spec-val {
  padding: 12px 0; color: var(--text-dark);
  border-bottom: 1px solid var(--divider); font-weight: 400;
}

/* Why grid */
.why-grid { display: flex; flex-direction: column; gap: 24px; }
.why-card {
  padding: 24px 28px; border: 1px solid var(--divider);
  background: var(--cream); border-radius: 2px;
}
.why-icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 12px; }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--text-dark); margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ---- Reservation Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7, 15, 24, 0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-card {
  background: var(--cream); width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  border-radius: 2px; border: 1px solid var(--divider);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px 0;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--text-dark);
}
.modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text-light); padding: 4px 8px;
  transition: color 0.15s; line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }
.modal-sub {
  padding: 12px 32px 0; font-size: 14px; color: var(--text-mid); line-height: 1.6;
}
#reserveForm { padding: 20px 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.form-input {
  padding: 10px 14px; border: 1px solid var(--divider);
  background: #fff; color: var(--text-dark);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  border-radius: 2px; outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error {
  font-size: 13px; color: #c0392b;
  background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2);
  padding: 10px 14px; border-radius: 2px;
}
.modal-submit {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--midnight);
  border: none; border-radius: 2px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.15s;
}
.modal-submit:hover { background: var(--gold-light); }
.modal-submit:disabled { background: #a88840; cursor: default; }
.modal-legal { font-size: 11px; color: var(--text-light); text-align: center; line-height: 1.6; }
.modal-legal a { color: var(--gold); text-decoration: none; }

/* Thank-you state */
.thanks-body { padding: 24px 32px 36px; }
.thanks-check { width: 60px; height: 60px; margin: 0 auto 20px; }
.thanks-check svg { width: 100%; height: 100%; }
.thanks-watch { font-size: 15px; font-weight: 500; color: var(--text-dark); text-align: center; margin-bottom: 10px; }
.thanks-message { font-size: 14px; color: var(--text-mid); text-align: center; line-height: 1.7; margin-bottom: 24px; }
.thanks-delivery {
  background: var(--midnight); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 2px; margin-bottom: 24px;
}
.thanks-delivery-label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.thanks-delivery-date { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--ivory); }
.thanks-steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.thanks-steps li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-mid); }
.step-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---- Detail responsive ---- */
@media (max-width: 900px) {
  .detail-inner { grid-template-columns: 1fr; }
  .detail-below-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .modal-card { margin: 0; }
  .modal-header, #reserveForm, .thanks-body { padding-left: 20px; padding-right: 20px; }
  .modal-sub { padding-left: 20px; padding-right: 20px; }
}

/* ============================================
   TRUST PAGES — /how-it-works, /authentication, /shipping-returns
   ============================================ */

/* ---- Trust header (shows all nav links) ---- */
.trust-header nav { gap: 24px; }

/* ---- Page Hero ---- */
.trust-hero {
  background: #0a0a0a;
  padding: clamp(64px, 10vw, 120px) clamp(24px, 6vw, 80px) clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--divider);
}
.trust-hero-inner { max-width: 1280px; margin: 0 auto; }
.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: #f5f0e8;
  margin-bottom: 20px;
  line-height: 1.1;
}
.trust-sub {
  font-size: 17px;
  color: #b8a898;
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ---- CTA ---- */
.trust-cta-section {
  background: #0a0a0a;
  border-top: 1px solid var(--divider);
  padding: clamp(64px, 9vw, 100px) clamp(24px, 6vw, 80px);
  text-align: center;
}
.trust-cta-inner { max-width: 640px; margin: 0 auto; }
.trust-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.trust-cta-body {
  font-size: 15px;
  color: #8a7a6a;
  margin-bottom: 36px;
  line-height: 1.65;
}
.trust-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.trust-cta-btn:hover { background: #d4ba87; }
.trust-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.trust-cta:hover { background: #d4ba87; }
.trust-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #c9a84c;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.trust-link:hover { color: #d4ba87; text-decoration: underline; }

/* ---- /how-it-works: Steps ---- */
.steps-section {
  background: #0a0a0a;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
}
.steps-inner { max-width: 1280px; margin: 0 auto; }

.step-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid rgba(184,150,90,0.15);
  align-items: start;
}
.step-block-last { border-bottom: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  padding-top: 4px;
}

.step-content { display: flex; flex-direction: column; gap: 0; }
.step-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}
.step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 20px;
  line-height: 1.2;
}
.step-body {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  max-width: 580px;
  font-weight: 300;
}

@media (max-width: 640px) {
  .step-block { grid-template-columns: 1fr; gap: 16px; }
  .step-number { font-size: 48px; }
}

/* ---- /authentication ---- */
.auth-section {
  background: #0a0a0a;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.auth-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.auth-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 20px;
  line-height: 1.2;
}
.auth-section-body {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.checklist-grid { display: flex; flex-direction: column; gap: 2px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: 2px;
}
.check-icon { width: 20px; height: 20px; color: #c9a84c; flex-shrink: 0; margin-top: 2px; }
.check-item > div { display: flex; flex-direction: column; gap: 2px; }
.check-item strong { font-size: 14px; color: #f5f0e8; font-weight: 500; }
.check-item span { font-size: 13px; color: #6a5a4a; line-height: 1.5; font-weight: 300; }

/* Auth docs section */
.auth-docs-section {
  background: #111;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.auth-docs-inner { max-width: 1280px; margin: 0 auto; }
.auth-docs-inner .auth-section-title { max-width: 560px; }

.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.doc-card {
  padding: 32px 28px;
  border: 1px solid rgba(184,150,90,0.2);
  background: rgba(255,255,255,0.03);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.doc-icon { color: #c9a84c; }
.doc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #f5f0e8;
}
.doc-card p { font-size: 14px; color: #7a6a5a; line-height: 1.7; font-weight: 300; }

/* Auth guarantee */
.auth-guarantee {
  background: #0a0a0a;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.auth-guarantee-inner { max-width: 1280px; margin: 0 auto; }
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border: 1px solid rgba(184,150,90,0.3);
  background: rgba(201,168,76,0.05);
  border-radius: 2px;
  max-width: 680px;
}
.guarantee-icon { width: 40px; height: 40px; color: #c9a84c; flex-shrink: 0; }
.guarantee-text { display: flex; flex-direction: column; gap: 8px; }
.guarantee-text strong { font-size: 18px; color: #f5f0e8; font-weight: 500; }
.guarantee-text span { font-size: 14px; color: #8a7a6a; line-height: 1.7; font-weight: 300; }

@media (max-width: 900px) {
  .auth-inner { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .guarantee-badge { flex-direction: column; align-items: flex-start; }
  .step-block { grid-template-columns: 1fr; gap: 12px; }
  .step-number { font-size: 48px; }
}

/* ---- /shipping-returns ---- */
.sr-section {
  background: #0a0a0a;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.sr-inner { max-width: 1280px; margin: 0 auto; }
.sr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sr-body {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.sr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Delivery promise card */
.delivery-promise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 36px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  gap: 12px;
}
.dp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
}
.dp-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.4;
}
.dp-sub {
  font-size: 12px;
  color: #6a5a4a;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* Late delivery */
.sr-late-section {
  background: #111;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.late-promise {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 800px;
}
.late-icon { width: 36px; height: 36px; color: #c9a84c; flex-shrink: 0; margin-top: 4px; }
.late-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.late-body {
  font-size: 15px;
  color: #8a7a6a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}

/* Returns */
.returns-requirements { margin-top: 40px; }
.rr-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 20px;
}
.rr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rr-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: 2px;
}
.rr-icon { width: 18px; height: 18px; color: #c9a84c; flex-shrink: 0; margin-top: 3px; }
.rr-item > div { display: flex; flex-direction: column; gap: 4px; }
.rr-item strong { font-size: 14px; color: #f5f0e8; font-weight: 500; }
.rr-item span { font-size: 13px; color: #6a5a4a; line-height: 1.6; font-weight: 300; }

/* US Only */
.sr-us-only {
  background: #0a0a0a;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}
.us-notice { display: flex; align-items: flex-start; gap: 28px; max-width: 640px; }
.us-icon { width: 28px; height: 28px; color: #c9a84c; flex-shrink: 0; margin-top: 3px; }
.us-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 12px;
}
.us-content p { font-size: 14px; color: #7a6a5a; line-height: 1.75; font-weight: 300; }

@media (max-width: 900px) {
  .sr-split { grid-template-columns: 1fr; }
  .rr-grid { grid-template-columns: 1fr; }
  .late-promise, .us-notice { flex-direction: column; }
}

/* ============================================
   HOMEPAGE — Sections
   ============================================ */

/* ---- HP HERO ---- */
.hp-hero {
  position: relative;
  min-height: clamp(560px, 75vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 26, 46, 0.92) 0%,
    rgba(12, 26, 46, 0.75) 50%,
    rgba(12, 26, 46, 0.4) 100%
  );
}

.hp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.hp-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hp-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 700px;
}

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

.hp-subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-ivory);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 44px;
}

.hp-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--midnight);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  color: var(--text-ivory);
  padding: 14px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 185, 122, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ---- HP VALUES ---- */
.hp-values {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}

.hp-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.hp-value-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-value-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.hp-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
}

.hp-value-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.hp-value-link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.hp-value-link:hover { opacity: 0.75; }

/* ---- HP FEATURED ---- */
.hp-featured {
  background: var(--midnight);
  padding: clamp(72px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.hp-featured-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hp-section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.hp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--ivory);
  margin-top: 16px;
}

/* Override card styles for dark background */
.hp-featured .watch-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 150, 90, 0.15);
}
.hp-featured .card-brand,
.hp-featured .card-ref { color: var(--text-light); }
.hp-featured .card-model { color: var(--ivory); }

.hp-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-featured-cta {
  margin-top: clamp(40px, 6vw, 56px);
  text-align: center;
}

.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--midnight); }

/* ---- HP TRUST STRIP ---- */
.hp-trust {
  background: var(--ivory-dark);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--divider);
}

.hp-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hp-trust-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 48px;
  max-width: 680px;
  line-height: 1.3;
}

.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.hp-trust-item {
  background: var(--ivory-dark);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.hp-trust-item:hover { background: var(--cream); }

.hp-trust-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.hp-trust-desc {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ---- HP MANIFESTO ---- */
.hp-manifesto {
  background: var(--navy);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.hp-manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hp-manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.25;
  border: none;
  margin: 0;
  padding: 0;
}

.hp-manifesto-sub {
  font-size: 16px;
  color: var(--text-ivory);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}

/* ---- FOOTER WAITLIST ---- */
.footer-waitlist {
  margin-top: 24px;
}
.footer-waitlist-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.footer-waitlist-form {
  display: flex;
  gap: 0;
  max-width: 340px;
}
.footer-email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,90,0.25);
  border-right: none;
  color: var(--ivory);
  font-size: 13px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: 0;
}
.footer-email-input::placeholder { color: var(--text-light); }
.footer-email-input:focus { border-color: rgba(184,150,90,0.6); }
.footer-waitlist-btn {
  background: var(--gold);
  color: var(--midnight);
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.footer-waitlist-btn:hover { background: var(--gold-light); }

/* ---- HP RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hp-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hp-values-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-catalog-grid { grid-template-columns: 1fr; }
  .hp-trust-grid { grid-template-columns: 1fr 1fr; }
  .hp-hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hp-trust-grid { grid-template-columns: 1fr; }
  .footer-waitlist-form { flex-direction: column; }
  .footer-email-input { border-right: 1px solid rgba(184,150,90,0.25); }
}
