:root {
  --ink: #0b0a08;
  --panel: #15120d;
  --panel-soft: #211b13;
  --gold: #c79a3b;
  --gold-bright: #f2cd7c;
  --ivory: #f7f0df;
  --muted: #b8ac96;
  --line: rgba(242, 205, 124, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 4%, rgba(199, 154, 59, 0.2), transparent 28rem),
    linear-gradient(135deg, #090805 0%, #16120c 42%, #060503 100%);
  color: var(--ivory);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(242, 205, 124, 0.18);
  background: rgba(8, 7, 5, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.header-cta,
.btn,
.product-card div > a,
.announcement a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(242, 205, 124, 0.5);
  padding: 12px 18px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.btn-primary,
.product-card div > a {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #151006;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
}

.header-cta:hover,
.btn:hover,
.product-card div > a:hover,
.announcement a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.8vw, 64px);
  line-height: 1;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 58vw, 760px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 7% 15%;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  transform: skewY(-5deg);
}

.hero-watch {
  position: absolute;
  width: min(76%, 520px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.55));
}

.hero-watch-main {
  right: 4%;
  top: 6%;
  z-index: 2;
}

.hero-watch-side {
  left: 0;
  bottom: 2%;
  width: min(50%, 340px);
  opacity: 0.88;
}

.sale-ticket {
  position: absolute;
  right: 0;
  bottom: 16%;
  z-index: 4;
  width: min(250px, 52%);
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(12, 10, 7, 0.84);
  box-shadow: var(--shadow);
}

.sale-ticket span {
  display: block;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.sale-ticket strong {
  display: block;
  margin-top: 6px;
  color: var(--gold-bright);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.announcement {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 0 clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.announcement p,
.announcement strong {
  margin: 0;
}

.announcement p {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement strong {
  color: var(--ivory);
  font-size: clamp(18px, 2.4vw, 28px);
}

.announcement a {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.04);
}

.atelier-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  margin: clamp(26px, 4vw, 44px) clamp(18px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(44px, 7vw, 88px);
}

.atelier-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.atelier-copy h2 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 56px);
}

.atelier-copy p:not(.eyebrow),
.quote-note p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.atelier-media {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(242, 205, 124, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.atelier-media img {
  width: 100%;
  height: clamp(300px, 34vw, 520px);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}

.quote-note {
  position: relative;
  width: min(88%, 620px);
  margin: -70px 28px 28px auto;
  border: 1px solid rgba(242, 205, 124, 0.34);
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(12, 10, 7, 0.9);
  backdrop-filter: blur(14px);
}

.quote-note .eyebrow {
  margin-bottom: 10px;
}

.quote-note strong {
  display: block;
  color: var(--ivory);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 36px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.collection-card {
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease, transform 180ms ease;
}

.collection-card:hover {
  background: rgba(242, 205, 124, 0.08);
  transform: translateY(-3px);
}

.collection-card span {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
}

.collection-card strong {
  display: block;
  margin: 72px 0 12px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
}

.collection-card small {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(242, 205, 124, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #17120b;
}

.product-card-media {
  display: block;
  overflow: hidden;
}

.product-card-media img {
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.04);
}

.product-card div {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  padding: 18px;
}

.product-card span {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.product-card h3 a {
  transition: color 180ms ease;
}

.product-card h3 a:hover {
  color: var(--gold-bright);
}

.product-card p {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
}

.product-card div > a {
  align-self: end;
  width: 100%;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 80px);
}

.product-gallery {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(242, 205, 124, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #17120b;
}

.product-gallery-note {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  width: min(330px, calc(100% - 28px));
  border: 1px solid rgba(242, 205, 124, 0.36);
  padding: 18px;
  background: rgba(12, 10, 7, 0.88);
  backdrop-filter: blur(14px);
}

.product-gallery-note span,
.price-panel span {
  display: block;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-gallery-note strong {
  display: block;
  margin-top: 6px;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

.product-detail {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-detail h1 {
  font-size: clamp(44px, 6.8vw, 86px);
}

.product-summary {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.price-panel {
  margin: 30px 0 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.price-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--gold-bright);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.price-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.65;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(44px, 6vw, 78px) 0;
}

.product-story p:not(.eyebrow) {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.85;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.detail-panel {
  min-width: 0;
  border: 1px solid rgba(242, 205, 124, 0.18);
  padding: clamp(20px, 2.4vw, 30px);
  background:
    linear-gradient(145deg, rgba(242, 205, 124, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.detail-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  border-bottom: 1px solid rgba(242, 205, 124, 0.14);
  padding-bottom: 12px;
  color: var(--ivory);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.55;
}

.detail-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-panel dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(242, 205, 124, 0.14);
  padding-bottom: 12px;
}

.detail-panel dt {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.quote-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.06;
}

.quote-panel p {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.75;
}

.related-products {
  padding-top: 20px;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 36px;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(242, 205, 124, 0.07), rgba(255, 255, 255, 0.015));
}

.service-steps {
  display: grid;
  gap: 14px;
}

.service-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.service-steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 22px;
}

.service-steps strong {
  font-size: 24px;
}

.service-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.6;
}

.final-cta {
  padding: clamp(60px, 10vw, 140px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.final-cta p {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.72fr) minmax(0, 0.88fr);
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  line-height: 1.7;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 9px 18px;
}

.footer-links a {
  color: var(--ivory);
  transition: color 180ms ease;
}

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

@media (max-width: 1040px) {
  .hero,
  .service,
  .atelier-brief,
  .product-hero,
  .product-story {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .announcement,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quote-note {
    width: auto;
    margin: 0;
    border-inline: 0;
    border-bottom: 0;
  }

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

  .product-actions .btn {
    width: 100%;
  }

  .detail-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .collection-card {
    min-height: 190px;
  }

  .collection-card strong {
    margin-top: 42px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    padding-inline: 12px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .sale-ticket {
    width: 66%;
  }
}

/* Product template V2: editorial private-atelier direction. */
.watch-v2-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: 26px clamp(18px, 5vw, 72px) clamp(72px, 9vw, 132px);
}

.watch-v2-breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-v2-breadcrumbs a:last-child {
  color: var(--ivory);
}

.watch-v2-gallery,
.watch-v2-summary {
  min-width: 0;
  animation: watch-v2-reveal 620ms ease both;
}

.watch-v2-summary {
  animation-delay: 100ms;
}

.watch-v2-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 205, 124, 0.32);
  background:
    linear-gradient(135deg, rgba(242, 205, 124, 0.08), transparent 42%),
    #100d09;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.watch-v2-frame::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 240, 223, 0.12);
  content: "";
  pointer-events: none;
}

.watch-v2-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 0.96;
  object-fit: cover;
}

.watch-v2-thumbnails {
  display: grid;
  grid-auto-columns: minmax(76px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 2px 4px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.watch-v2-thumbnail {
  position: relative;
  overflow: hidden;
  min-width: 76px;
  padding: 0;
  border: 1px solid rgba(247, 240, 223, 0.16);
  background: #100d09;
  cursor: pointer;
}

.watch-v2-thumbnail::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  content: "";
  pointer-events: none;
}

.watch-v2-thumbnail:hover,
.watch-v2-thumbnail:focus-visible,
.watch-v2-thumbnail.is-active {
  border-color: rgba(242, 205, 124, 0.72);
}

.watch-v2-thumbnail.is-active::after {
  border-color: var(--gold-bright);
}

.watch-v2-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.watch-v2-vertical-mark {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 32px;
  padding: 10px 8px;
  border: 1px solid rgba(242, 205, 124, 0.35);
  background: rgba(8, 7, 5, 0.76);
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.watch-v2-image-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 4px 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
}

.watch-v2-image-note span {
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watch-v2-summary h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  overflow-wrap: normal;
}

.watch-v2-title-family,
.watch-v2-title-reference {
  display: block;
}

.watch-v2-title-reference {
  margin-top: 16px;
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.watch-v2-lead {
  max-width: 700px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.watch-v2-quote-card {
  position: relative;
  margin: 34px 0 26px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(199, 154, 59, 0.13), rgba(255, 255, 255, 0.025));
}

.watch-v2-quote-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 84px;
  height: 2px;
  background: var(--gold-bright);
  content: "";
}

.watch-v2-quote-card span {
  display: block;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.watch-v2-quote-card strong {
  display: block;
  margin: 8px 0;
  color: var(--gold-bright);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.watch-v2-quote-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.watch-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.watch-v2-proofline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 205, 124, 0.18);
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
}

.watch-v2-proofline strong {
  display: block;
  margin-top: 6px;
  color: var(--ivory);
  font-size: 11px;
  line-height: 1.35;
}

@media (min-width: 1041px) and (max-height: 950px) {
  .watch-v2-hero {
    align-items: start;
  }

  .watch-v2-summary h1 {
    margin: 10px 0 16px;
    font-size: clamp(44px, 4.2vw, 60px);
    line-height: 0.98;
  }

  .watch-v2-title-reference {
    margin-top: 12px;
    font-size: clamp(18px, 1.75vw, 24px);
  }

  .watch-v2-lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .watch-v2-quote-card {
    margin: 22px 0 18px;
    padding: 18px 20px;
  }

  .watch-v2-quote-card strong {
    font-size: 42px;
  }
}

.watch-v2-editorial,
.watch-v2-spec-section,
.watch-v2-process,
.watch-v2-faq {
  padding: clamp(66px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.watch-v2-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 8vw, 140px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}

.watch-v2-editorial > div:last-child > p {
  margin-top: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

.watch-v2-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.watch-v2-highlights li {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(242, 205, 124, 0.18);
  color: var(--ivory);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.5;
}

.watch-v2-highlights li::before {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  content: "◆";
  font-size: 8px;
}

.watch-v2-spec-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 110px);
}

.watch-v2-section-title > p:last-child {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.7;
}

.watch-v2-spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.watch-v2-spec-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.46fr) minmax(0, 0.54fr);
  gap: 24px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(242, 205, 124, 0.16);
}

.watch-v2-spec-list dt,
.watch-v2-spec-list dd {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.watch-v2-spec-list dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-v2-spec-list dd {
  color: var(--ivory);
  line-height: 1.5;
}

.watch-v2-process {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(199, 154, 59, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.018);
}

.watch-v2-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
}

.watch-v2-process-grid article {
  min-height: 270px;
  padding: 28px;
  background: #100d09;
}

.watch-v2-process-grid span {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.watch-v2-process-grid h3 {
  margin-top: 86px;
  font-size: 28px;
}

.watch-v2-process-grid p {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.65;
}

.watch-v2-faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 8vw, 120px);
}

.watch-v2-faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 2px;
}

.watch-v2-faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.watch-v2-faq-list summary {
  cursor: pointer;
  color: var(--ivory);
  font-size: 21px;
}

.watch-v2-faq-list p {
  max-width: 680px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.7;
}

.watch-v2-mobile-quote {
  display: none;
}

@keyframes watch-v2-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .watch-v2-hero,
  .watch-v2-editorial,
  .watch-v2-spec-section,
  .watch-v2-faq {
    grid-template-columns: minmax(0, 1fr);
  }

  .watch-v2-process-grid {
    grid-template-columns: 1fr;
  }

  .watch-v2-process-grid article {
    min-height: 0;
  }

  .watch-v2-process-grid h3 {
    margin-top: 34px;
  }
}

@media (max-width: 720px) {
  .watch-product-v2 {
    padding-bottom: 72px;
  }

  .watch-v2-hero {
    padding-top: 20px;
  }

  .watch-v2-summary h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 0.98;
  }

  .watch-v2-title-reference {
    margin-top: 12px;
    font-size: clamp(16px, 5.4vw, 21px);
    line-height: 1.3;
  }

  .watch-v2-breadcrumbs {
    min-width: 0;
    overflow: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .watch-v2-frame img {
    aspect-ratio: 1;
  }

  .watch-v2-thumbnails {
    grid-auto-columns: 70px;
  }

  .watch-v2-image-note,
  .watch-v2-proofline,
  .watch-v2-highlights,
  .watch-v2-spec-list div {
    grid-template-columns: 1fr;
  }

  .watch-v2-actions .btn {
    width: 100%;
  }

  .watch-v2-mobile-quote {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    background: rgba(8, 7, 5, 0.94);
    backdrop-filter: blur(16px);
    font-family: "Trebuchet MS", Verdana, sans-serif;
  }

  .watch-v2-mobile-quote span {
    color: var(--gold-bright);
    font-size: 13px;
  }

  .watch-v2-mobile-quote a {
    padding: 11px 15px;
    background: var(--gold-bright);
    color: #171108;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  .watch-v2-gallery,
  .watch-v2-summary {
    animation: none;
  }
}

/* Trust center and legal pages. */
.trust-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 28px clamp(18px, 7vw, 128px) 82px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.98) 0%, rgba(8, 7, 5, 0.82) 56%, rgba(8, 7, 5, 0.24) 100%),
    url("products/submariner/002-rolex-submariner-date-116610lv-hulk.jpg") center 42% / cover;
}

