:root {
  --bg: #0D0D0F;
  --surface: #131317;
  --surface-2: #1A1A20;
  --text: #F2EFE9;
  --muted: rgba(242, 239, 233, 0.62);
  --gold: #C8A055;
  --gold-soft: rgba(200, 160, 85, 0.35);
  --line: rgba(242, 239, 233, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

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

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

.section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 18px;
}

/* Fade-in on scroll */
.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js .fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

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

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

.btn-gold:hover {
  background: #DAB66E;
  border-color: #DAB66E;
  color: var(--bg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 13, 15, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.logo img {
  display: block;
  height: 38px;
  width: auto;
}

.logo-wordmark {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
}

@media (min-width: 768px) {
  .logo img {
    height: 44px;
  }

  .logo-wordmark {
    font-size: 15px;
    letter-spacing: 0.3em;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

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

.site-nav a {
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a.btn-whatsapp {
  display: inline-block;
  align-self: flex-start;
  margin-top: 12px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

.site-nav a.btn-whatsapp:hover {
  background: #DAB66E;
  color: var(--bg);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0;
    background: none;
    border: 0;
  }

  .site-nav a {
    font-size: 11px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
  }

  .site-nav a.active {
    border-bottom-color: var(--gold);
  }

  .site-nav a.btn-whatsapp {
    align-self: auto;
    margin-top: 0;
    padding: 9px 18px;
  }
}

@media (min-width: 1100px) {
  .site-nav {
    gap: 28px;
  }

  .site-nav a {
    font-size: 12px;
  }
}

/* Hero */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 160, 85, 0.07), transparent 60%);
}

.hero-inner {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  max-width: 900px;
  margin: 0 auto;
}

.hero-sub {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.02em;
}

.hero-inner .btn {
  margin-top: 32px;
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 0;
}

.trust-inner span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 20px;
}

.trust-inner span + span {
  border-left: 1px solid var(--line);
}

/* Pillars */
.pillar-grid {
  display: grid;
  gap: 24px;
}

.pillar {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}

.pillar h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

.pillar-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.pillar-link::after {
  content: ' \2192';
}

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

/* Watch grid & cards */
.watch-grid {
  display: grid;
  gap: 24px;
}

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

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

.watch-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}

.watch-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}

.watch-image {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.watch-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0) 65%);
  background-size: 200% 100%;
  animation: shimmer 1.8s linear infinite;
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .watch-image::before {
    animation: none;
  }
}

.watch-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(242, 239, 233, 0.12);
  pointer-events: none;
}

.watch-image-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.06em;
  color: rgba(242, 239, 233, 0.9);
  padding: 0 24px;
}

.watch-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}

.watch-card:hover .watch-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  background: rgba(13, 13, 15, 0.6);
  padding: 6px 10px;
}

