/* ============================================================
   East Coast Watch Store — Styles v2.0
   Aesthetic: auction house catalog
   Typography: Fraunces (display) + IBM Plex Sans (interface)
   ============================================================ */

:root {
  --ink:           #1c1814;
  --paper:         #f8f5f0;
  --brass:         #b8933e;
  --brass-dark:    #9a7a2e;
  --mid:           #6b6460;
  --rule:          #e0dbd5;
  --white:         #ffffff;
  --font-display:  'Fraunces', Georgia, serif;
  --font-ui:       'IBM Plex Sans', system-ui, sans-serif;
  --container:     1200px;
  --gutter:        2rem;
  /* Rootbeer palette */
  --rb-bg:         #f2e3cc;
  --rb-bg-mid:     #e8d5b0;
  --rb-bg-deep:    #ddc898;
  --rb-dark:       #3d1a08;
  --rb-mid:        #8b4a1c;
  --rb-gold:       #c9a058;
  --rb-gold-lt:    #e8d088;
  --rb-champagne:  #f5ead6;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  line-height: 1;
}
.btn-brass {
  background: var(--brass);
  color: var(--white);
}
.btn-brass:hover { background: var(--brass-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-outline-subtle {
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--rule);
}
.btn-outline-subtle:hover { border-color: var(--ink); color: var(--ink); }

.btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.75rem; }
.btn-full { width: 100%; text-align: center; }

/* ── Type helpers ── */
.text-brass { color: var(--brass); }

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.9375rem;
  color: var(--mid);
}
.section-header {
  margin-bottom: 3rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-white {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ── Nav active state ── */
.nav-active { color: var(--ink) !important; }

/* ── Inner page body (no gate) ── */
body.inner-page #password-gate { display: none !important; }
body.inner-page #main-site { display: block !important; }

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0 2.5rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.page-sub {
  font-size: 0.9375rem;
  color: var(--mid);
  max-width: 56ch;
}

/* ============================================================
   ROOTBEER HERO — v2 Home Hero
   ============================================================ */

.hero-rootbeer {
  min-height: calc(100vh - 64px);
  background: linear-gradient(145deg, #f5ead6 0%, #edd9b8 35%, #e2c89a 65%, #d9bb88 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(61,26,8,0.12);
}

/* Decorative bezel ring — visible on mobile only, hidden on desktop */
.hero-rootbeer::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 52px solid rgba(201,160,88,0.07);
  right: -70px;
  bottom: -50px;
  pointer-events: none;
  display: none;
}

/* Ambient warm glow behind watch */
.rb-hero-glow {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,74,28,0.12) 0%, rgba(201,160,88,0.06) 50%, transparent 75%);
  pointer-events: none;
}

.hero-rb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-rb-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rb-mid);
  margin-bottom: 1.5rem;
}

.hero-rb-headline {
  font-family: 'Plus Jakarta Sans', var(--font-ui);
  font-size: clamp(2.75rem, 5.25vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--rb-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-rb-sub {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: rgba(61,26,8,0.55);
  line-height: 1.8;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ── Pill CTAs ── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.pill-primary {
  background: var(--rb-dark);
  color: #f5ead6;
  border: 1.5px solid var(--rb-dark);
  box-shadow: 0 4px 16px rgba(61,26,8,0.22);
}
.pill-primary:hover {
  background: var(--rb-mid);
  border-color: var(--rb-mid);
  box-shadow: 0 6px 24px rgba(61,26,8,0.32);
}

.pill-outline {
  background: transparent;
  color: var(--rb-dark);
  border: 1.5px solid rgba(61,26,8,0.35);
}
.pill-outline:hover {
  background: rgba(61,26,8,0.06);
  border-color: rgba(61,26,8,0.65);
}

/* ── Subtle trust line ── */
.hero-rb-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
}
.rb-trust-item {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(61,26,8,0.4);
  text-transform: uppercase;
}
.rb-trust-dot {
  color: rgba(61,26,8,0.2);
  font-size: 0.8rem;
}

/* ── Watch column ── */
.hero-rb-watch {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: var(--rb-dark);
  animation: scroll-pulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rb-dark);
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ===========================================================
   CSS ROLEX GMT-MASTER II ROOTBEER WATCH
   Total: 340px × 340px
   Bezel: conic two-tone (rootbeer / dark)
   Dial: warm champagne brown radial gradient
   Hands: live via JS clock
   =========================================================== */

.rb-watch-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}

/* Soft ambient shadow ring */
.rb-shadow-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(201,160,88,0.18), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

/* ── Bezel ── */
/* Rootbeer: dark brown (PM, bottom half) + warm root beer (AM, top half) */
.rb-bezel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 270deg,
    #7a3010 0deg 180deg,
    #1a0804 180deg 360deg
  );
  box-shadow:
    0 24px 64px rgba(61,26,8,0.45),
    0 8px 24px rgba(61,26,8,0.3),
    inset 0 1px 0 rgba(232,208,136,0.2),
    inset 0 0 0 2px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 24hr bezel tick marks */