.trust-hero::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(242, 205, 124, 0.22);
  border-radius: 50%;
  content: "";
}

.trust-hero .eyebrow {
  margin-top: clamp(80px, 11vw, 150px);
}

.trust-hero h1,
.trust-hero > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.trust-hero > p:last-child {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
}

.trust-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(66px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.trust-content .trust-lead {
  margin: 0 0 58px;
  padding-left: 24px;
  border-left: 2px solid var(--gold-bright);
  color: var(--ivory);
  font-size: clamp(21px, 2.8vw, 34px);
  line-height: 1.45;
}

.trust-content h2 {
  margin: 58px 0 18px;
  font-size: clamp(30px, 4vw, 52px);
}

.trust-content p,
.trust-content li {
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.trust-content ul,
.trust-content ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.trust-contact-card {
  margin: 36px 0 62px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: linear-gradient(125deg, rgba(199, 154, 59, 0.14), rgba(255, 255, 255, 0.025));
}

.trust-contact-card h2 {
  margin-top: 10px;
}

.trust-contact-card .btn {
  margin-top: 18px;
}

.trust-faq-list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.trust-faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.trust-faq-list summary {
  cursor: pointer;
  color: var(--ivory);
  font-size: clamp(20px, 2.6vw, 30px);
}

.trust-next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 7vw, 128px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.trust-next-step h2 {
  margin: 6px 0 0;
}

.error-page {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 170px);
  padding: clamp(72px, 11vw, 150px) clamp(18px, 8vw, 150px);
  background:
    radial-gradient(circle at 78% 28%, rgba(199, 154, 59, 0.19), transparent 26rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 62%);
}

.error-page h1 {
  max-width: 940px;
  margin: 12px 0 24px;
}

.error-page > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.error-page .hero-actions {
  margin-top: 20px;
}

@media (max-width: 720px) {
  .site-footer,
  .trust-next-step {
    grid-template-columns: 1fr;
  }

  .trust-hero {
    min-height: 390px;
    padding-bottom: 58px;
  }

  .trust-hero .eyebrow {
    margin-top: 78px;
  }

  .trust-next-step .btn {
    width: 100%;
  }
}

/* Global navigation and footer system — phase two */
.global-shell {
  width: min(100% - 40px, 1480px);
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 31;
  border-bottom: 1px solid rgba(242, 205, 124, 0.16);
  background: #080705;
  color: #d7c9ad;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 34px;
  align-items: center;
}

.utility-bar-inner > * {
  position: relative;
  text-align: center;
}

.utility-bar-inner > * + *::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "◆";
  font-size: 5px;
  transform: translateX(-50%);
}

.utility-bar a {
  color: var(--gold-bright);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(242, 205, 124, 0.18);
  background: rgba(8, 7, 5, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.site-header-main {
  display: grid;
  grid-template-columns: minmax(185px, auto) 1fr auto;
  gap: clamp(24px, 3.2vw, 52px);
  min-height: 78px;
  align-items: center;
}

.site-header .brand,
.site-footer .brand {
  gap: 11px;
  color: var(--ivory);
  font-size: 15px;
  letter-spacing: 0.13em;
}

.site-header .brand img,
.site-footer .brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 205, 124, 0.25);
  background: #f7f3e9;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.8vw, 30px);
}