.grad-1 { background: linear-gradient(155deg, #412A35 0%, #221219 48%, #100A0D 100%); }
.grad-2 { background: linear-gradient(155deg, #2F3845 0%, #181D24 48%, #0C0E12 100%); }
.grad-3 { background: linear-gradient(155deg, #4D3B1C 0%, #2A1D10 48%, #140E07 100%); }
.grad-4 { background: linear-gradient(155deg, #483818 0%, #271C0D 48%, #120D06 100%); }
.grad-5 { background: linear-gradient(155deg, #3D3526 0%, #201B12 48%, #0F0D09 100%); }
.grad-6 { background: linear-gradient(155deg, #27392E 0%, #15201A 48%, #0C100D 100%); }

.watch-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 24px;
}

.watch-brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.watch-model {
  font-size: 1.5rem;
  margin: 6px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.watch-meta {
  font-size: 12.5px;
  color: var(--muted);
}

.watch-price {
  margin-top: auto;
  padding-top: 14px;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Page head */
.page-head {
  padding: 72px 0 0;
}

.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.page-head p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}

/* Collection filters */
.filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  align-items: end;
  margin-bottom: 40px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.filters select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 44px;
  background: #16161A url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23C8A055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid #2A2A30;
  border-radius: 6px;
  color: var(--text);
  padding: 0 30px 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filters select:hover {
  border-color: #3A3A42;
}

.filters select:focus {
  outline: none;
  border-color: rgba(200, 160, 85, 0.6);
}

.filters input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  background: transparent;
  cursor: pointer;
}

.filters input[type='range']::-webkit-slider-runnable-track {
  height: 2px;
  background: #2A2A30;
  border-radius: 1px;
}

.filters input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -6px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 160, 85, 0.15);
}

.filters input[type='range']::-moz-range-track {
  height: 2px;
  background: #2A2A30;
  border-radius: 1px;
}

.filters input[type='range']::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
}

.filters .check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 44px;
}

.filters .check input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

#filter-price-value {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.filters-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 44px;
}

#filter-count {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.filter-reset {
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}

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

#collection-empty {
  color: var(--muted);
  text-align: center;
  padding: 32px 0;
}

.filters .range-label,
.filters label:has(> #filter-sort),
.filters .filters-meta {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
  }

  .filters label {
    flex: 1 1 0;
    min-width: 110px;
  }

  .filters label:has(> #filter-sort) {
    flex: 0 0 auto;
    min-width: 155px;
  }

  .filters .range-label {
    flex: 1.4 1 0;
    min-width: 145px;
  }

  .filters .check {
    flex: 0 0 auto;
  }

  .filters .filters-meta {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

/* Browse toggle */
.browse-toggle {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.browse-toggle-btn {
  padding: 9px 20px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.browse-toggle-btn:not(.active):hover {
  color: var(--text);
}

.browse-toggle-btn.active {
  background: var(--gold);
  color: var(--bg);
}

/* Category card grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 700px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.category-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}

.category-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card-media img {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.92) 0%, rgba(13, 13, 15, 0.45) 45%, rgba(13, 13, 15, 0.1) 100%);
}

.category-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--gold);
}

.category-card-count {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

/* Back to categories link */
.back-to-categories {
  display: inline-block;
  margin-bottom: 24px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}

.back-to-categories:hover {
  color: var(--gold);
}

/* Collection two-state visibility */
.collection-wrap.category-view .back-to-categories,
.collection-wrap.category-view .filters,
.collection-wrap.category-view #collection-grid,
.collection-wrap.category-view #collection-empty,
.collection-wrap.category-view #pagination {
  display: none;
}

.collection-wrap:not(.category-view) .category-grid,
.collection-wrap:not(.category-view) .browse-toggle {
  display: none;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.pagination-perpage {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-perpage > span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.perpage-btn {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.perpage-btn:hover {
  color: var(--text);
  border-color: var(--gold-soft);
}

.perpage-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

.pagination-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-btn {
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.page-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--bg);
}

.page-btn:disabled {
  border-color: var(--line);
  color: var(--muted);
  opacity: 0.4;
  cursor: default;
}

#page-indicator {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .pagination {
    justify-content: center;
  }

  .pagination-perpage,
  .pagination-nav {
    width: 100%;
    justify-content: center;
  }
}

/* Chrono24 banner */
.chrono-banner {
  border-top: 1px solid var(--line);
  text-align: center;
}

.chrono-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.25s;
}

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

/* Watch detail */
.watch-detail-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .watch-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.watch-detail-grid .watch-image {
  border: 1px solid var(--line);
}

.watch-detail-grid .watch-image-label {
  font-size: 2.2rem;
}

.watch-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.watch-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.watch-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

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

.watch-thumb:hover {
  opacity: 1;
}

.watch-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(13, 13, 15, 0.55);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: background 0.2s, border-color 0.2s;
}

.gallery-arrow:hover {
  background: rgba(13, 13, 15, 0.8);
  border-color: var(--gold);
}

.gallery-arrow-prev {
  left: 12px;
}

.gallery-arrow-next {
  right: 12px;
}

.watch-card .gallery-arrow {
  display: none;
}

@media (min-width: 768px) {
  .watch-card:hover .gallery-arrow {
    display: flex;
  }
}

.watch-detail-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 4px 0 10px;
}

.watch-detail-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.watch-detail-desc {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 28px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.spec-table th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.spec-table td {
  text-align: right;
  font-size: 14.5px;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.watch-detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.watch-ebay-link {
  margin-top: 18px;
}

.watch-ebay-link a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

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

.watch-detail-description {
  margin-bottom: 32px;
}

.watch-detail-description h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.watch-detail-description p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.watch-detail-description p:last-child {
  margin-bottom: 0;
}

/* Testimonial band */
.testimonial-band {
  border-top: 1px solid var(--line);
  text-align: center;
}

.testimonial-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 20px;
}

.testimonial-band cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* CTA band */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* Instagram feed */
.instagram-section {
  text-align: center;
}

.instagram-head {
  margin-bottom: 40px;
}

.instagram-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.instagram-head p {
  margin-top: 14px;
  color: var(--muted);
}

.instagram-head a {
  color: var(--gold);
}

.instagram-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.instagram-embed {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}

.instagram-cta {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .instagram-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .instagram-embed {
    flex: 1 1 326px;
    max-width: 360px;
    height: 560px;
    overflow: hidden;
  }
}

/* Forms */
.lead-form {
  max-width: 760px;
}

.form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-wide {
    grid-column: 1 / -1;
  }
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: #16161A;
  border: 1px solid #2A2A30;
  border-radius: 6px;
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.2s;
}

.lead-form input,
.lead-form select {
  height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  background: #16161A url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23C8A055' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 34px;
  cursor: pointer;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(200, 160, 85, 0.6);
}

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

.field-error {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.lead-form textarea {
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--surface);
  border: 1px solid var(--gold-soft);
  padding: 22px 26px;
}

.lead-form.submitted .form-fields {
  display: none;
}

.lead-form.submitted .form-success {
  display: block;
}

.form-privacy {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Photo upload */
.photo-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}

.photo-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.photo-sublabel {
  margin-top: -8px;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--muted);
}

.lead-form input.photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.photo-error {
  align-self: flex-start;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-2);
}

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

.photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 13, 15, 0.75);
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.photo-thumb-remove:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Services */
.service-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
}

