/* =========================================================
   TIMELESS HOROLOGY CLUB — style.css
   Luxury single-page landing page
   Mobile-first vertical stack with premium desktop expansion
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  --ink: #050505;
  --ink-2: #0E0E0E;
  --ink-3: #141414;
  --gold: #C9A227;
  --gold-soft: #D9BE6E;
  --gold-deep: #9A7B18;
  --accent: #E8922B;          /* warm orange-gold for CTA on mobile light cards */
  --paper: #FFFFFF;
  --paper-2: #f5f3ef;         /* warm off-white for light card sections */
  --graphite: #999999;
  --graphite-dim: #6b6b6b;
  --ink-text: #1a1a1a;        /* dark text on light cards */
  --line: rgba(201, 162, 39, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(0, 0, 0, 0.1);

  --ff-serif: "Playfair Display", "Noto Serif SC", "Songti SC", Georgia, serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 600ms;

  --container: 1240px;
  --nav-h: 64px;
}

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

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

body {
  font-family: var(--ff-sans);
  background: var(--paper-2);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #222; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ---------- 3. Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--paper);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.tnum { font-variant-numeric: tabular-nums; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.container--narrow { max-width: 820px; }

.section { padding: 80px 0; position: relative; }
.section--light { background: var(--paper-2); color: var(--ink-text); }
.section--light h2, .section--light h3 { color: var(--ink-text); }

.section__eyebrow {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}

.section__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 500;
  margin-bottom: 20px;
}
.section__title--italic { font-style: italic; color: var(--gold-soft); }

.section__lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite);
  max-width: 620px;
}
.section__lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.section__head { text-align: center; margin-bottom: 48px; }
.section__head .section__lead { margin: 0 auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--ink);
  color: var(--gold);
  letter-spacing: 0.28em;
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  letter-spacing: 0.28em;
}

.btn--line {
  background: transparent;
  color: var(--gold);
  border-color: var(--line);
}
.btn--line:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
  letter-spacing: 0.28em;
}

.btn--dark {
  background: #2b2b2b;
  color: #fff;
  padding: 14px 26px;
}
.btn--dark:hover { background: #000; }

/* Orange outlined CTA used on light product cards (mobile) */
.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: 0.18em;
  border-radius: 0;
  font-weight: 700;
}
.btn--outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background 500ms var(--ease);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  font-family: var(--ff-serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-radius: 50%;
  transition: transform 600ms var(--ease);
}
.nav__logo:hover .nav__logo-mark { transform: rotate(90deg); }
.nav__logo-text {
  font-family: var(--ff-serif);
  font-size: 16px;
  letter-spacing: 0.28em;
  font-weight: 500;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 400ms var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 500ms var(--ease), left 500ms var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover::after { width: 100%; left: 0; }

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

.lang { position: relative; }
.lang__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  padding: 7px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: all 400ms var(--ease);
}
.lang__current:hover { color: var(--gold); border-color: var(--line); }
.lang__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 400ms var(--ease);
  z-index: 110;
}
.lang.open .lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang__dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--graphite);
  transition: all 300ms var(--ease);
}
.lang__dropdown button:hover { color: var(--gold); background: rgba(201, 162, 39, 0.06); }
.lang__dropdown button.active { color: var(--gold); }

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--paper);
  transition: transform 400ms var(--ease), opacity 300ms;
}
.nav__burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms var(--ease), visibility 500ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer__inner {
  text-align: center;
  width: 100%;
  padding: 40px;
  transform: translateY(20px);
  transition: transform 600ms var(--ease);
}
.drawer.open .drawer__inner { transform: translateY(0); }
.drawer__close {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 34px;
  color: var(--paper);
  line-height: 1;
  font-weight: 300;
}
.drawer__nav { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.drawer__link {
  font-family: var(--ff-serif);
  font-size: 26px;
  color: var(--paper);
  padding: 12px 0;
  letter-spacing: 0.04em;
  transition: color 400ms;
}
.drawer__link:hover { color: var(--gold); }
.drawer__lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.drawer__lang button {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--graphite);
  padding: 8px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: all 300ms;
}
.drawer__lang button:hover, .drawer__lang button.active { color: var(--gold); border-color: var(--gold); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpeg") center/cover no-repeat;
  transform: scale(1.02);
  will-change: transform;
  animation: kenBurns 24s var(--ease) forwards;
  z-index: 0;
}
@keyframes kenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,5,5,0.35) 0%, rgba(5,5,5,0.75) 60%, rgba(5,5,5,0.95) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.3) 50%, rgba(5,5,5,0.95) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(36px, 8vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.hero__cta .btn { width: 100%; max-width: 280px; margin: 0 auto; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  position: relative;
  display: block;
}
.hero__scroll-mouse span {
  position: absolute;
  top: 7px; left: 50%;
  width: 2px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translate(-50%, 12px); }
}