.nav-item {
  position: static;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 78px;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8cdb9;
  cursor: pointer;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--gold-bright);
}

.nav-link:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-trigger span {
  color: var(--gold);
  font-size: 13px;
  transition: transform 180ms ease;
}

.nav-trigger[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.mega-menu,
.nav-dropdown {
  position: absolute;
  top: 100%;
  z-index: 35;
  visibility: hidden;
  border: 1px solid rgba(242, 205, 124, 0.2);
  background:
    radial-gradient(circle at 8% 0%, rgba(199, 154, 59, 0.16), transparent 22rem),
    #100d09;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  opacity: 0;
  transform: translateY(8px);
  transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.mega-menu {
  right: max(20px, calc((100vw - 1480px) / 2));
  left: max(20px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(28px, 4vw, 68px);
  padding: clamp(34px, 4vw, 62px);
}

.nav-dropdown {
  width: 260px;
  padding: 12px;
}

.has-dropdown:nth-of-type(3) .nav-dropdown {
  margin-left: -48px;
}

.nav-item.is-open > .mega-menu,
.nav-item.is-open > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-intro {
  padding-right: clamp(20px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

.mega-menu-intro h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3vw, 43px);
}

.mega-menu-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.text-link,
.footer-whatsapp {
  display: inline-flex;
  gap: 9px;
  margin-top: 12px;
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-menu-column,
.nav-dropdown {
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.mega-menu-label,
.footer-column h3 {
  margin: 0 0 17px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mega-menu-column a,
.nav-dropdown a {
  display: block;
  padding: 8px 0;
  color: #d9cfbd;
  font-size: 13px;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-dropdown a {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(242, 205, 124, 0.1);
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.mega-menu-column a:hover,
.nav-dropdown a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.mega-menu-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.mega-menu-collections .mega-menu-label {
  grid-column: 1 / -1;
}

.mega-menu-references {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.mega-menu-references .mega-menu-label {
  grid-column: 1 / -1;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(242, 205, 124, 0.24);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ivory);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button:hover {
  border-color: var(--gold-bright);
  background: rgba(242, 205, 124, 0.08);
  color: var(--gold-bright);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.site-header .header-cta {
  min-height: 42px;
  padding: 11px 16px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  align-content: center;
  gap: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.header-search-panel {
  border-top: 1px solid rgba(242, 205, 124, 0.15);
  background: #100d09;
}

.header-search-panel[hidden] {
  display: none;
}

.product-search-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: center;
  padding-block: 25px;
}

.product-search-form label {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-search-form > div,
.mobile-product-search {
  display: grid;
  grid-template-columns: 1fr auto;
}

.product-search-form input,
.mobile-product-search input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-right: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ivory);
  font: 14px "Trebuchet MS", Verdana, sans-serif;
}

.product-search-form input:focus,
.mobile-product-search input:focus {
  border-color: var(--gold-bright);
}

.product-search-form button,
.mobile-product-search button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #151006;
  cursor: pointer;
  font: 700 11px "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-overlay[hidden] {
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 71;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(90vw, 430px);
  flex-direction: column;
  padding: 22px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 59, 0.2), transparent 23rem),
    #0d0b08;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--gold-bright);
  font: 700 11px "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu-head .icon-button {
  font-size: 24px;
  font-weight: 300;
}

.mobile-menu-links {
  overflow-y: auto;
  margin: 22px -4px 0;
  padding: 0 4px 24px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.mobile-menu-links > a,
.mobile-menu-links summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(242, 205, 124, 0.14);
  color: var(--ivory);
  cursor: pointer;
  font-size: 14px;
}

.mobile-menu-links summary::after {
  color: var(--gold);
  content: "+";
  font-size: 18px;
}

.mobile-menu-links details[open] summary::after {
  content: "−";
}

.mobile-menu-links summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-links details div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(242, 205, 124, 0.14);
}

.mobile-menu-links details a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.mobile-menu-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #151006;
  font: 700 11px "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.menu-open {
  overflow: hidden;
}

.footer-consult {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(199, 154, 59, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.02);
}

.footer-consult-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-block: clamp(40px, 5vw, 68px);
}

.footer-consult h2 {
  max-width: 760px;
  margin: 7px 0 0;
  font-size: clamp(30px, 4vw, 54px);
}

.site-footer {
  display: block;
  padding: 0;
  border-top: 0;
  background: #080705;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(130px, 0.65fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(52px, 7vw, 92px);
}

.site-footer .footer-brand,
.site-footer .footer-column {
  display: block;
}

.footer-brand > p {
  max-width: 390px;
  margin: 23px 0 0;
}

.footer-brand .footer-location {
  margin-top: 14px;
  color: #e3d7c1;
}

.footer-column h3 {
  font-weight: 700;
}

.footer-column > a {
  display: block;
  padding: 5px 0;
  color: #d8cdb9;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column > a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.footer-column > p {
  max-width: 260px;
  margin: 16px 0 0;
  font-size: 11px;
  line-height: 1.65;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(242, 205, 124, 0.14);
  color: #8f8574;
  font-size: 11px;
}

.site-footer .footer-bottom p {
  margin: 0;
}

.catalog-empty-state {
  max-width: 850px;
  margin: 10px auto 0;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.catalog-empty-state h2 {
  margin: 8px 0 14px;
}

.catalog-empty-state > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

@media (max-width: 1280px) {
  .site-header-main {
    gap: 20px;
  }

  .primary-nav {
    gap: 15px;
  }

  .site-header .brand span {
    display: none;
  }

  .site-header-main {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 1099px) {
  .global-shell {
    width: min(100% - 32px, 1480px);
  }

  .site-header-main {
    min-height: 70px;
  }

  .site-header .brand span {
    display: inline;
  }

  .primary-nav,
  .search-toggle {
    display: none;
  }

  .site-header-main {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .global-shell {
    width: min(100% - 28px, 1480px);
  }

  .utility-bar-inner {
    display: flex;
    min-height: 32px;
    justify-content: center;
  }

  .utility-bar-inner > * {
    display: none;
  }

  .utility-bar-inner > *:first-child {
    display: inline;
  }

  .site-header .brand span {
    font-size: 13px;
  }

  .site-header .brand img {
    width: 40px;
    height: 40px;
  }

  .site-header .header-cta {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .footer-consult-inner,
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-consult-inner {
    gap: 24px;
  }

  .footer-consult .btn {
    width: 100%;
  }

  .site-footer .footer-main {
    gap: 38px;
  }

  .site-footer .footer-bottom {
    display: grid;
    justify-content: start;
    gap: 7px;
  }

  .mobile-menu-links details div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .nav-dropdown,
  .mobile-menu,
  .nav-link::after {
    transition: none;
  }
}

/* Phase three: multi-brand editorial homepage. */
.multibrand-home {
  background: #0a0907;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(199, 154, 59, 0.18), transparent 27rem),
    linear-gradient(110deg, #090806 0%, #12100b 58%, #080705 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 205, 124, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 205, 124, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(48px, 7vw, 120px);
  min-height: min(830px, calc(100vh - 112px));
  align-items: center;
  padding-block: clamp(72px, 8vw, 128px);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.home-hero-copy h1 {
  margin: 18px 0 28px;
  font-size: clamp(55px, 6.6vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.home-hero-copy h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.home-hero-text {
  max-width: 640px;
  margin: 0;
  color: #c8bca6;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.78;
}

.home-hero-copy .hero-actions {
  margin-top: 36px;
}

.home-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 56px 0 0;
  border-block: 1px solid var(--line);
}

.home-hero-facts div {
  padding: 23px 18px 22px 0;
}

.home-hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.home-hero-facts dt {
  color: var(--gold-bright);
  font-size: 24px;
}

.home-hero-facts dd {
  margin: 5px 0 0;
  color: #9f9481;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.home-hero-stage::before {
  position: absolute;
  width: min(37vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 205, 124, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 240, 223, 0.95) 0 54%, rgba(247, 240, 223, 0.06) 54.5% 56%, transparent 56.5%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  content: "";
}

.home-orbit {
  position: absolute;
  border: 1px solid rgba(242, 205, 124, 0.14);
  border-radius: 50%;
}

.home-orbit-one {
  width: min(46vw, 700px);
  aspect-ratio: 1;
}

.home-orbit-two {
  width: min(55vw, 840px);
  aspect-ratio: 1;
}

.home-hero-watch {
  position: relative;
  z-index: 2;
  width: min(32vw, 490px);
  filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.35));
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
}

.home-reference-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 7%;
  width: min(310px, 46%);
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(13, 11, 8, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.home-reference-card > span,
.home-reference-card a {
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-reference-card strong {
  display: block;
  margin: 9px 0 16px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
}

.home-brand-section,
.home-trust-section {
  padding-block: clamp(80px, 10vw, 150px);
  background: #e9dfca;
  color: #17120b;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 90px);
}

.home-section-heading > div > span {
  display: block;
  max-width: 260px;
  margin-top: 14px;
  color: #776b59;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.home-section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 18, 11, 0.25);
  border-left: 1px solid rgba(23, 18, 11, 0.25);
}

.home-brand-card {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid rgba(23, 18, 11, 0.25);
  border-bottom: 1px solid rgba(23, 18, 11, 0.25);
  isolation: isolate;
  transition: color 240ms ease, background 240ms ease;
}

.home-brand-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 154, 59, 0.18), transparent 50%);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.home-brand-card:hover {
  background: #17120b;
  color: var(--ivory);
}

.home-brand-card:hover::before {
  opacity: 1;
}

.home-brand-index {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.home-brand-mark {
  position: absolute;
  top: 18px;
  right: 30px;
  color: rgba(23, 18, 11, 0.06);
  font-size: clamp(105px, 15vw, 220px);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  transition: color 240ms ease, transform 240ms ease;
}

.home-brand-card:hover .home-brand-mark {
  color: rgba(242, 205, 124, 0.08);
  transform: translate(-8px, 8px);
}

.home-brand-card > div {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 58%;
  margin-top: 95px;
}

.home-brand-watch {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: 2%;
  width: 43%;
  height: 64%;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04);
  mix-blend-mode: multiply;
  transform: rotate(-4deg);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 240ms ease;
}

.home-brand-card:hover .home-brand-watch {
  filter: saturate(0.75) contrast(1.08) brightness(0.9);
  transform: scale(1.045) rotate(-7deg);
}

.home-brand-card small {
  display: block;
  margin-bottom: 13px;
  color: #8a6d32;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-brand-card strong {
  display: block;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.home-brand-card p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #625847;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.home-brand-card:hover p {
  color: #b9ad98;
}

.home-brand-action {
  align-self: end;
  margin-top: 35px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-catalog-section {
  padding-block: clamp(84px, 10vw, 155px);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 154, 59, 0.11), transparent 28rem),
    #0b0907;
}

.home-section-heading-light h2 {
  color: var(--ivory);
}

.home-section-heading-light > div > span {
  color: var(--muted);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.home-product-card {
  min-width: 0;
  background: #100e0a;
}

.home-product-media {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: #f0ece3;
}

.home-product-media > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 18, 11, 0.25);
  color: #554a39;
  font: 10px "Trebuchet MS", Verdana, sans-serif;
}

.home-product-media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.05) rotate(-2deg);
}

.home-product-card > div {
  min-height: 190px;
  padding: 25px;
}

.home-product-card p {
  margin: 0 0 9px;
  color: var(--gold-bright);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0 0 20px;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.13;
}

.home-product-card > div > a {
  color: #b8ad98;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-catalog-link {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.home-sourcing-section {
  padding-block: clamp(84px, 10vw, 155px);
  border-block: 1px solid rgba(23, 18, 11, 0.15);
  background: #c4a15a;
  color: #17120b;
}

.home-sourcing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(60px, 10vw, 160px);
}

.home-sourcing-intro h2 {
  margin: 14px 0 28px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-sourcing-intro > p:not(.eyebrow) {
  max-width: 650px;
  color: #4d402b;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.home-sourcing-intro .text-link {
  color: #17120b;
}

.home-sourcing-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 18, 11, 0.28);
  list-style: none;
}

.home-sourcing-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid rgba(23, 18, 11, 0.28);
}

.home-sourcing-steps li > span {
  font: 700 11px "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.1em;
}

.home-sourcing-steps strong {
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 400;
}

.home-sourcing-steps p {
  margin: 7px 0 0;
  color: #57472f;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 18, 11, 0.25);
  border-left: 1px solid rgba(23, 18, 11, 0.25);
}

.home-trust-grid a {
  min-height: 315px;
  padding: 34px;
  border-right: 1px solid rgba(23, 18, 11, 0.25);
  border-bottom: 1px solid rgba(23, 18, 11, 0.25);
  transition: background 200ms ease, color 200ms ease;
}

.home-trust-grid a:hover {
  background: #17120b;
  color: var(--ivory);
}

.home-trust-grid span {
  display: block;
  margin-bottom: 72px;
  color: #8a6d32;
  font: 700 10px "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.12em;
}

.home-trust-grid strong {
  display: block;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.home-trust-grid p {
  margin: 16px 0 0;
  color: #655a49;
  font: 13px/1.7 "Trebuchet MS", Verdana, sans-serif;
}

.home-trust-grid a:hover p {
  color: var(--muted);
}

.home-final-cta {
  padding-block: clamp(70px, 8vw, 115px);
  background:
    radial-gradient(circle at 18% 50%, rgba(199, 154, 59, 0.18), transparent 25rem),
    #090806;
}

.home-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.home-final-cta h2 {
  margin: 9px 0 0;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

@media (max-width: 1099px) {
  .home-hero-grid,
  .home-sourcing-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    min-height: 0;
  }

  .home-hero-copy {
    max-width: 880px;
  }

  .home-hero-stage {
    min-height: 620px;
  }

  .home-hero-stage::before {
    width: min(68vw, 560px);
  }

  .home-orbit-one {
    width: min(80vw, 700px);
  }

  .home-orbit-two {
    width: min(94vw, 840px);
  }

  .home-hero-watch {
    width: min(58vw, 490px);
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-hero-grid {
    gap: 34px;
    padding-block: 54px 62px;
  }

  .home-hero-copy h1 {
    font-size: clamp(48px, 14.5vw, 66px);
  }

  .home-hero-text {
    font-size: 15px;
  }

  .home-hero-copy .hero-actions {
    display: grid;
  }

  .home-hero-copy .hero-actions .btn {
    width: 100%;
  }

  .home-hero-facts {
    margin-top: 38px;
  }

  .home-hero-facts div,
  .home-hero-facts div + div {
    padding: 18px 8px;
  }

  .home-hero-facts dt {
    font-size: 18px;
  }

  .home-hero-facts dd {
    font-size: 8px;
  }

  .home-hero-stage {
    min-height: 410px;
  }

  .home-hero-stage::before {
    width: min(92vw, 360px);
  }

  .home-orbit-one {
    width: 108vw;
  }

  .home-orbit-two {
    display: none;
  }

  .home-hero-watch {
    width: min(76vw, 310px);
  }

  .home-reference-card {
    right: 0;
    bottom: -8px;
    width: 72%;
    padding: 17px;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-section-heading h2 {
    font-size: 44px;
  }

  .home-brand-grid,
  .home-product-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-brand-card {
    min-height: 330px;
  }

  .home-brand-card > div {
    max-width: 62%;
  }

  .home-brand-watch {
    top: 13%;
    right: -3%;
    width: 47%;
    height: 60%;
  }

  .home-product-card > div {
    min-height: 0;
  }

  .home-sourcing-grid {
    gap: 48px;
  }

  .home-sourcing-intro h2 {
    font-size: 45px;
  }

  .home-sourcing-steps li {
    grid-template-columns: 45px 1fr;
  }

  .home-trust-grid a {
    min-height: 255px;
  }

  .home-trust-grid span {
    margin-bottom: 48px;
  }

  .home-final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-final-cta .btn {
    width: 100%;
  }
}

/* Commerce V2: product-first homepage and compact inquiry catalog. */
body.commerce-home-v2,
body.commerce-catalog-v2 {
  background: #f4f5f6;
  color: #17191c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body.commerce-home-v2 .screen-reader-text,
body.commerce-catalog-v2 .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.commerce-home-v2 .utility-bar,
body.commerce-catalog-v2 .utility-bar {
  height: 34px;
  background: #1b1d20;
  border-bottom: 0;
}

body.commerce-home-v2 .utility-bar-inner,
body.commerce-catalog-v2 .utility-bar-inner {
  min-height: 34px;
  color: #f1f1ee;
  font-size: 10px;
  letter-spacing: 0.08em;
}

body.commerce-home-v2 .utility-bar-inner > * + *::before,
body.commerce-catalog-v2 .utility-bar-inner > * + *::before {
  display: none;
}

body.commerce-home-v2 .site-header,
body.commerce-catalog-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 245, 246, 0.97);
  border-bottom: 1px solid #d9dde1;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.commerce-home-v2 .site-header-main,
body.commerce-catalog-v2 .site-header-main {
  min-height: 76px;
}

body.commerce-home-v2 .site-header .brand,
body.commerce-catalog-v2 .site-header .brand {
  color: #17191c;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

body.commerce-home-v2 .site-header .brand img,
body.commerce-catalog-v2 .site-header .brand img {
  width: 36px;
  height: 36px;
  border: 1px solid #17191c;
  object-fit: contain;
}

body.commerce-home-v2 .nav-link,
body.commerce-catalog-v2 .nav-link {
  color: #282b2f;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: none;
}

body.commerce-home-v2 .nav-link::after,
body.commerce-catalog-v2 .nav-link::after {
  background: #9a7437;
}

body.commerce-home-v2 .icon-button,
body.commerce-catalog-v2 .icon-button {
  color: #17191c;
  border-color: #bfc4c9;
}

body.commerce-home-v2 .site-header .header-cta,
body.commerce-catalog-v2 .site-header .header-cta {
  background: #17191c;
  border-color: #17191c;
  color: #f7f7f4;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.commerce-home-v2 .mega-menu,
body.commerce-home-v2 .nav-dropdown,
body.commerce-catalog-v2 .mega-menu,
body.commerce-catalog-v2 .nav-dropdown,
body.commerce-home-v2 .header-search-panel,
body.commerce-catalog-v2 .header-search-panel {
  background: #f7f7f5;
  border-color: #d9dde1;
  color: #17191c;
  box-shadow: 0 24px 50px rgba(20, 23, 26, 0.1);
}

body.commerce-home-v2 .mega-menu h2,
body.commerce-catalog-v2 .mega-menu h2,
body.commerce-home-v2 .footer-consult h2,
body.commerce-catalog-v2 .footer-consult h2 {
  font-family: inherit;
  font-style: normal;
}

body.commerce-home-v2 .mega-menu-intro > p:not(.eyebrow),
body.commerce-catalog-v2 .mega-menu-intro > p:not(.eyebrow),
body.commerce-home-v2 .mega-menu-column a,
body.commerce-catalog-v2 .mega-menu-column a,
body.commerce-home-v2 .nav-dropdown a,
body.commerce-catalog-v2 .nav-dropdown a {
  color: #555b62;
}

body.commerce-home-v2 .footer-consult,
body.commerce-catalog-v2 .footer-consult {
  background: #202327;
}

body.commerce-home-v2 .site-footer,
body.commerce-catalog-v2 .site-footer {
  background: #f4f5f6;
  color: #17191c;
  border-top: 1px solid #d9dde1;
}

body.commerce-home-v2 .site-footer .brand,
body.commerce-catalog-v2 .site-footer .brand,
body.commerce-home-v2 .footer-column h3,
body.commerce-catalog-v2 .footer-column h3 {
  color: #17191c;
  font-family: inherit;
}

body.commerce-home-v2 .footer-brand > p,
body.commerce-catalog-v2 .footer-brand > p,
body.commerce-home-v2 .footer-column > a,
body.commerce-catalog-v2 .footer-column > a,
body.commerce-home-v2 .footer-column > p,
body.commerce-catalog-v2 .footer-column > p,
body.commerce-home-v2 .site-footer .footer-bottom,
body.commerce-catalog-v2 .site-footer .footer-bottom {
  color: #656b72;
}

.commerce-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #17191c;
  color: #17191c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.commerce-button:hover {
  background: #e7e9eb;
}

.commerce-button-dark {
  background: #17191c;
  color: #f7f7f4;
}

.commerce-button-dark:hover {
  background: #303338;
}

.commerce-label {
  margin: 0;
  color: #9a7437;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.commerce-hero {
  padding: 26px 0 20px;
}

.commerce-hero-grid {
  display: grid;
  min-height: 390px;
  grid-template-columns: 1.04fr 0.96fr;
  padding: 0;
  overflow: hidden;
  background: #f9f9f7;
  border: 1px solid #d9dde1;
}

.commerce-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px clamp(34px, 5vw, 76px);
}

.commerce-hero-copy h1 {
  max-width: 680px;
  margin: 18px 0;
  color: #15171a;
  font-family: inherit;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 720;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.commerce-hero-copy > p:not(.commerce-label) {
  max-width: 620px;
  margin: 0;
  color: #6d7279;
  font-size: 16px;
  line-height: 1.62;
}

.commerce-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.commerce-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eceff1;
}

.commerce-hero-media img {
  width: min(72%, 560px);
  height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.commerce-hero-media span {
  position: absolute;
  bottom: 18px;
  left: 22px;
  color: #737981;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 0 30px;
}

.commerce-brand-strip a {
  min-width: 0;
  padding: 22px 18px;
  background: #f9f9f7;
  border: 1px solid #d9dde1;
  border-right: 0;
}

.commerce-brand-strip a:last-child {
  border-right: 1px solid #d9dde1;
}

.commerce-brand-strip a:hover,
.commerce-brand-strip a.is-active {
  background: #17191c;
  color: #f7f7f4;
}

.commerce-brand-strip strong,
.commerce-brand-strip span {
  display: block;
}

.commerce-brand-strip strong {
  font-size: 15px;
}

.commerce-brand-strip span {
  margin-top: 6px;
  overflow: hidden;
  color: #737981;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.commerce-brand-strip a:hover span,
.commerce-brand-strip a.is-active span {
  color: #b8bdc2;
}

.commerce-products-section {
  padding: 46px 0 82px;
}

.commerce-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.commerce-section-head h2,
.commerce-collections h2,
.commerce-final-cta h2 {
  margin: 0;
  color: #17191c;
  font-family: inherit;
  font-size: 32px;
  font-weight: 720;
  font-style: normal;
  letter-spacing: -0.035em;
}

.commerce-section-head p,
.commerce-collections p,
.commerce-final-cta p {
  margin: 7px 0 0;
  color: #6d7279;
  line-height: 1.55;
}

.commerce-search {
  display: flex;
}

.commerce-search input,
.commerce-search button {
  min-height: 44px;
  border: 1px solid #d0d4d8;
  background: #f9f9f7;
  color: #17191c;
}

.commerce-search input {
  width: min(280px, 34vw);
  padding: 0 13px;
}

.commerce-search button {
  padding: 0 16px;
  border-left: 0;
  font-weight: 750;
}

.commerce-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #d9dde1;
  border: 1px solid #d9dde1;
}

.commerce-product-card {
  min-width: 0;
  background: #f9f9f7;
}

.commerce-product-image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f5f5f2;
}

.commerce-product-image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.commerce-product-card:hover .commerce-product-image img {
  transform: scale(1.035);
}

.commerce-product-info {
  min-height: 175px;
  padding: 18px;
  border-top: 1px solid #e4e6e8;
}

.commerce-product-info > p {
  margin: 0;
  color: #9a7437;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commerce-product-info h3 {
  min-height: 44px;
  margin: 9px 0 18px;
  color: #17191c;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
}

.commerce-product-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #646a71;
  font-size: 11px;
}

.commerce-product-info > div a {
  padding-bottom: 3px;
  color: #17191c;
  border-bottom: 1px solid #17191c;
  font-weight: 800;
  text-transform: uppercase;
}

.commerce-view-all {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.commerce-collections {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  margin-bottom: 78px;
  padding: 0;
  overflow: hidden;
  background: #202327;
  color: #f5f5f2;
}

.commerce-collections-intro {
  padding: 50px;
}

.commerce-collections h2 {
  color: #f5f5f2;
}

.commerce-collections p {
  color: #b9bdc3;
}

.commerce-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #3b3e43;
}

.commerce-collection-grid a {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-right: 1px solid #3b3e43;
  border-bottom: 1px solid #3b3e43;
}

.commerce-collection-grid a:hover {
  background: #2b2e32;
}

.commerce-collection-grid strong,
.commerce-collection-grid span {
  display: block;
}

.commerce-collection-grid strong {
  font-size: 17px;
}

.commerce-collection-grid span {
  margin-top: 6px;
  color: #aeb3b9;
  font-size: 11px;
}

.commerce-trust-strip {
  background: #f9f9f7;
  border-top: 1px solid #d9dde1;
  border-bottom: 1px solid #d9dde1;
}

.commerce-trust-strip > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.commerce-trust-strip a {
  padding: 28px;
  border-right: 1px solid #d9dde1;
}

.commerce-trust-strip a:last-child {
  border-right: 0;
}

.commerce-trust-strip strong,
.commerce-trust-strip span {
  display: block;
}

.commerce-trust-strip strong {
  font-size: 14px;
}

.commerce-trust-strip span {
  margin-top: 6px;
  color: #6d7279;
  font-size: 12px;
  line-height: 1.5;
}

.commerce-final-cta {
  padding: 58px 0;
}

.commerce-final-cta > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Catalog V2 */
.catalog-v2-page {
  padding: 24px 0 70px;
}

.catalog-v2-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 0 0 20px;
  color: #747a81;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.catalog-v2-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
  background: #181a1c;
  color: #f0f0ed;
  border: 1px solid #34383c;
}

.catalog-v2-sidebar {
  min-width: 0;
  padding: 28px 20px;
  border-right: 1px solid #34383c;
}

.catalog-v2-sidebar > div {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #34383c;
}

.catalog-v2-sidebar strong {
  display: block;
  margin-bottom: 13px;
  color: #d7d9d9;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalog-v2-sidebar a:not(.catalog-v2-side-cta) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  color: #aaafb4;
  font-size: 12px;
}

.catalog-v2-sidebar a.is-active,
.catalog-v2-sidebar a:hover {
  color: #f0f0ed;
}

.catalog-v2-sidebar a.is-active {
  padding-left: 10px;
  border-left: 3px solid #c29a57;
}

.catalog-v2-sidebar a span {
  color: #73787e;
}

.catalog-v2-side-cta {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  background: #1b765b;
  color: #f5f5f2;
  font-size: 11px;
  font-weight: 800;
}

.catalog-v2-main {
  min-width: 0;
  padding: 30px 28px 36px;
}

.catalog-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid #34383c;
}

.catalog-v2-head p {
  margin: 0 0 10px;
  color: #c29a57;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalog-v2-head h1 {
  max-width: 720px;
  margin: 0 0 8px;
  color: #f0f0ed;
  font-family: inherit;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 720;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.catalog-v2-head > div:first-child > span {
  display: block;
  max-width: 720px;
  color: #a7aaae;
  font-size: 12px;
  line-height: 1.5;
}

.catalog-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(105px, 1fr));
  border: 1px solid #3a3e42;
}

