/* =============================================
   EAST COAST WATCH STORE — LUXURY CSS
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E0C06A;
  --gold-dark: #A8873C;
  --navy: #0F1923;
  --charcoal: #1C2430;
  --charcoal-mid: #2A3441;
  --charcoal-light: #3A4756;
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --text-primary: #1C2430;
  --text-secondary: #5A6470;
  --text-muted: #8A95A0;
  --border: #E8E4DC;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-full { width: 100%; text-align: center; }

.text-gold { color: var(--gold); }

/* =============================================
   PASSWORD GATE
   ============================================= */

#password-gate {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-inner {
  text-align: center;
  padding: 60px 40px;
  max-width: 420px;
  width: 100%;
}

.gate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gate-logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 700;
}

.gate-logo-divider {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
}

.gate-logo-sub {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.gate-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.gate-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 36px;
}

#gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#gate-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}

#gate-input::placeholder {
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  font-size: 14px;
}

#gate-input:focus {
  border-color: var(--gold);
}

.gate-error {
  color: #FF6B6B;
  font-size: 13px;
  min-height: 20px;
  margin-top: 4px;
}

.gate-note {
  margin-top: 32px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

.gate-note a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* =============================================
   HEADER
   ============================================= */

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
  display: none;
}

@media (min-width: 900px) { .logo-tagline { display: block; } }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--text-primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-primary);
  margin-left: auto;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .main-nav, #site-header .btn { display: none; }
  .nav-toggle { display: block; }
}

/* =============================================
   HERO
   ============================================= */

#hero {
  background: var(--navy);
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-graphic { display: none; }
  .trust-bar { justify-content: center; }
  .hero-ctas { justify-content: center; }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-top: 3px;
  white-space: nowrap;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* Watch Graphic */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.watch-graphic {
  position: relative;
  width: 240px;
}

.watch-strap-top, .watch-strap-bot {
  width: 80px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  margin: 0 auto;
  border-radius: 6px;
}

.watch-strap-top { border-bottom: none; border-radius: 6px 6px 0 0; }
.watch-strap-bot { border-top: none; border-radius: 0 0 6px 6px; }

.watch-case {
  width: 180px;
  height: 180px;
  background: var(--charcoal);
  border: 3px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(201,168,76,0.15), inset 0 0 20px rgba(0,0,0,0.3);
}

.watch-crown {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 28px;
  background: rgba(201,168,76,0.4);
  border-radius: 3px;
}

.watch-dial {
  position: absolute;
  inset: 10px;
  background: radial-gradient(ellipse at center, #1a2230 0%, #0d1520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.watch-brand-text {
  position: absolute;
  top: 30px;
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.watch-hands {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hour-hand {
  width: 3px;
  height: 34px;
  background: #fff;
  margin-left: -1.5px;
}

.minute-hand {
  width: 2px;
  height: 46px;
  background: #fff;
  margin-left: -1px;
}

.second-hand {
  width: 1px;
  height: 50px;
  background: var(--gold);
  margin-left: -0.5px;
}

.watch-indices {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
}

.index {
  position: absolute;
  background: var(--gold);
}

.index.i12 { width: 2px; height: 10px; top: 0; left: 50%; transform: translateX(-50%); }
.index.i3  { width: 10px; height: 2px; right: 0; top: 50%; transform: translateY(-50%); }
.index.i6  { width: 2px; height: 10px; bottom: 0; left: 50%; transform: translateX(-50%); }
.index.i9  { width: 10px; height: 2px; left: 0; top: 50%; transform: translateY(-50%); }

.auth-badge-float {
  position: absolute;
  bottom: 80px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* =============================================
   ACTIVITY TICKER
   ============================================= */

.ticker-wrap {
  background: var(--charcoal);
  padding: 12px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 20px;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

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

/* =============================================
   SECTIONS
   ============================================= */

.section { padding: 100px 0; }
.section-dark { background: var(--charcoal); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   WATCH CARDS
   ============================================= */

/* Featured Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* --- Base Card --- */
.watch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.watch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.watch-card.sold {
  opacity: 0.75;
}

/* Card Visual */
.card-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-visual.featured-visual {
  height: 240px;
}

.card-visual-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-visual-inner::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

.card-brand-initial {
  font-family: var(--font-heading);
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* Card Badges */
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-just-listed { background: var(--gold); color: #fff; }
.badge-high-demand  { background: #D44000; color: #fff; }
.badge-auth        { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.badge-condition   { background: rgba(0,0,0,0.3); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.12); }

/* SOLD overlay */
.sold-banner {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.sold-text {
  background: var(--text-primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 24px;
  transform: rotate(-12deg);
  border: 2px solid rgba(255,255,255,0.2);
}

/* Social Proof Strip */
.card-social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-pill {
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}

/* Card Body */
.card-body {
  padding: 18px;
}

.featured-card .card-body {
  padding: 22px;
}

.card-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-model {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-weight: 500;
}

.featured-card .card-model { font-size: 20px; }

.card-ref {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 600;
}

.featured-card .card-price { font-size: 26px; }

.card-msrp {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.card-savings {
  font-size: 11px;
  color: #28a745;
  font-weight: 600;
}

.card-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-scarcity {
  font-size: 11px;
  color: #CC4400;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.card-inquiries {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Featured card extras */
.featured-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.featured-stat {
  display: flex;
  flex-direction: column;
}

.featured-stat-val {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}

.featured-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* =============================================
   FILTER TABS
   ============================================= */

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* =============================================
   TRUST PILLARS
   ============================================= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
}

.pillar {
  padding: 0 16px;
}

.pillar-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 48px;
}

.step {
  position: relative;
  padding-top: 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =============================================
   SELL SECTION
   ============================================= */

.sell-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 860px) {
  .sell-inner { grid-template-columns: 1fr; gap: 48px; }
}

.sell-benefits {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sell-benefits li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   FORMS
   ============================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 13px 16px;
  font-size: 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.form-promise {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   JEWELRY SECTION
   ============================================= */

.jewelry-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.jewelry-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
}

.jewelry-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.jewelry-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .jewelry-services { grid-template-columns: repeat(2, 1fr); }
}

.jewelry-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}

.jewelry-service span { font-size: 28px; }

.jewelry-service p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item a, .contact-item span {
  font-size: 15px;
  color: var(--text-primary);
}

.contact-item a:hover { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */

#footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--gold); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

/* =============================================
   INQUIRY MODAL
   ============================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}

.modal-close:hover { color: var(--text-primary); }

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.modal-watch-name {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.modal-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* =============================================
   UTILITIES & RESPONSIVE
   ============================================= */

.hidden { display: none !important; }

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .featured-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.watch-card {
  animation: fadeInUp 0.4s ease both;
}

/* Sell form inside sell section */
.sell-form-wrap {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* Contact form wrap */
.contact-form-wrap {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .sell-form-wrap, .contact-form-wrap { padding: 24px 20px; }
}