.rb-bezel-marks {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.rb-bmark {
  position: absolute;
  width: 1.5px;
  height: 8px;
  border-radius: 1px;
  background: rgba(232,208,136,0.55);
  top: 4px;
  left: 50%;
  margin-left: -0.75px;
  transform-origin: 0.75px 166px;
}
/* 24 marks at 15° intervals */
.rb-bm0  { transform: rotate(0deg);    }
.rb-bm1  { transform: rotate(15deg);   }
.rb-bm2  { transform: rotate(30deg);   }
.rb-bm3  { transform: rotate(45deg);   }
.rb-bm4  { transform: rotate(60deg);   }
.rb-bm5  { transform: rotate(75deg);   }
.rb-bm6  { transform: rotate(90deg);   }
.rb-bm7  { transform: rotate(105deg);  }
.rb-bm8  { transform: rotate(120deg);  }
.rb-bm9  { transform: rotate(135deg);  }
.rb-bm10 { transform: rotate(150deg);  }
.rb-bm11 { transform: rotate(165deg);  }
.rb-bm12 { transform: rotate(180deg);  background: rgba(60,180,180,0.0); } /* invisible at transition */
.rb-bm13 { transform: rotate(195deg);  }
.rb-bm14 { transform: rotate(210deg);  }
.rb-bm15 { transform: rotate(225deg);  }
.rb-bm16 { transform: rotate(240deg);  }
.rb-bm17 { transform: rotate(255deg);  }
.rb-bm18 { transform: rotate(270deg);  }
.rb-bm19 { transform: rotate(285deg);  }
.rb-bm20 { transform: rotate(300deg);  }
.rb-bm21 { transform: rotate(315deg);  }
.rb-bm22 { transform: rotate(330deg);  }
.rb-bm23 { transform: rotate(345deg);  }
/* Brighter marks at cardinal hours */
.rb-bm0, .rb-bm6, .rb-bm12, .rb-bm18 {
  height: 12px;
  width: 2px;
  margin-left: -1px;
  background: rgba(232,208,136,0.9);
}

/* ── Case ring (Everose gold) ── */
.rb-case-ring {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8d590 0%, #c9a058 30%, #b08838 55%, #d4b468 80%, #e8d080 100%);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Dial ── */
/* 296px (340 - 44px bezel) = case ring
   Inside case ring (8px padding) = 280px dial */
.rb-dial {
  position: absolute;
  inset: 30px; /* 22px bezel + 8px case ring = 30px total */
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    #d4a878 0%,
    #b07840 30%,
    #8a5a28 60%,
    #6a3e18 85%,
    #5a3010 100%
  );
  overflow: hidden;
  box-shadow:
    inset 0 2px 8px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(0,0,0,0.2);
}

/* ── Chapter ring (thin outer track inside dial) ── */
.rb-chapter-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(232,208,136,0.2);
  pointer-events: none;
}

/* ── Applied hour markers ── */
/* dial is 280px → radius 140px → center at 140px from dial top
   marks at top: 10px → transform-origin y = 140-10 = 130px */