.catalog-v2-stats > div {
  padding: 14px 16px;
  border-right: 1px solid #3a3e42;
}

.catalog-v2-stats > div:last-child {
  border-right: 0;
}

.catalog-v2-stats strong,
.catalog-v2-stats span {
  display: block;
}

.catalog-v2-stats strong {
  font-size: 18px;
}

.catalog-v2-stats span {
  margin-top: 5px;
  color: #a7aaae;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-v2-collections {
  display: flex;
  gap: 8px;
  padding: 15px 0 0;
  overflow-x: auto;
}

.catalog-v2-collections a {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: #c7cacc;
  border: 1px solid #3a3e42;
  font-size: 10px;
}

.catalog-v2-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #34383c;
}

.catalog-v2-filters,
.catalog-v2-tools {
  display: flex;
  gap: 7px;
}

.catalog-v2-filters button,
.catalog-v2-tools input,
.catalog-v2-tools select {
  min-height: 38px;
  padding: 0 11px;
  background: transparent;
  color: #b5b9bd;
  border: 1px solid #3a3e42;
  font-size: 10px;
}

.catalog-v2-filters button:hover,
.catalog-v2-filters button.is-active {
  background: #f0f0ed;
  color: #181a1c;
  border-color: #f0f0ed;
}

.catalog-v2-tools input {
  width: 210px;
}