.hero .reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1100ms var(--ease) forwards;
}
.hero .reveal:nth-child(1) { animation-delay: 200ms; }
.hero .reveal:nth-child(2) { animation-delay: 400ms; }
.hero .reveal:nth-child(3) { animation-delay: 600ms; }
.hero .reveal:nth-child(4) { animation-delay: 850ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   7. PROMO BANNERS — vertical full-width stack (mobile-first)
   ========================================================= */
.banners { background: #fff; padding: 6px 0; }
.banners__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.banner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  transition: background 600ms var(--ease);
}
.banner:hover .banner__veil { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%); }
.banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  z-index: 2;
}
.banner__content--bottom { justify-content: flex-end; padding-bottom: 28px; }
.banner__title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
}
.banner__row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.banner__btn {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.15);
  transition: all 400ms var(--ease);
}
.banner:hover .banner__btn { background: rgba(0,0,0,0.35); padding: 10px 32px; }

/* =========================================================
   8. BRAND SEARCH (light card)
   ========================================================= */
.brandsearch {
  background: var(--paper-2);
  padding: 28px 0 48px;
}
.brandsearch__box {
  background: #e9e7e3;
  padding: 32px 18px 36px;
  text-align: center;
  border-radius: 2px;
}
.search {
  display: flex;
  max-width: 560px;
  margin: 0 auto 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: #fff;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--ink-text);
  outline: none;
}
.search__input::placeholder { color: #aaa; }
.search__btn {
  background: #000;
  color: #fff;
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms;
}
.search__btn:hover { background: var(--accent); }

.brandcloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0 auto 28px;
  max-width: 640px;
}
.brand-tag {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 4.2vw, 20px);
  font-weight: 500;
  color: #3a3a3a;
  padding: 4px 2px;
  letter-spacing: 0.01em;
  transition: color 300ms;
  line-height: 1.4;
}
.brand-tag:hover { color: var(--accent); }
.brand-tag.is-active { color: var(--accent); }

.brandsearch__cta {
  margin-top: 18px;
}
.link-cta {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(232,146,43,0.4);
  transition: all 400ms var(--ease);
}
.link-cta:hover { letter-spacing: 0.14em; border-bottom-color: var(--accent); }
.link-cta--muted {
  font-size: 16px;
  color: var(--accent);
  opacity: 0.85;
}
.brandsearch__cta--muted { margin-top: 14px; }

/* =========================================================
   9. COLLECTION — white product cards (mobile-first vertical)
   ========================================================= */