.rb-mark {
  position: absolute;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0dc98 0%, #c8a040 60%, #a07828 100%);
  top: 10px;
  left: 50%;
  margin-left: -2px;
  transform-origin: 2px 130px;
  box-shadow: 0 0 4px rgba(200,160,64,0.4);
}
/* Lume-style inset */
.rb-mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 1px;
  right: 1px;
  bottom: 3px;
  background: rgba(232,240,200,0.35);
  border-radius: 1px;
}

/* Hour mark rotations */
.rb-m12 { transform: rotate(0deg);    width: 6px; height: 20px; margin-left: -3px; }
.rb-m1  { transform: rotate(30deg);   }
.rb-m2  { transform: rotate(60deg);   }
/* 3 = date window, no mark */
.rb-m4  { transform: rotate(120deg);  }
.rb-m5  { transform: rotate(150deg);  }
.rb-m6  { transform: rotate(180deg);  width: 6px; height: 20px; margin-left: -3px; }
.rb-m7  { transform: rotate(210deg);  }
.rb-m8  { transform: rotate(240deg);  }
.rb-m9  { transform: rotate(270deg);  width: 6px; height: 20px; margin-left: -3px; }
.rb-m10 { transform: rotate(300deg);  }
.rb-m11 { transform: rotate(330deg);  }

/* ── Dial text ── */
.rb-dial-brand {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}
.rb-brand-line1 {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(240,220,152,0.85);
  text-transform: uppercase;
  white-space: nowrap;
}
.rb-brand-line2 {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(240,220,152,0.7);
  white-space: nowrap;
}
.rb-brand-line3 {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.38rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(240,220,152,0.45);
  text-transform: uppercase;
  margin-top: 1px;
}

.rb-gmt-label {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.36rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(240,220,152,0.4);
  white-space: nowrap;
}