.catalog-v2-tools select {
  color: #f0f0ed;
  background: #212427;
}

.catalog-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.catalog-v2-card {
  min-width: 0;
  background: #212427;
  border: 1px solid transparent;
}

.catalog-v2-card:hover {
  border-color: #555a5f;
}

.catalog-v2-card[hidden] {
  display: none;
}

.catalog-v2-image {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #f5f5f2;
}

.catalog-v2-image > span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  max-width: calc(100% - 20px);
  overflow: hidden;
  padding: 5px 7px;
  background: rgba(24, 26, 28, 0.88);
  color: #f5f5f2;
  font-size: 8px;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-v2-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.catalog-v2-card:hover .catalog-v2-image img {
  transform: scale(1.025);
}

.catalog-v2-info {
  padding: 14px;
}

.catalog-v2-info > p {
  min-height: 24px;
  margin: 0;
  color: #c29a57;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-v2-info h2 {
  min-height: 48px;
  margin: 7px 0 12px;
  color: #f0f0ed;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
}

.catalog-v2-meta {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  color: #a7aaae;
  border-top: 1px solid #3a3e42;
  font-size: 9px;
}

.catalog-v2-meta span:last-child {
  text-align: right;
}

.catalog-v2-quote {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: #f0f0ed;
  border: 1px solid #3a3e42;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-v2-quote:hover {
  background: #c29a57;
  color: #181a1c;
  border-color: #c29a57;
}