.collection {
  background: var(--paper-2);
  padding: 48px 0 64px;
}
.collection .section__title { color: var(--ink-text); }
.collection .section__lead { color: #555; }

.products {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 480px;
  margin: 0 auto;
}
.product {
  position: relative;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  text-align: center;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.product__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fafafa;
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}
.product:hover .product__media img { transform: scale(1.05); }

/* Skeleton placeholder (removed once JS renders) */
.product-skeleton {
  position: relative;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  padding-bottom: 28px;
}
.product-skeleton__media {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(105deg, #f0eeea 30%, #f8f6f2 50%, #f0eeea 70%);
  background-size: 220% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}
.product-skeleton__line {
  height: 12px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(105deg, #eceae6 30%, #f6f4f0 50%, #eceae6 70%);
  background-size: 220% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  width: 62%;
}
.product-skeleton__line--sm { width: 38%; height: 9px; margin-top: 22px; }
.product-skeleton__line--price { width: 30%; height: 22px; margin-top: 18px; }
@keyframes skeletonShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .product-skeleton__media,
  .product-skeleton__line { animation: none; }
}
.products:not([aria-busy="true"]) .product-skeleton { display: none; }
.product__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.65);
  padding: 5px 10px;
}
.product__body {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product__brand {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  font-weight: 500;
}
.product__name {
  font-family: var(--ff-sans);
  font-size: 17px;
  color: var(--ink-text);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}
.product__meta {
  display: none;
}
.product__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.product__price {
  font-family: var(--ff-serif);
  font-size: 26px;
  color: #111;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  font-weight: 600;
}
.product__price small { display: none; }
.product__view { display: none; }

/* Promo & pre-owned extras on cards */
.product__tag--pre {
  background: linear-gradient(135deg, #b8893a, #d9a441);
  color: #fff;
  letter-spacing: 0.18em;
}
.product__deal {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(232,146,43,0.35);
}
.product__cond {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: -4px 0 10px;
  font-weight: 600;
}
.product__sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin: -4px 0 12px;
}
.product__was {
  font-family: var(--ff-sans);
  font-size: 12px;
  color: #999;
  margin: 4px 0 0;
  letter-spacing: 0.04em;
}
.product__was s { color: #b00; text-decoration-color: #b00; margin-right: 8px; }
.product__was em {
  font-style: normal;
  color: #1a7a3e;
  font-weight: 600;
  background: rgba(26,122,62,0.08);
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* Pre-owned section warm darker background to differentiate */
.collection--pre {
  background: linear-gradient(180deg, #efece6 0%, #e7e2d8 100%);
  position: relative;
}
.collection--pre::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,162,39,0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(232,146,43,0.05), transparent 60%);
  pointer-events: none;
}
.collection--pre .container { position: relative; z-index: 1; }
.product--pre .product__brand { color: #6b5a2e; }
.product--pre .product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,39,0.18);
  pointer-events: none;
}

/* =========================================================
   Product modal enhancements (promo / pre-owned)
   ========================================================= */
.modal__banner {
  background: linear-gradient(135deg, #b8893a, #d9a441);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.modal__price { position: relative; }
.modal__was {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: #999;
  margin-left: 12px;
  font-weight: 400;
  vertical-align: middle;
}
.modal__save {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 5px 10px;
  margin-left: 10px;
  border-radius: 2px;
  vertical-align: middle;
  font-weight: 600;
}
.modal__countdown {
  display: block;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8893a;
  margin-top: 10px;
  font-weight: 600;
}
.modal__extra {
  margin: 4px 0 22px;
  padding: 18px;
  background: #f8f6f1;
  border-left: 3px solid var(--gold);
}
.modal__extra h4 {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-text);
  margin: 0 0 12px;
  font-weight: 700;
}
.modal__cert {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 8px;
}
.modal__cert li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.55;
}
.modal__cert li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.modal__promo-banner {
  background: linear-gradient(135deg, rgba(232,146,43,0.12), rgba(201,162,39,0.10));
  border: 1px solid rgba(232,146,43,0.3);
  color: #8a4a0f;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  line-height: 1.55;
  border-radius: 2px;
}

.collection__viewall {
  text-align: center;
  margin-top: 36px;
}

/* =========================================================
   10. HERITAGE (dark section)
   ========================================================= */
.heritage { background: var(--ink-2); }
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.heritage__text .section__lead { margin: 24px 0 36px; }

.heritage__pillars { display: grid; grid-template-columns: 1fr; gap: 24px; }
.heritage__pillars li {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.heritage__num {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  flex-shrink: 0;
}
.heritage__pillars h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--paper);
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.heritage__pillars p { font-size: 13.5px; color: var(--graphite-dim); line-height: 1.65; }

.heritage__media { max-width: 420px; margin: 0 auto; width: 100%; }
.heritage__frame {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  border: 1px solid var(--line);
}
.heritage__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease);
}
.heritage__frame:hover img { transform: scale(1.04); }
.heritage__badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.heritage__badge-num {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.heritage__badge-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--graphite);
}