.service-block h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.service-block p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}

/* About */
.about-subhead {
  font-style: italic;
}

.about-story {
  padding-top: 24px;
}

.prose p {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 18px;
}

.review-grid {
  display: grid;
  gap: 24px;
}

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

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 26px;
}

.review .stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
}

.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 14px 0 16px;
}

.review cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Map & contact */
.map-embed {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.95);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-soft);
  padding: 56px 0 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-legal {
  font-size: 11.5px;
  opacity: 0.75;
  margin-top: 14px;
}

/* Concierge widget */
.concierge-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.concierge-toggle:hover {
  background: #DAB66E;
  transform: translateY(-2px);
}

.concierge-toggle-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #16161A;
  border: 1px solid #2A2A30;
  border-radius: 6px;
  color: var(--text);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  display: none;
}

@media (min-width: 768px) {
  .concierge-toggle-label {
    display: block;
  }

  .concierge-toggle:hover .concierge-toggle-label {
    opacity: 1;
  }
}

.concierge-panel {
  position: fixed;
  right: 16px;
  bottom: 88px;
  left: 16px;
  max-width: 380px;
  margin-left: auto;
  height: min(540px, calc(100vh - 120px));
  z-index: 300;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.concierge.open .concierge-panel {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.concierge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.concierge-close {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}

.concierge-close:hover {
  color: var(--gold);
}

.concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concierge-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.concierge-msg.bot {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.concierge-msg.user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--bg);
  border-bottom-right-radius: 4px;
}

.concierge-msg a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.concierge-msg a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.concierge-msg ul {
  margin: 8px 0;
  padding-left: 18px;
}

.concierge-form {
  display: flex;
  border-top: 1px solid var(--line);
}

.concierge-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.concierge-form button {
  background: none;
  border: 0;
  color: var(--gold);
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.concierge-form button:hover {
  color: #DAB66E;
}