.catalog-v2-empty {
  padding: 60px 24px;
  text-align: center;
  color: #a7aaae;
}

.catalog-v2-empty h2 {
  color: #f0f0ed;
  font-family: inherit;
  font-size: 26px;
}

.catalog-v2-service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid #3a3e42;
}

.catalog-v2-service-row a {
  padding: 22px;
  border-right: 1px solid #3a3e42;
}

.catalog-v2-service-row a:last-child {
  border-right: 0;
}

.catalog-v2-service-row strong,
.catalog-v2-service-row span {
  display: block;
}

.catalog-v2-service-row strong {
  color: #f0f0ed;
  font-size: 13px;
}

.catalog-v2-service-row span {
  margin-top: 6px;
  color: #a7aaae;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .commerce-product-grid,
  .catalog-v2-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-v2-head {
    grid-template-columns: 1fr;
  }

  .catalog-v2-stats {
    justify-self: start;
  }

  .catalog-v2-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .commerce-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .commerce-hero-copy h1 {
    font-size: 48px;
  }

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

  .commerce-brand-strip a:nth-child(3) {
    border-right: 1px solid #d9dde1;
  }

  .commerce-brand-strip a:nth-child(n + 4) {
    border-top: 0;
  }

  .commerce-collections {
    grid-template-columns: 1fr;
  }

  .commerce-collection-grid {
    border-top: 1px solid #3b3e43;
    border-left: 0;
  }

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

  .catalog-v2-sidebar {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid #34383c;
  }

  .catalog-v2-sidebar > div {
    display: none;
  }

  .catalog-v2-side-cta {
    width: fit-content;
    padding: 0 18px;
  }
}