/* =========================================================
   11. CRYPTO (dark)
   ========================================================= */
.crypto { background: var(--ink); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.crypto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.crypto__wallets { display: grid; gap: 14px; }
.wallet {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  transition: border-color 500ms var(--ease);
  text-align: left;
}
.wallet:hover { border-color: var(--line); }
.wallet__head { display: flex; align-items: center; gap: 14px; }
.wallet__icon {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.wallet__icon--btc { color: #f7931a; border-color: rgba(247,147,26,0.35); }
.wallet__icon--eth { color: #8a92b2; border-color: rgba(138,146,178,0.35); }
.wallet__icon--usdt { color: #26a17b; border-color: rgba(38,161,123,0.35); }
.wallet h3 { font-family: var(--ff-sans); font-size: 15px; font-weight: 600; color: var(--paper); letter-spacing: 0.02em; }
.wallet__sym { font-size: 11px; letter-spacing: 0.2em; color: var(--graphite-dim); text-transform: uppercase; }
.wallet__addr {
  font-family: "SF Mono", "Roboto Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--graphite);
  word-break: break-all;
  line-height: 1.6;
  padding: 10px 0 0;
  border-top: 1px solid var(--line-soft);
}
.wallet__addr--masked {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  letter-spacing: 0.18em;
  color: var(--graphite-dim);
  user-select: none;
}
.wallet__addr--masked .wallet__mask { font-variant-numeric: tabular-nums; }
.wallet__addr--masked .wallet__lock {
  flex: 0 0 auto;
  color: var(--gold);
  opacity: 0.85;
}

.crypto__steps {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  padding: 28px 24px;
}
.crypto__steps h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.steps li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--graphite);
}
.steps li:last-of-type { border-bottom: none; }
.steps__num {
  font-family: var(--ff-serif);
  font-size: 16px;
  color: var(--gold);
  min-width: 28px;
  font-variant-numeric: tabular-nums;
}
.crypto__note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--graphite-dim);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-style: italic;
}

/* =========================================================
   12. MEMBERSHIP
   ========================================================= */
.membership { background: var(--ink-2); }
.perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.perk {
  text-align: center;
  padding: 32px 22px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  transition: all 600ms var(--ease);
}
.perk:hover { border-color: var(--gold); transform: translateY(-4px); }
.perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 600ms var(--ease);
}
.perk:hover .perk__icon { transform: rotate(45deg); }
.perk h3 {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.perk p { font-size: 13.5px; color: var(--graphite-dim); line-height: 1.7; }
.membership__cta { text-align: center; }

/* =========================================================
   13. TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--ink); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testi {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 500ms var(--ease);
}
.testi:hover { border-color: var(--line); }
.testi blockquote {
  font-family: var(--ff-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding-left: 22px;
}
.testi blockquote::before {
  content: "\201C";
  position: absolute;
  left: -4px; top: -18px;
  font-size: 52px;
  color: var(--gold);
  font-family: var(--ff-serif);
  line-height: 1;
  opacity: 0.5;
}
.testi figcaption { display: flex; align-items: center; gap: 14px; }
.testi__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  background-size: cover;
}
.testi figcaption strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
}
.testi figcaption span {
  display: block;
  font-size: 12px;
  color: var(--graphite-dim);
  margin-top: 2px;
}

/* =========================================================
   14. FAQ
   ========================================================= */
.faq { background: var(--ink-2); }
.faq__list { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--line-soft);
  background: var(--ink-3);
  transition: border-color 400ms;
}
.faq__item[open] { border-color: var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--paper);
  font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 400ms var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__body {
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--graphite);
}

