/* =============================================================================
   VERUM JEWELERS — Master Stylesheet
   "The truth worn quietly."
   ============================================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

/* =============================================================================
   CSS Custom Properties
   ============================================================================= */
:root {
  --bg:         #FAFAF8;
  --text:       #1A1A1A;
  --gold:       #B8964E;
  --burgundy:   #6B2737;
  --gray:       #6B6B6B;
  --border:     #E8E5E0;
  --dark:       #1A1A1A;
  --dark-mid:   #2a2a2a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --label-spacing: 0.15em;
  --label-size:    0.72rem;

  --nav-height-utility: 36px;
  --nav-height-main:    72px;
  --nav-total:          108px;

  --container:   1400px;
  --section-gap: 120px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* =============================================================================
   Reset & Base
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* =============================================================================
   Image Placeholder Patterns
   ============================================================================= */
/* ── Base placeholder gradients (fallback) ─────────────────────────────── */
.img-jewelry {
  background: linear-gradient(135deg, #1a1208 0%, #2d1f0a 50%, #1a1208 100%);
}
.img-watch {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}
.img-category {
  background: linear-gradient(135deg, #1c1410 0%, #2a1f15 100%);
}
.img-diamond {
  background: linear-gradient(135deg, #e8e4dd 0%, #f5f3ef 100%);
}

/* ── Real stock photography ──────────────────────────────────────────────── */
.img-hero-main        { background-image: url(../images/hero-main.webp) !important; background-size: cover !important; background-position: center !important; }
.img-ring-featured    { background-image: url(../images/ring-featured.webp) !important; background-size: cover !important; background-position: center !important; }
.img-cat-engagement   { background-image: url(../images/cat-engagement.webp) !important; background-size: cover !important; background-position: center !important; }
.img-cat-necklace     { background-image: url(../images/cat-necklace.webp) !important; background-size: cover !important; background-position: center !important; }
.img-cat-earrings     { background-image: url(../images/cat-earrings.webp) !important; background-size: cover !important; background-position: center !important; }
.img-cat-bracelet     { background-image: url(../images/cat-bracelet.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-hero       { background-image: url(../images/watch-hero.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-sub        { background-image: url(../images/watch-sub.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-speedmaster{ background-image: url(../images/watch-speedmaster.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-tank       { background-image: url(../images/watch-tank.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-4          { background-image: url(../images/watch-4.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-5          { background-image: url(../images/watch-5.webp) !important; background-size: cover !important; background-position: center !important; }
.img-watch-6          { background-image: url(../images/watch-6.webp) !important; background-size: cover !important; background-position: center !important; }
.img-diamond-close    { background-image: url(../images/diamond-close.webp) !important; background-size: cover !important; background-position: center !important; }
.img-product-main     { background-image: url(../images/product-main.webp) !important; background-size: cover !important; background-position: center !important; }
.img-house-bg         { background-image: url(../images/house-bg.webp) !important; background-size: cover !important; background-position: center 30% !important; }
.img-hero {
  background: linear-gradient(160deg, #0e0b05 0%, #1c1508 40%, #2a1e0c 70%, #0e0b05 100%);
}
.img-hero-dark {
  background: linear-gradient(160deg, #060505 0%, #111008 40%, #1a1510 70%, #060505 100%);
}

/* =============================================================================
   Layout Utilities
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================================
   Fade-in Animation (IntersectionObserver)
   ============================================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================================================
   Navigation — Utility Bar
   ============================================================================= */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-utility {
  background: var(--dark);
  height: var(--nav-height-utility);
  display: flex;
  align-items: center;
}

.nav-utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-utility-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-utility-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-utility a,
.nav-utility span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.nav-utility .divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}

.nav-utility .concierge { color: rgba(255,255,255,0.9); }
.nav-utility .concierge strong { color: var(--gold); font-weight: 500; }

/* =============================================================================
   Navigation — Main Bar
   ============================================================================= */
.nav-main {
  height: var(--nav-height-main);
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav-main.scrolled {
  background: rgba(250, 250, 248, 0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-main .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.nav-since {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  font-variant: small-caps;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  transition: color 0.2s;
}

.nav-icon-btn:hover { color: var(--gold); }

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================================================
   Mobile Nav Drawer
   ============================================================================= */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  padding: 80px 40px 40px;
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gray);
}

.nav-drawer a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}

.nav-overlay.open { display: block; }

/* =============================================================================
   Hero Section
   ============================================================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--nav-total));
  overflow: hidden;
}

.hero-content {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}

.hero-image {
  min-height: 320px;
  order: 1;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

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

/* =============================================================================
   Buttons
   ============================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: var(--gold);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 31px;
  border: 1px solid var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.btn-ghost:hover { border-bottom-color: var(--gold); }

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.25s, opacity 0.25s;
}

.btn-primary-light:hover { opacity: 0.88; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

/* =============================================================================
   Trust Ticker
   ============================================================================= */
.trust-ticker {
  background: var(--dark);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 40px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.ticker-item .diamond-sep {
  color: var(--gold);
  font-size: 0.5rem;
}

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

/* =============================================================================
   Featured Collection
   ============================================================================= */
.collection-section {
  padding: var(--section-gap) 0;
}

.collection-hero {
  position: relative;
  height: 520px;
  margin-bottom: 64px;
  overflow: hidden;
}

.collection-hero-img {
  width: 100%;
  height: 100%;
}

.collection-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(250,250,248,0.95);
  padding: 24px 28px;
  max-width: 260px;
}

.collection-caption-label {
  font-size: var(--label-size);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.collection-caption-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.collection-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.collection-header-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.collection-header-text p {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.8;
}

/* =============================================================================
   Product Cards
   ============================================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-card-image .img-jewelry,
.product-card-image .img-watch,
.product-card-image .img-diamond {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image .img-jewelry,
.product-card:hover .product-card-image .img-watch,
.product-card:hover .product-card-image .img-diamond {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card-brand {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.product-card-price {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 6px;
}

.product-card-action {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.25s;
}

.product-card:hover .product-card-action { opacity: 1; }

/* =============================================================================
   Category Grid
   ============================================================================= */
.category-grid-section {
  padding-bottom: var(--section-gap);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.category-card .img-category {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.category-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.category-card-meta {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =============================================================================
   Diamond Vault Section
   ============================================================================= */
.diamond-vault-section {
  background: var(--dark);
  padding: var(--section-gap) 0;
  color: #fff;
}

.diamond-vault-section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.diamond-vault-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.diamond-vault-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
}

.diamond-vault-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.diamond-vault-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.85;
}

.diamond-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diamond-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.diamond-stat:last-child { border-bottom: none; }

.diamond-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.diamond-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =============================================================================
   Watch Room Section
   ============================================================================= */
.watch-room-section {
  padding: var(--section-gap) 0;
}

.watch-room-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.watch-room-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.watch-room-text h2 em {
  font-style: italic;
  color: var(--burgundy);
}

.watch-room-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 24px;
}

.watch-blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.watch-blockquote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

/* =============================================================================
   Watch Cabinet
   ============================================================================= */
.watch-cabinet-section {
  padding: 0 0 var(--section-gap);
}

.watch-cabinet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.watch-cabinet-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}

.watch-cabinet-header h2 span {
  display: block;
  font-size: var(--label-size);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.watch-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.watch-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s;
}

.watch-card:hover { border-color: var(--gold); }

.watch-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.watch-card-image .img-watch {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
}

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

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

.watch-card-type {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.watch-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}

.watch-card-year {
  font-size: 0.78rem;
  color: var(--gray);
}

.watch-card-price {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =============================================================================
   The House Section
   ============================================================================= */
.house-section {
  background: var(--dark);
  padding: var(--section-gap) 0;
  text-align: center;
}

.house-section .container {
  max-width: 860px;
}

.house-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.house-attribution {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================================
   Services Section
   ============================================================================= */
.services-section {
  padding: var(--section-gap) 0;
}

.services-header {
  margin-bottom: 56px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.service-card:hover { background: #f3f1ee; }

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
}

/* =============================================================================
   Footer
   ============================================================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .nav-wordmark {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.footer-brand .nav-since { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 260px;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-connect p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

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

/* =============================================================================
   Page Hero (inner pages)
   ============================================================================= */
.page-hero {
  background: var(--dark);
  padding: 80px 0;
  color: #fff;
}

.page-hero-label {
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

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

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =============================================================================
   Diamonds Page
   ============================================================================= */
.diamond-filters {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: var(--nav-total);
  z-index: 50;
}

.filter-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.filter-select {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 16px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold);
}

.filter-actions {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.rapnet-section {
  padding: 64px 0 var(--section-gap);
}

.rapnet-placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px;
  text-align: center;
}

.rapnet-placeholder-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.5;
}

.rapnet-placeholder-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.rapnet-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
}

.rapnet-placeholder p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.75;
}

/* =============================================================================
   Watches Page
   ============================================================================= */
.watch-filter-bar {
  padding: 0 0 40px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.watch-filter-scroll {
  display: flex;
  gap: 4px;
  min-width: max-content;
}

.filter-pill {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.watch-grid-section {
  padding: var(--section-gap) 0;
}

.watch-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* =============================================================================
   Product Detail Page
   ============================================================================= */
.breadcrumb {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.breadcrumb-list li a { transition: color 0.2s; }
.breadcrumb-list li a:hover { color: var(--gold); }

.breadcrumb-list li.active { color: var(--text); }

.breadcrumb-sep {
  color: var(--border);
  font-size: 0.6rem;
}

.product-detail-section {
  padding: 64px 0 var(--section-gap);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.product-main-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-main-image .img-watch,
.product-main-image .img-jewelry {
  width: 100%;
  height: 100%;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-thumb.active { border-color: var(--gold); }

.product-thumb .img-watch,
.product-thumb .img-jewelry {
  width: 100%;
  height: 100%;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-brand {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}

.product-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray);
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.spec-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.spec-value {
  font-size: 0.9rem;
  color: var(--text);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  padding-top: 8px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.private-viewing {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px;
  margin-top: 16px;
}

.private-viewing h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.private-viewing p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =============================================================================
   Responsive — 768px
   ============================================================================= */
@media (min-width: 768px) {
  :root {
    --nav-height-utility: 36px;
  }

  .container { padding-left: 40px; padding-right: 40px; }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content { order: 1; padding: 80px 60px 80px 40px; }
  .hero-image { order: 2; min-height: 600px; }

  .collection-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .products-grid { grid-template-columns: repeat(4, 1fr); }

  .diamond-vault-section .container {
    flex-direction: row;
    align-items: center;
  }

  .diamond-vault-content { flex: 1; }

  .diamond-stats {
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
    gap: 48px;
  }

  .diamond-stat {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 48px;
  }

  .diamond-stat:last-child { border-right: none; padding-right: 0; }

  .watch-room-inner { flex-direction: row; align-items: center; gap: 80px; }

  .watch-cards-grid { grid-template-columns: repeat(3, 1fr); }

  .filter-row {
    flex-direction: row;
    align-items: flex-end;
  }

  .filter-group { flex: 1; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .watch-grid-full { grid-template-columns: repeat(2, 1fr); }

  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 80px; }

  .product-actions { flex-direction: row; }

  .nav-links { display: flex; }
  .nav-menu-btn { display: none; }

  .page-hero { padding: 100px 0; }
}

/* =============================================================================
   Responsive — 1024px
   ============================================================================= */
@media (min-width: 1024px) {
  .container { padding-left: 60px; padding-right: 60px; }

  .collection-hero { height: 680px; }

  .watch-grid-full { grid-template-columns: repeat(3, 1fr); }

  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .category-card { aspect-ratio: 3/4; }

  .watch-room-inner { gap: 120px; }
}

/* =============================================================================
   Responsive — 1400px
   ============================================================================= */
@media (min-width: 1400px) {
  .container { padding-left: 80px; padding-right: 80px; }

  .hero-content { padding: 100px 80px 100px 80px; }
}
