/* ============================================================
   MERIDIAN HOROLOGY — Main Stylesheet
   Premium Private Watch Reseller
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --black:       #0a0908;
  --charcoal:    #1c1917;
  --graphite:    #292524;
  --mid:         #57534e;
  --muted:       #78716c;
  --border:      #e7e5e4;
  --light:       #f5f4f2;
  --cream:       #faf9f7;
  --white:       #ffffff;
  --gold:        #b89a5e;
  --gold-light:  #d4b87a;
  --gold-dark:   #8a6f3a;

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

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      2px;
  --max-width:   1280px;
  --nav-height:  72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { max-width: 68ch; }

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

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.section--sm {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── Decorative Line ── */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.25rem;
}

.gold-line--center { margin-inline: auto; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 154, 94, 0.15);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(10, 9, 8, 0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
}

.nav-logo__sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(184, 154, 94, 0.5);
  padding: 0.5rem 1.25rem;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 2.5rem 2rem;
  gap: 0;
  overflow-y: auto;
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

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

.nav-mobile .nav-mobile-cta {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 94, 0.5);
  padding: 1rem 1.5rem;
  text-align: center;
}

/* ── Page Offset ── */
main { padding-top: var(--nav-height); }

/* ── Hero ── */
.hero {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.1;
}

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

.hero__sub {
  margin-top: 1.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 42ch;
}

.hero__actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1612 0%, #0d0b09 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__watch-placeholder {
  width: 60%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border: 1px solid rgba(184, 154, 94, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(184, 154, 94, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
}

.hero__watch-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 154, 94, 0.08);
}

.watch-icon {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

/* Hero stats bar */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.hero__stat {
  flex: 1;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero__stat:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

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

.btn--primary:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(28,25,23,0.3);
}

.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 94, 0.5);
}

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

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--charcoal);
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(184, 154, 94, 0.15);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.35rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child { border-right: none; }

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 { color: var(--charcoal); }

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 1rem;
}

/* ── Featured Collection ── */
.collection-section {
  background: var(--cream);
}

/* ── Watch Card ── */
.watch-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.watch-card:hover {
  border-color: rgba(184, 154, 94, 0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.watch-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
  position: relative;
}

.watch-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(145deg, #f0eeec 0%, #e8e5e1 100%);
}

.watch-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.watch-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--charcoal);
  color: var(--white);
}

.watch-card__badge--available { background: #2d6a4f; }
.watch-card__badge--reserved { background: #7f4f24; }
.watch-card__badge--sold { background: var(--muted); }

.watch-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.watch-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 0.3rem;
  line-height: 1.25;
}

.watch-card__ref {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}

.watch-card__details {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.watch-card__detail {
  font-size: 0.7rem;
  color: var(--mid);
}

.watch-card__detail span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.watch-card__footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.watch-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}

.watch-card__price small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.2rem;
}

.watch-card__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.watch-card__link:hover { color: var(--gold-dark); }

/* ── Why Us Section ── */
.why-section { background: var(--white); }

.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(184, 154, 94, 0.3);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.why-card h3 {
  font-size: 1.15rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Brand Strip ── */
.brands-section {
  background: var(--charcoal);
  padding-block: 3rem;
}

.brands-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 2rem;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.brand-name:hover { color: rgba(255,255,255,0.7); }

/* ── Process Section ── */
.process-section { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

.process-step h3 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 auto;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }

.testimonial-card {
  border: 1px solid var(--border);
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black);
  padding-block: clamp(4rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 60% 50%, rgba(184, 154, 94, 0.06) 0%, transparent 70%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  max-width: 18ch;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.cta-banner__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 4rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.12em;
}

.footer-brand__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

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

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

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

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 0% 100%, rgba(184, 154, 94, 0.04) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .label { margin-bottom: 1rem; }

.page-hero h1 {
  color: var(--white);
  font-weight: 300;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  font-size: 1rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

.breadcrumb svg { width: 10px; height: 10px; }

/* ── Collection / Filters ── */
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filter-group h4 {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--mid);
  cursor: pointer;
  padding-block: 0.3rem;
  transition: color var(--transition);
}

.filter-option:hover { color: var(--charcoal); }

.filter-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
}

.filter-count {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--muted);
}

.filter-toggle {
  display: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.collection-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.sort-select {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  outline: none;
}

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

/* ── Product Detail ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.product-main-image {
  aspect-ratio: 1;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-thumb {
  aspect-ratio: 1;
  background: var(--light);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}

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

.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

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

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

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 0.5rem;
  line-height: 1.15;
}

.product-ref {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.12em;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-top: 1.75rem;
  line-height: 1;
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.product-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-block: 1.75rem;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.product-spec {
  padding: 0.9rem 1.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-spec:nth-child(even) { border-right: none; }
.product-spec:nth-last-child(-n+2) { border-bottom: none; }

.product-spec__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-spec__value {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-top: 0.2rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.product-trust {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--mid);
}

.product-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── About ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #e8e5e1 0%, #d8d3cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 154, 94, 0.25);
}

.about-content h2 { margin-top: 0.5rem; }

.about-content p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-top: 1.25rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.value-item h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-detail h4 {
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--charcoal);
}

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

/* ── Contact Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius);
}

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

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378716c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  padding: 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  text-align: center;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--black);
  border-top: 1px solid rgba(184, 154, 94, 0.2);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 60ch;
}

.cookie-banner a { color: var(--gold); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  min-height: 40px;
}

.btn-cookie-decline {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  min-height: 40px;
}

/* ── Back to Top ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border: 1px solid rgba(184, 154, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover { background: var(--gold); border-color: var(--gold); }
.back-top svg { width: 16px; height: 16px; color: var(--white); }
.back-top:hover svg { color: var(--black); }

/* ── Utility ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */

/* Tablet: 768px–1023px */
@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image {
    display: none;
  }

  .hero__content {
    padding: 4rem 1.5rem 3rem;
  }

  .hero__stats {
    display: none;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-steps::before { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .filter-sidebar.open { display: flex; }
  .filter-toggle { display: flex; }

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

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery { position: static; }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-image { display: none; }

  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile: <768px */
@media (max-width: 767px) {
  :root { --nav-height: 64px; }

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

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

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

  .hero h1 { font-size: 2.2rem; }
  .hero__sub { font-size: 0.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-item {
    padding: 0.35rem 1rem;
    font-size: 0.62rem;
    gap: 0.4rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .watch-card__body { padding: 1rem; }
  .watch-card__name { font-size: 1.05rem; }
  .watch-card__price { font-size: 1.15rem; }

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

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-spec:nth-child(even) { border-right: 1px solid var(--border); }
  .product-spec:nth-last-child(-n+1) { border-bottom: none; }
  .product-spec:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .product-spec:last-child { border-bottom: none; }

  .form-row { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: 0.5rem 0; }
  .trust-item { border-right: none; }

  .cta-banner .grid-2 { grid-template-columns: 1fr; }

  .brands-grid { gap: 0.75rem 2rem; }

  .cookie-banner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: center; }

  .back-top { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions .btn { font-size: 0.68rem; }
}