/* =========================================================
   15. FOOTER (detailed black)
   ========================================================= */
.footer {
  background: #000;
  color: #fff;
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
}
.footer h3, .footer h4 { color: #fff; }

.footer__locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.loc { text-align: left; }
.loc__city {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.loc__rule {
  display: block;
  width: 56px;
  height: 3px;
  background: #444;
  margin-bottom: 20px;
}
.loc p {
  font-size: 15px;
  line-height: 1.7;
  color: #e8e8e8;
  margin-bottom: 6px;
  font-family: var(--ff-sans);
}
.loc__phone { font-size: 20px !important; font-weight: 500; letter-spacing: 0.02em; }
.loc a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.loc a:hover { color: var(--gold-soft); }
.loc__showroom { margin-top: 18px !important; font-size: 16px !important; }
.loc__showroom strong { font-weight: 700; letter-spacing: 0.08em; }

.footer__quicklinks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__quicklinks a {
  font-size: 17px;
  color: #fff;
  transition: color 300ms;
}
.footer__quicklinks a:hover { color: var(--gold-soft); }

.footer__newsletter { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__news-title {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__rule { display: block; width: 56px; height: 3px; background: #444; margin-bottom: 20px; }
.newsletter { display: grid; gap: 12px; }
.newsletter__label {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.newsletter__input {
  width: 100%;
  background: #fff;
  border: none;
  padding: 14px 14px;
  font-size: 15px;
  color: #000;
  outline: none;
}
.newsletter .btn--dark { justify-self: start; }
.footer__consent {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #b8b8b8;
  font-style: italic;
}

.footer__bottom { padding-top: 28px; text-align: center; }
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}
.pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 12px;
  background: #1a1a1a;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ddd;
}
.pay--btc { color: #f7931a; }

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  align-items: center;
}
.footer__legal a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ccc;
  transition: color 300ms;
}
.footer__legal a:hover { color: var(--gold-soft); }

.footer__copy { font-size: 13px; color: #ddd; margin-bottom: 6px; }
.footer__designed { font-size: 13px; color: #ddd; margin-bottom: 14px; }
.footer__disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: #b8b8b8;
  font-style: italic;
}

/* =========================================================
   16. MODAL
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease), visibility 400ms;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal__box {
  position: relative;
  background: #fff;
  color: var(--ink-text);
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform 500ms var(--ease);
  border-radius: 2px;
}
.modal.open .modal__box { transform: translateY(0) scale(1); }
.modal__box--form { max-width: 520px; background: #fff; }
.modal__close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 30px;
  color: #999;
  line-height: 1;
  z-index: 5;
  transition: color 300ms, transform 400ms var(--ease);
  font-weight: 300;
}
.modal__close:hover { color: #000; transform: rotate(90deg); }

.modal__grid { display: grid; grid-template-columns: 1fr; }
.modal__media {
  background: #f5f5f5;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  color: var(--ink-text);
}
.modal__eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.modal__title {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}
.modal__price {
  font-family: var(--ff-serif);
  font-size: 26px;
  color: #111;
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 600;
}
.modal__desc { font-size: 14.5px; line-height: 1.8; color: #555; margin-bottom: 24px; }

.modal__specs-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 8px 0 10px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal__specs-title::before,
.modal__specs-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.modal__specs-title::after { display: none; }
.modal__specs-title::before { max-width: 28px; flex: 0 0 28px; }

.specs { margin-bottom: 26px; }
.specs li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}
.specs li span:first-child {
  color: #888;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.specs li span:last-child { color: #111; text-align: right; }
.modal__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.modal__actions .btn { flex: 1; min-width: 130px; }

.modal__form { padding: 36px 24px; color: var(--ink-text); }
.modal__form .modal__title { font-size: 22px; color: #111; }
.modal__form .modal__desc { color: #555; }
.modal__success {
  padding: 48px 28px;
  text-align: center;
  color: var(--ink-text);
}
.success__mark {
  color: var(--gold);
  display: inline-flex;
  margin-bottom: 20px;
  animation: pop 600ms var(--ease);
}
@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.form { display: grid; gap: 16px; margin-top: 24px; }
.field { display: grid; gap: 7px; }
.field span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
}
.field input {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  color: #111;
  padding: 13px 14px;
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 400ms;
  width: 100%;
}
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field input[readonly] { color: var(--gold-deep); background: rgba(201,162,39,0.06); }
.field input::placeholder { color: #aaa; }
.field textarea {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  color: #111;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 2px;
  transition: border-color 400ms, background 400ms;
  width: 100%;
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea::placeholder { color: #aaa; }

/* =========================================================
   9b. SELL (Collection — sell your watch)
   ========================================================= */
.sell {
  background: #fff;
  padding: 56px 0 72px;
  border-top: 1px solid #ececec;
}
.sell .section__title { color: var(--ink-text); }
.sell .section__lead { color: #555; }
.sell__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.sell__perks {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.sell__perks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.sell__perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 1px;
  background: var(--accent);
}
.sell__form {
  background: var(--paper-2);
  padding: 32px 24px;
  border: 1px solid #e9e6df;
  display: grid;
  gap: 16px;
}
.sell__form-title {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--ink-text);
  font-weight: 600;
  margin-bottom: 4px;
}
.sell__privacy {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
  text-align: center;
  margin-top: -4px;
}
.sell__success {
  text-align: center;
  padding: 24px 8px 8px;
  color: var(--ink-text);
}
.sell__success .success__mark {
  color: var(--gold);
  margin: 0 auto 14px;
  display: flex; justify-content: center;
}
.sell__success h4 {
  font-family: var(--ff-serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.sell__success p { color: #555; font-size: 14px; line-height: 1.6; }

@media (min-width: 1024px) {
  .sell__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 48px;
  }
  .sell__form { padding: 48px 44px; }
  .sell__form-title { font-size: 28px; }
}

/* =========================================================
   9c. CONTACT
   ========================================================= */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 80px;
}
.contact .section__eyebrow { color: var(--gold-soft); }
.contact .section__title { color: var(--paper); }
.contact .section__lead { color: var(--graphite); max-width: 640px; margin: 0 auto; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 36px;
}
.contact__info h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact__list { list-style: none; display: grid; gap: 18px; }
.contact__list li { display: grid; gap: 4px; }
.contact__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.contact__list a,
.contact__list span {
  color: var(--paper);
  font-size: 16px;
  text-decoration: none;
  transition: color 300ms;
}
.contact__list a:hover { color: var(--gold-soft); }
.contact__hint {
  margin-top: 22px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--graphite);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.contact__form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 28px 22px;
  display: grid;
  gap: 16px;
}
.contact .field { gap: 7px; }
.contact .field__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.contact .field__control {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.22);
  color: var(--paper);
  padding: 13px 14px;
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 400ms, background 400ms;
  width: 100%;
  font-family: inherit;
}
.contact .field__control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.contact .field__control::placeholder { color: rgba(255,255,255,0.35); }
.contact .field__control--area { min-height: 110px; resize: vertical; line-height: 1.6; }
.contact select.field__control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.contact select.field__control option {
  background: var(--ink-2);
  color: var(--paper);
}
.contact .field--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact__success {
  margin: 4px 0 0;
  padding: 14px 16px;
  background: rgba(201,162,39,0.1);
  border-left: 2px solid var(--gold);
  color: var(--gold-soft);
  font-size: 13.5px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 56px; margin-top: 48px; }
  .contact__form { padding: 40px 36px; }
  .contact .field--row { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 1024px) {
  .contact { padding: 96px 0 104px; }
  .contact__grid { gap: 80px; }
  .contact__form { padding: 48px 44px; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10,10,10,0.96);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 13px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   17. SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   18. RESPONSIVE — TABLET (>= 768px)
   ========================================================= */
@media (min-width: 768px) {
  :root { --nav-h: 72px; }
  .container { padding: 0 32px; }
  .section { padding: 110px 0; }

  .nav__inner { padding: 0 32px; }
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
  .nav__logo-text { font-size: 18px; letter-spacing: 0.32em; }
  .nav__logo-mark { width: 38px; height: 38px; font-size: 15px; }

  .hero { padding: calc(var(--nav-h) + 40px) 32px 100px; }
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { width: auto; margin: 0; }
  .hero__title { font-size: clamp(40px, 7vw, 96px); }

  .banners { padding: 10px 0; }
  .banners__list { gap: 10px; max-width: 720px; margin: 0 auto; padding: 0 16px; }
  .banner { aspect-ratio: 16/9; }
  .banner__title { font-size: clamp(40px, 6vw, 64px); }

  .brandsearch__box { padding: 48px 40px 52px; }
  .search { margin-bottom: 36px; }
  .brandcloud { gap: 10px 28px; margin-bottom: 36px; }
  .brand-tag { font-size: 18px; }
  .link-cta { font-size: 22px; }

  .collection { padding: 80px 0 100px; }
  .products {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .heritage__grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .heritage__pillars { grid-template-columns: 1fr 1fr; gap: 28px 36px; }
  .heritage__media { max-width: none; }

  .crypto__grid { grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: start; }
  .wallet { grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; text-align: left; }
  .wallet__addr { padding: 0 14px; border-left: 1px solid var(--line-soft); border-top: none; padding-top: 0; }
  .crypto__steps { position: sticky; top: 100px; }

  .perks { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

  .footer__locations { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__quicklinks { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .newsletter { grid-template-columns: 1fr auto; align-items: end; gap: 12px; }
  .newsletter__label { grid-column: 1 / -1; }
  .footer__legal { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }

  .modal { padding: 24px; }
  .modal__grid { grid-template-columns: 1fr 1fr; }
  .modal__media { aspect-ratio: auto; min-height: 100%; }
  .modal__body { padding: 40px 36px; }
  .modal__form { padding: 44px 40px; }
  .modal__success { padding: 56px 40px; }
}

/* =========================================================
   19. RESPONSIVE — DESKTOP (>= 1024px)
   ========================================================= */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }

  .banners__list { max-width: 1080px; gap: 12px; padding: 0; }
  .banner { aspect-ratio: 21/9; }
  .banner__title { font-size: 64px; }

  .brandsearch__box { padding: 56px 48px 60px; max-width: 1080px; margin: 0 auto; }
  .brandcloud { gap: 12px 36px; max-width: 820px; }
  .brand-tag { font-size: 20px; }

  .products { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .product__body { padding: 28px 26px 30px; align-items: flex-start; text-align: left; }
  .product__name { font-size: 20px; font-family: var(--ff-serif); }
  .product__foot { flex-direction: row; justify-content: space-between; align-items: center; }
  .product__price { font-size: 24px; text-align: left; }
  .product__price small { display: block; font-family: var(--ff-sans); font-size: 10px; letter-spacing: 0.2em; color: #aaa; margin-top: 6px; font-weight: 400; }
  .product__view {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
    transition: all 400ms var(--ease);
  }
  .product__view:hover { color: var(--accent); border-color: var(--accent); letter-spacing: 0.26em; }

  .perks { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }

  .footer__locations { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* =========================================================
   20. REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg { animation: none; transform: scale(1.05); }
  .reveal { opacity: 1; transform: none; }
  .hero .reveal { opacity: 1; transform: none; animation: none; }
}