/* ── Date window (at ~3 o'clock position) ── */
.rb-date {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 19px;
  background: linear-gradient(180deg, #f0e8c8, #e0d0a0);
  border: 1px solid rgba(140,100,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 600;
  color: #3d1a08;
  border-radius: 1px;
}

/* ── Hands ── */
.rb-hands-center {
  position: absolute;
  inset: 0;
}
.rb-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 3px 3px 0 0;
}

/* GMT hand — arrow tip, deep red */
.rb-gmt-arrow {
  width: 4px;
  height: 100px;
  margin-left: -2px;
  background: linear-gradient(180deg, #c42a18 0%, #c42a18 35%, #d4b468 35%, #c9a050 100%);
  border-radius: 4px 4px 0 0;
  clip-path: polygon(50% 0%, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

/* Hour hand — broad Mercedes-style */
.rb-hour-hand {
  width: 7px;
  height: 68px;
  margin-left: -3.5px;
  background: linear-gradient(180deg, #f0dc98 0%, #d0a848 50%, #b08830 100%);
  box-shadow: 0 0 6px rgba(200,160,64,0.35);
}
/* Mercedes circle cutout via box-shadow trick */
.rb-hour-hand::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid rgba(90,48,16,0.8);
  background: linear-gradient(180deg, #f0dc98, #c0980a);
}

/* Minute hand — long slim */
.rb-min-hand {
  width: 4px;
  height: 100px;
  margin-left: -2px;
  background: linear-gradient(180deg, #f0dc98 0%, #c8a040 70%, #a07828 100%);
  box-shadow: 0 0 4px rgba(200,160,64,0.25);
}

/* Second hand — thin, red tip */
.rb-sec-hand {
  width: 1.5px;
  height: 112px;
  margin-left: -0.75px;
  background: linear-gradient(0deg, #c42a18 0%, #c42a18 30%, #e8d088 30%, #e8d088 100%);
  border-radius: 1px;
  margin-bottom: -22px; /* counterbalance tail */
}

/* Center jewel cap */
.rb-center-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f0dc98, #c0980a);
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.4);
  z-index: 10;
}

/* ── Crystal reflection (lens flare illusion) ── */
.rb-crystal {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 45%;
  height: 40%;
  border-radius: 50% 50% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 40%,
    transparent 60%
  );
  pointer-events: none;
}

/* ── Crown (right side of case) ── */
.rb-crown {
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 30px;
  background: linear-gradient(90deg, #c8a050, #d4b468, #c0900a);
  border-radius: 0 5px 5px 0;
  box-shadow: 2px 0 6px rgba(0,0,0,0.25), inset -1px 0 2px rgba(255,255,255,0.2);
}
.rb-crown::after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 3px;
  right: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.15) 0px,
    rgba(0,0,0,0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  border-radius: 3px;
}

/* ── Hero watch photo (swap in when real photo available) ── */
.hero-watch-photo {
  width: 380px;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(61,26,8,0.4));
}

/* ── Home page ── */
.home-hero {
  background: var(--paper);
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--rule);
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.home-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
.home-sub {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 42ch;
}
.paths-section {
  padding: 0;
  border-bottom: 1px solid var(--rule);
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.path-card {
  display: block;
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--rule);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.path-card:last-child { border-right: none; }
.path-card:hover { background: var(--white); }
.path-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.path-card:hover .path-num { color: var(--brass); }
.path-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.path-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.path-cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  transition: letter-spacing 0.2s;
}
.path-card:hover .path-cta { letter-spacing: 0.1em; }
.home-trust {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

/* ── Sourcing / Jewelry terms grid ── */
.terms-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.term-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.term-item p {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── Form page layout ── */
.form-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.form-page-text p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-top: 1rem;
}

/* ── Checkbox labels ── */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--mid);
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.checkbox-label input[type=checkbox] { accent-color: var(--brass); }

/* ── Process grid (jewelry) ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Bespoke intro ── */
.bespoke-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bespoke-intro-text p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Portfolio placeholder ── */
.portfolio-placeholder {
  border: 1px solid var(--rule);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.portfolio-empty-text {
  font-size: 0.875rem;
  color: var(--mid);
  text-align: center;
  max-width: 40ch;
  font-style: italic;
  padding: 3rem;
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gate-inner {
  text-align: center;
  max-width: 360px;
  width: 100%;
}
.gate-brand { margin-bottom: 2.5rem; }
.gate-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--paper);
}
.gate-est {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.6rem;
}
.gate-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(248,245,240,0.75);
  margin-bottom: 0.4rem;
}
.gate-subtitle {
  font-size: 0.8125rem;
  color: rgba(248,245,240,0.4);
  margin-bottom: 2rem;
}
#gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#gate-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(248,245,240,0.18);
  color: var(--paper);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.18em;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
#gate-input::placeholder { color: rgba(248,245,240,0.3); letter-spacing: 0.06em; }
#gate-input:focus { border-color: var(--brass); }
.gate-error {
  color: #d4756a;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  min-height: 1.2em;
}
.gate-note {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  color: rgba(248,245,240,0.3);
}
.gate-note a {
  color: rgba(248,245,240,0.45);
  border-bottom: 1px solid rgba(248,245,240,0.18);
  transition: color 0.15s;
}
.gate-note a:hover { color: var(--brass); border-color: var(--brass); }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.2s;
}
#site-header.scrolled {
  box-shadow: 0 2px 12px rgba(28,24,20,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
.logo { display: flex; flex-direction: column; gap: 0.05rem; flex-shrink: 0; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-est {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.main-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--ink); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  padding: 0.3rem;
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--rule);
  padding: 0.5rem var(--gutter) 1.5rem;
  gap: 0;
}
.mobile-nav.open {
  display: flex;
  animation: nav-open 0.28s ease forwards;
}
@keyframes nav-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--paper);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--mid);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.trust-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}
.trust-item { flex: 1; }
.trust-sep {
  width: 1px;
  height: 2.5rem;
  background: var(--rule);
  margin: 0 1.5rem;
  flex-shrink: 0;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.trust-label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── Watch graphic ── */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.watch-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.watch-strap-top, .watch-strap-bot {
  width: 68px;
  height: 84px;
  background: #211e1a;
  border-radius: 5px;
}
.watch-case {
  position: relative;
  width: 190px;
  height: 210px;
  background: linear-gradient(145deg, #d8d4cc, #c8c4bc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(28,24,20,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 2px solid #c0bbb0;
  z-index: 2;
}
.watch-crown {
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 30px;
  background: #b4afa5;
  border-radius: 0 4px 4px 0;
}
.watch-dial {
  width: 154px;
  height: 174px;
  background: #1c1814;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.watch-brand-text {
  position: absolute;
  top: 32px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(248,245,240,0.5);
  text-transform: uppercase;
}
.watch-hands {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}
.hour-hand   { width: 3px; height: 42px; margin-left: -1.5px; background: var(--paper); }
.minute-hand { width: 2px; height: 56px; margin-left: -1px;   background: var(--paper); }
.second-hand { width: 1px; height: 62px; margin-left: -0.5px; background: var(--brass); }

.watch-indices { position: absolute; inset: 0; }
.index {
  position: absolute;
  width: 3px;
  height: 10px;
  background: rgba(248,245,240,0.45);
  left: 50%;
}
.i12 { top: 9px; left: calc(50% - 1.5px); }
.i3  { right: 9px; left: auto; top: calc(50% - 5px); transform: rotate(90deg); }
.i6  { bottom: 9px; top: auto; left: calc(50% - 1.5px); transform: scaleY(-1); }
.i9  { left: 9px; top: calc(50% - 5px); transform: rotate(-90deg); }

.auth-badge-float {
  position: absolute;
  bottom: -14px;
  right: -18px;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  white-space: nowrap;
  z-index: 3;
}

/* ============================================================
   ACTIVITY TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
.ticker-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(248,245,240,0.55);
  white-space: nowrap;
}
.ticker-item::before {
  content: '·';
  margin-right: 1rem;
  color: var(--brass);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   WATCH CARDS
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--rule);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--rule);
}

.watch-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
  position: relative;
}
.watch-card:hover { background: #fdfbf8; }
.watch-card.watch-sold { opacity: 0.7; }

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ede9e3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.card-initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(28,24,20,0.1);
  letter-spacing: 0.05em;
  user-select: none;
}
.card-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}
.card-badge-sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248,245,240,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-badge-sold-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
}
.card-viewing {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--mid);
  background: rgba(248,245,240,0.9);
  padding: 0.2rem 0.5rem;
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.2rem;
}
.card-model {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.card-ref {
  font-size: 0.72rem;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.card-condition {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}
.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  margin-top: auto;
}
.card-price-wrap { flex: 1; min-width: 0; }
.card-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.card-price-note {
  font-size: 0.62rem;
  color: var(--mid);
  font-family: var(--font-ui);
}
.badge-sold {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--rule);
  padding: 0.3rem 0.65rem;
  white-space: nowrap;
}

/* ============================================================
   TRUST PILLARS
   ============================================================ */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--rule);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.pillar-body {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--mid);
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.filter-tab.active { color: var(--ink); border-bottom-color: var(--brass); }
.filter-tab:hover  { color: var(--ink); }
.catalog-grid { margin-top: -1px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ============================================================
   SELL YOUR WATCH
   ============================================================ */
.sell-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.sell-text p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.sell-benefits {
  list-style: none;
  margin-bottom: 0;
}
.sell-benefits li {
  font-size: 0.875rem;
  color: var(--mid);
  padding: 0.55rem 0 0.55rem 1rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.sell-benefits li:first-child { border-top: 1px solid var(--rule); }
.sell-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--brass);
  border-radius: 50%;
}

/* ============================================================
   BESPOKE JEWELRY
   ============================================================ */
.bespoke-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bespoke-text p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.detail-list {
  list-style: none;
  margin-bottom: 2.5rem;
}
.detail-list li {
  font-size: 0.875rem;
  color: var(--mid);
  padding: 0.55rem 0 0.55rem 1rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.detail-list li:first-child { border-top: 1px solid var(--rule); }
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--brass);
  border-radius: 50%;
}
.bespoke-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bespoke-quote {
  padding: 3rem;
  border: 1px solid var(--rule);
}
.bespoke-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-item strong {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.contact-item a, .contact-item span {
  font-size: 0.9375rem;
  color: var(--ink);
}
.contact-item a:hover { color: var(--brass); }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  outline: none;
  transition: border-color 0.18s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--brass); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(107,100,96,0.55); }