@media (max-width: 680px) {
  body.commerce-home-v2 .utility-bar-inner > :nth-child(2),
  body.commerce-catalog-v2 .utility-bar-inner > :nth-child(2) {
    display: none;
  }

  body.commerce-home-v2 .site-header-main,
  body.commerce-catalog-v2 .site-header-main {
    min-height: 64px;
  }

  body.commerce-home-v2 .site-header .brand,
  body.commerce-catalog-v2 .site-header .brand {
    font-size: 12px;
  }

  .commerce-hero {
    padding: 16px 14px 18px;
  }

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

  .commerce-hero-copy {
    padding: 40px 25px 28px;
  }

  .commerce-hero-copy h1 {
    font-size: 43px;
  }

  .commerce-hero-copy > p:not(.commerce-label) {
    font-size: 14px;
  }

  .commerce-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-hero-media {
    min-height: 340px;
  }

  .commerce-hero-media img {
    height: 330px;
  }

  .commerce-brand-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 14px 18px;
  }

  .commerce-brand-strip a:nth-child(2),
  .commerce-brand-strip a:nth-child(4) {
    border-right: 1px solid #d9dde1;
  }

  .commerce-brand-strip a:nth-child(n + 3) {
    border-top: 0;
  }

  .commerce-brand-strip a:last-child {
    grid-column: 1 / -1;
  }

  .commerce-products-section {
    padding: 38px 14px 58px;
  }

  .commerce-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .commerce-search input {
    width: 100%;
  }

  .commerce-search {
    width: 100%;
  }

  .commerce-search input {
    flex: 1;
  }

  .commerce-product-grid,
  .catalog-v2-grid {
    grid-template-columns: 1fr 1fr;
  }

  .commerce-product-info {
    min-height: 190px;
    padding: 13px;
  }

  .commerce-product-info h3 {
    min-height: 58px;
    font-size: 13px;
  }

  .commerce-product-info > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .commerce-collections {
    margin: 0 14px 56px;
  }

  .commerce-collections-intro {
    padding: 32px 24px;
  }

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

  .commerce-collection-grid a {
    min-height: 112px;
  }

  .commerce-trust-strip > div,
  .commerce-final-cta > div {
    grid-template-columns: 1fr;
  }

  .commerce-trust-strip > div {
    display: grid;
    padding: 0 14px;
  }

  .commerce-trust-strip a {
    border-right: 0;
    border-bottom: 1px solid #d9dde1;
  }

  .commerce-final-cta {
    padding: 46px 14px;
  }

  .commerce-final-cta > div {
    display: grid;
  }

  .catalog-v2-page {
    padding: 16px 12px 48px;
  }

  .catalog-v2-main {
    padding: 24px 12px 28px;
  }

  .catalog-v2-head h1 {
    font-size: 32px;
  }

  .catalog-v2-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-v2-stats > div {
    min-width: 0;
    padding: 11px;
  }

  .catalog-v2-filters,
  .catalog-v2-tools {
    width: 100%;
    overflow-x: auto;
  }

  .catalog-v2-filters button {
    flex: 0 0 auto;
  }

  .catalog-v2-tools input {
    width: 190px;
  }

  .catalog-v2-info {
    padding: 10px;
  }

  .catalog-v2-info h2 {
    min-height: 62px;
    font-size: 11px;
  }

  .catalog-v2-meta {
    display: block;
    min-height: 55px;
    line-height: 1.5;
  }

  .catalog-v2-meta span {
    display: block;
  }

  .catalog-v2-meta span:last-child {
    margin-top: 4px;
    text-align: left;
  }

  .catalog-v2-service-row {
    grid-template-columns: 1fr;
  }

  .catalog-v2-service-row a {
    border-right: 0;
    border-bottom: 1px solid #3a3e42;
  }

  .catalog-v2-service-row a:last-child {
    border-bottom: 0;
  }
}

/* Global header skin shared by homepage, catalog, product and support pages. */
.utility-bar {
  height: 34px;
  background: #1b1d20;
  border-bottom: 0;
}

.utility-bar-inner {
  min-height: 34px;
  color: #f1f1ee;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.utility-bar-inner > * + *::before {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 245, 246, 0.97);
  border-bottom: 1px solid #d9dde1;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.site-header-main {
  min-height: 76px;
}

.site-header .brand {
  color: #17191c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.site-header .brand img {
  width: 36px;
  height: 36px;
  border: 1px solid #17191c;
  object-fit: contain;
}

.site-header .nav-link {
  color: #282b2f;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header .nav-link::after {
  background: #9a7437;
}

.site-header .icon-button {
  color: #17191c;
  border-color: #bfc4c9;
}