.contact-form textarea { resize: vertical; }
.form-note {
  font-size: 0.72rem;
  color: var(--mid);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.success-mark {
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.875rem;
  color: var(--mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,245,240,0.1);
  margin-bottom: 2rem;
}
.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 0.3rem;
}
.footer-est {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.78rem;
  color: rgba(248,245,240,0.38);
  line-height: 1.7;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  display: block;
  font-size: 0.82rem;
  color: rgba(248,245,240,0.5);
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--paper); }
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(248,245,240,0.28);
  text-align: center;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28,24,20,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(2px);
}
.modal-box {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--mid);
  line-height: 1;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--ink); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.modal-watch-name {
  font-size: 0.875rem;
  color: var(--brass);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.modal-note {
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-graphic { display: none; }
  /* Rootbeer hero responsive */
  .hero-rootbeer::after { display: block; }
  .hero-rb-inner { grid-template-columns: 1fr; gap: 0; padding-top: 4.5rem; padding-bottom: 5.5rem; }
  .hero-rb-text { text-align: center; max-width: 520px; margin: 0 auto; }
  .hero-rb-eyebrow { text-align: center; }
  .hero-rb-headline { font-size: clamp(3rem, 9vw, 4.5rem); text-align: center; }
  .hero-rb-sub { text-align: center; max-width: 38ch; margin: 0 auto 2.5rem; }
  .hero-pills { justify-content: center; flex-direction: column; align-items: stretch; max-width: 360px; margin: 0 auto 2.5rem; }
  .pill-btn { text-align: center; justify-content: center; }
  .hero-rb-trust { justify-content: center; }
  .hero-rb-watch { display: none; }
  .hero-scroll-hint { display: none; }
  .rb-hero-glow { display: none; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .path-card:last-child { border-bottom: none; }
  .terms-layout { grid-template-columns: 1fr; gap: 2rem; }
  .terms-grid { grid-template-columns: 1fr; }
  .form-page-layout { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bespoke-intro { grid-template-columns: 1fr; gap: 2rem; }
  .featured-grid  { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid   { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid   { grid-template-columns: 1fr; }
  .pillar         { border-right: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
  .steps-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .sell-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .bespoke-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .main-nav       { display: none; }
  .nav-toggle     { display: block; }
  .header-cta     { display: none; }
  .trust-bar      { flex-wrap: wrap; gap: 1.5rem 0; }
  .trust-sep      { display: none; }
  .trust-item     { min-width: 50%; }
}

@media (max-width: 580px) {
  :root { --gutter: 1.25rem; }
  .featured-grid  { grid-template-columns: 1fr; }
  .catalog-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .section        { padding: 3.5rem 0; }
  #hero           { padding: 3rem 0; }
  .home-hero      { padding: 3rem 0 2rem; }
  .hero-headline  { font-size: 2.5rem; }
  .home-headline  { font-size: 2.5rem; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .pillar         { padding: 2rem 1.5rem; }
  .bespoke-aside  { display: none; }
  .process-grid   { grid-template-columns: 1fr; }
  .terms-grid     { grid-template-columns: 1fr; }
  .path-card      { padding: 2.75rem 1.5rem; }
  .path-title     { font-size: 1.4rem; }
  .path-cta       { font-size: 0.8rem; }
  /* Rootbeer hero mobile small */
  .hero-rb-inner { padding-top: 3.5rem; padding-bottom: 4.5rem; }
  .hero-rb-headline { font-size: clamp(2.75rem, 10vw, 3.5rem); }
  .hero-pills { max-width: 100%; }
  .hero-rootbeer { min-height: auto; }
  .hero-rootbeer::after { width: 220px; height: 220px; border-width: 40px; right: -50px; bottom: -30px; }
}