.site-header .header-cta {
  background: #17191c;
  border-color: #17191c;
  color: #f7f7f4;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header .mega-menu,
.site-header .nav-dropdown,
.header-search-panel {
  background: #f7f7f5;
  border-color: #d9dde1;
  color: #17191c;
  box-shadow: 0 24px 50px rgba(20, 23, 26, 0.1);
}

.site-header .mega-menu h2 {
  color: #17191c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-style: normal;
}

.site-header .mega-menu-intro > p:not(.eyebrow),
.site-header .mega-menu-column a,
.site-header .nav-dropdown a {
  color: #555b62;
}

@media (max-width: 680px) {
  .utility-bar-inner > :nth-child(2) {
    display: none;
  }

  .site-header-main {
    min-height: 64px;
  }

  .site-header .brand {
    font-size: 12px;
  }
}

/* Taste audit 2026-07-18: cold-luxury product pages and mobile catalog fixes. */
.catalog-v2-side-cta,
.catalog-v2-mobile-cta {
  background: #c29a57;
  color: #181a1c;
}

.catalog-v2-mobile-cta {
  display: none;
}

body.watch-product-v2 {
  background: #f4f5f6;
  color: #17191c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body.watch-product-v2 main {
  background: #f4f5f6;
}

body.watch-product-v2 .eyebrow,
.watch-v2-product-meta {
  color: #8b672f;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.watch-v2-hero {
  grid-template-areas:
    "breadcrumbs breadcrumbs"
    "gallery summary"
    "gallery purchase";
  grid-template-columns: minmax(360px, 1.02fr) minmax(360px, 0.98fr);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(34px, 5vw, 70px);
  row-gap: 18px;
  align-items: start;
  padding: 24px clamp(18px, 5vw, 72px) 64px;
  background: #f4f5f6;
}

.watch-v2-breadcrumbs {
  grid-area: breadcrumbs;
  color: #737980;
  font-family: inherit;
}

.watch-v2-breadcrumbs a:last-child {
  color: #17191c;
}

.watch-v2-gallery {
  grid-area: gallery;
  width: 100%;
  max-width: 680px;
  justify-self: center;
}

.watch-v2-summary {
  grid-area: summary;
  padding-top: 8px;
}

.watch-v2-purchase {
  grid-area: purchase;
  min-width: 0;
}

.watch-v2-frame {
  border-color: #d9dde1;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 23, 26, 0.1);
}

.watch-v2-frame::after {
  border-color: rgba(23, 25, 28, 0.08);
}

.watch-v2-frame img {
  aspect-ratio: 1;
  object-fit: contain;
}

.watch-v2-thumbnails {
  grid-auto-columns: 84px;
  scrollbar-width: none;
}

.watch-v2-thumbnails::-webkit-scrollbar {
  display: none;
}

.watch-v2-thumbnail {
  min-width: 84px;
  border-color: #d9dde1;
  background: #fff;
}

.watch-v2-thumbnail:hover,
.watch-v2-thumbnail:focus-visible,
.watch-v2-thumbnail.is-active {
  border-color: #8b672f;
}

.watch-v2-thumbnail.is-active::after {
  border-color: #8b672f;
}

.watch-v2-image-note {
  color: #656b72;
  font-family: inherit;
}

.watch-v2-image-note span {
  color: #8b672f;
}

.watch-v2-summary h1 {
  margin: 10px 0 16px;
  color: #17191c;
  font-family: inherit;
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.watch-v2-title-reference {
  margin-top: 10px;
  color: #8b672f;
  font-family: inherit;
  font-size: clamp(18px, 1.7vw, 23px);
  letter-spacing: -0.01em;
}

.watch-v2-lead {
  margin-bottom: 0;
  color: #656b72;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.65;
}

.watch-v2-quote-card {
  margin: 0 0 18px;
  padding: 20px 22px;
  border-color: #d9dde1;
  background: #fff;
}

.watch-v2-quote-card::before {
  background: #8b672f;
}

.watch-v2-quote-card span,
.watch-v2-quote-card p {
  color: #656b72;
  font-family: inherit;
}

.watch-v2-quote-card strong {
  color: #17191c;
  font-family: inherit;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

body.watch-product-v2 .btn-primary {
  border-color: #17191c;
  background: #17191c;
  color: #f7f7f4;
}

body.watch-product-v2 .btn-secondary {
  border-color: #aeb4ba;
  background: #fff;
  color: #17191c;
}

.watch-v2-proofline {
  margin-top: 20px;
  border-top-color: #d9dde1;
  color: #17191c;
  font-family: inherit;
}

.watch-v2-proofline strong {
  margin-top: 0;
  color: #4f555c;
  font-size: 11px;
}

.watch-v2-editorial,
.watch-v2-spec-section,
.watch-v2-process,
.watch-v2-faq {
  padding: clamp(54px, 6vw, 82px) clamp(18px, 5vw, 72px);
  color: #17191c;
}

.watch-v2-editorial {
  gap: clamp(34px, 6vw, 90px);
  border-color: #d9dde1;
  background: #f9f9f7;
}

.watch-v2-editorial h2,
.watch-v2-spec-section h2,
.watch-v2-process h2,
.watch-v2-faq h2,
body.watch-product-v2 .related-products h2,
body.watch-product-v2 .final-cta h2 {
  color: #17191c;
  font-family: inherit;
  font-size: clamp(32px, 3.4vw, 44px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.watch-v2-editorial > div:last-child > p,
.watch-v2-section-title > p:last-child,
.watch-v2-process-grid p,
.watch-v2-faq-list p {
  color: #656b72;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
}

.watch-v2-highlights {
  gap: 10px;
  margin-top: 24px;
}

.watch-v2-highlights li {
  min-height: 0;
  padding: 16px;
  border-color: #d9dde1;
  background: #fff;
  color: #282b2f;
  font-family: inherit;
}

.watch-v2-highlights li::before {
  display: none;
}

.watch-v2-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 0;
}

.watch-v2-spec-list div {
  display: block;
  padding: 18px;
  border: 1px solid #d9dde1;
  background: #fff;
}

.watch-v2-spec-list dt,
.watch-v2-spec-list dd {
  font-family: inherit;
}

.watch-v2-spec-list dt {
  color: #737980;
}

.watch-v2-spec-list dd {
  margin-top: 8px;
  color: #17191c;
  font-weight: 700;
}

.watch-v2-process {
  border-color: #d9dde1;
  background: #eef1f3;
}

.watch-v2-process-grid {
  gap: 12px;
  margin-top: 28px;
  background: transparent;
}

.watch-v2-process-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #d9dde1;
  background: #fff;
}

.watch-v2-process-grid h3 {
  margin: 0 0 18px;
  color: #17191c;
  font-family: inherit;
  font-size: 24px;
}

.watch-v2-faq-list details {
  border-color: #d9dde1;
}

.watch-v2-faq-list summary {
  color: #17191c;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
}

body.watch-product-v2 .related-products {
  background: #f4f5f6;
}

body.watch-product-v2 .section-heading {
  display: block;
}

body.watch-product-v2 .product-grid {
  gap: 1px;
  background: #d9dde1;
  border: 1px solid #d9dde1;
}

body.watch-product-v2 .product-card {
  border: 0;
  background: #f9f9f7;
}

body.watch-product-v2 .product-card img {
  object-fit: contain;
  background: #fff;
}

body.watch-product-v2 .product-card div {
  font-family: inherit;
}

body.watch-product-v2 .product-card span {
  color: #8b672f;
  font-family: inherit;
  font-size: 10px;
}

body.watch-product-v2 .product-card h3 {
  color: #17191c;
  font-family: inherit;
  font-size: 17px;
}

body.watch-product-v2 .product-card p {
  color: #656b72;
  font-family: inherit;
}

body.watch-product-v2 .product-card div > a {
  border-color: #17191c;
  background: #17191c;
  color: #f7f7f4;
}

body.watch-product-v2 .final-cta {
  border-color: #d9dde1;
  background: #eef1f3;
}

body.watch-product-v2 .footer-consult {
  background: #202327;
}

body.watch-product-v2 .site-footer {
  border-top: 1px solid #d9dde1;
  background: #f4f5f6;
  color: #17191c;
}

body.watch-product-v2 .site-footer .brand,
body.watch-product-v2 .footer-column h3 {
  color: #17191c;
  font-family: inherit;
}

body.watch-product-v2 .footer-brand > p,
body.watch-product-v2 .footer-column > a,
body.watch-product-v2 .footer-column > p,
body.watch-product-v2 .site-footer .footer-bottom {
  color: #656b72;
}

.commerce-button:focus-visible,
.catalog-v2-filters button:focus-visible,
.catalog-v2-tools input:focus-visible,
.catalog-v2-tools select:focus-visible,
.catalog-v2-quote:focus-visible,
.catalog-v2-side-cta:focus-visible,
.catalog-v2-mobile-cta:focus-visible,
body.watch-product-v2 .btn:focus-visible,
body.watch-product-v2 .product-card div > a:focus-visible {
  outline: 3px solid #1b765b;
  outline-offset: 2px;
}

@media (max-width: 1040px) {
  .watch-v2-hero {
    grid-template-areas:
      "breadcrumbs"
      "summary"
      "gallery"
      "purchase";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .watch-v2-summary {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .catalog-v2-side-cta {
    display: none;
  }

  .catalog-v2-mobile-cta {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }
}

@media (max-width: 720px) {
  .watch-v2-hero {
    row-gap: 14px;
    padding: 16px 15px 40px;
  }

  .watch-v2-breadcrumbs {
    overflow: hidden;
    gap: 6px;
    font-size: 10px;
    text-overflow: ellipsis;
  }

  .watch-v2-summary h1 {
    margin: 8px 0 0;
    font-size: clamp(31px, 9.3vw, 36px);
    line-height: 1.02;
  }

  .watch-v2-title-reference {
    margin-top: 8px;
    font-size: 18px;
  }

  .watch-v2-lead,
  .watch-v2-image-note {
    display: none;
  }

  .watch-v2-frame {
    box-shadow: 0 16px 36px rgba(20, 23, 26, 0.1);
  }

  .watch-v2-thumbnails {
    grid-auto-columns: 64px;
    gap: 8px;
    padding-top: 10px;
  }

  .watch-v2-thumbnail {
    min-width: 64px;
  }

  .watch-v2-quote-card {
    padding: 18px;
  }

  .watch-v2-quote-card strong {
    font-size: 28px;
  }

  .watch-v2-proofline {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .watch-v2-editorial,
  .watch-v2-spec-section,
  .watch-v2-process,
  .watch-v2-faq {
    padding: 44px 18px;
  }

  .watch-v2-editorial h2,
  .watch-v2-spec-section h2,
  .watch-v2-process h2,
  .watch-v2-faq h2,
  body.watch-product-v2 .related-products h2,
  body.watch-product-v2 .final-cta h2 {
    font-size: 30px;
  }

  .watch-v2-highlights,
  .watch-v2-spec-list {
    grid-template-columns: 1fr;
  }

  .watch-v2-mobile-quote {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border-top-color: #d9dde1;
    background: rgba(244, 245, 246, 0.96);
    font-family: inherit;
  }

  .watch-v2-mobile-quote span {
    overflow: hidden;
    color: #17191c;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .watch-v2-mobile-quote a {
    background: #17191c;
    color: #f7f7f4;
    font-size: 11px;
  }
}

@media (max-width: 680px) {
  .catalog-v2-filters {
    flex-wrap: wrap;
    overflow: visible;
  }

  .catalog-v2-filters button {
    flex: 1 1 auto;
  }

  .catalog-v2-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    overflow: visible;
  }

  .catalog-v2-tools label,
  .catalog-v2-tools input,
  .catalog-v2-tools select {
    min-width: 0;
    width: 100%;
  }

  .catalog-v2-info > p,
  .catalog-v2-meta,
  .catalog-v2-quote {
    font-size: 10px;
  }

  .catalog-v2-info h2 {
    min-height: 66px;
    font-size: 13px;
  }
}
