:root {
  --bg: #050505;
  --bg2: #0c0c0c;
  --card: #101010;
  --gold: #c5a059;
  --gold2: #dbb96a;
  --gold3: #8f6b29;
  --text: #f3f3f3;
  --muted: #8a8a8a;
  --line: rgba(197, 160, 89, 0.22);
  --wrap: min(1240px, calc(100% - 48px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Outfit, "Montserrat", system-ui, sans-serif;
  --header-h: 78px;
  --orbit-r: 240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
.wrap { width: var(--wrap); margin-inline: auto; }
[hidden] { display: none !important; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-lens {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle 280px at var(--lx, 50%) var(--ly, 40%), rgba(197,160,89,0.07), transparent 70%);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-bottom-color: var(--line);
}
.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.header__right { display: flex; align-items: center; gap: 16px; }
.header__tools { display: flex; align-items: center; gap: 6px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 32px; color: var(--gold); }
.brand__mark svg { width: 100%; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand__dot { color: var(--gold); }
.brand__text small {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand__img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(197, 160, 89, 0.18));
}
.brand--foot .brand__img {
  height: 58px;
  max-width: 240px;
}
.auth-modal__logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 16px rgba(197, 160, 89, 0.2));
}

.nav { display: flex; justify-content: center; gap: 28px; }
.nav__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }

.header-auth { display: flex; gap: 8px; }
.auth-btn {
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.auth-btn:hover { border-color: var(--gold); color: var(--gold); }
.auth-btn--gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  border-color: transparent;
  color: #000;
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  margin-right: 4px;
}
.lang-switch__btn {
  min-width: 30px;
  padding: 4px 7px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.lang-switch__btn.active { background: var(--gold); color: #000; }

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s ease, color 0.2s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: rgba(197,160,89,0.12); color: var(--gold); }
.icon-btn--cart { position: relative; }
.icon-btn__badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-size: 0.55rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 18px; height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(197,160,89,0.12), transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 70%, rgba(80,60,20,0.15), transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,15,5,0.8), transparent 70%);
  animation: auroraShift 14s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.hero__dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr minmax(0, 220px);
  gap: 24px 32px;
  align-items: center;
  padding: 40px 0 56px;
}

.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero__desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero__live {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.35s both;
  text-shadow: 0 0 24px rgba(197,160,89,0.35);
}
.hero__hint {
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeUp 0.8s ease 0.55s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.8s ease 0.45s both;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: #0a0a0a;
  box-shadow: 0 10px 32px rgba(197,160,89,0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(197,160,89,0.42);
}
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--full { width: 100%; }
.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Chrono Orbit Stage */
.chrono-stage {
  position: relative;
  height: min(520px, 70vw);
  display: grid;
  place-items: center;
  animation: fadeUp 1s ease 0.3s both;
}
.chrono-stage__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.14), transparent 68%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.chrono-dial {
  position: absolute;
  width: min(200px, 38vw);
  height: min(200px, 38vw);
  z-index: 1;
}
.dial-svg { width: 100%; height: 100%; }
.dial-hands {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold2), var(--gold3));
}
.hand--hour { width: 4px; height: 28%; margin-left: -2px; opacity: 0.9; }
.hand--min { width: 3px; height: 36%; margin-left: -1.5px; }
.hand--sec {
  width: 2px;
  height: 40%;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.dial-center {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(197,160,89,0.6);
  z-index: 2;
}
.dial-pulse {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.2);
  animation: dialRipple 3s ease-out infinite;
}
@keyframes dialRipple {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

.orbit-scene {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1100px;
  cursor: grab;
  touch-action: pan-y;
  z-index: 2;
}
.orbit-scene:active { cursor: grabbing; }
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--orbit, 0deg));
}
.orbit-item {
  position: absolute;
  width: min(180px, 34vw);
  height: min(180px, 34vw);
  margin-left: calc(min(180px, 34vw) / -2);
  margin-top: calc(min(180px, 34vw) / -2);
  transform: rotateY(calc(var(--i) * var(--orbit-step, 90deg))) translateZ(var(--orbit-r));
  transform-style: preserve-3d;
  transition: opacity 0.35s ease;
  background: none;
  border: none;
  padding: 0;
}
.orbit-item__glass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 8px;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
  border: 1px solid rgba(197,160,89,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), inset 0 0 30px rgba(197,160,89,0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.orbit-item__glass img {
  width: 94%;
  height: 94%;
  max-width: 94%;
  max-height: 94%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.08) contrast(1.1) saturate(1.14) drop-shadow(0 10px 18px rgba(0,0,0,0.5));
  pointer-events: none;
  background: transparent;
}
.orbit-item.is-front .orbit-item__glass img {
  filter: brightness(1.12) contrast(1.14) saturate(1.18) drop-shadow(0 12px 22px rgba(0,0,0,0.55));
}
.orbit-item.is-front .orbit-item__glass {
  transform: scale(1.08);
  box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 0 40px rgba(197,160,89,0.15), inset 0 0 30px rgba(197,160,89,0.1);
  border-color: rgba(197,160,89,0.45);
}
.search-hit img,
.cart-line img {
  background: transparent;
}
.orbit-item.img-fallback .orbit-item__glass img { opacity: 0.85; }

.chrono-cap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  padding: 12px 22px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.chrono-cap strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.chrono-cap span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.chrono-cap__view {
  margin-top: 2px;
  padding: 5px 14px;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,160,89,0.35);
  border-radius: 999px;
  background: rgba(197,160,89,0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chrono-cap__view:hover {
  background: rgba(197,160,89,0.2);
  color: #fff;
  transform: translateY(-1px);
}

.orbit-controls {
  position: absolute;
  bottom: 48px;
  right: 0;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.orbit-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.orbit-btn:hover { background: rgba(197,160,89,0.12); transform: scale(1.08); }

.hero__feats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.hero__feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero__feat-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(197,160,89,0.05);
}
.hero__feat-ico svg { width: 17px; height: 17px; }
.hero__feat strong {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.hero__feat span { font-size: 0.72rem; color: var(--muted); }

/* Panel */
.panel {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.panel__grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
}
.panel__cats {
  position: relative;
  background: linear-gradient(165deg, #dbb96a, #8f6b29);
  padding: 32px 24px 32px 40px;
  color: #0a0a0a;
  border-radius: 3px;
  overflow: hidden;
}
.panel__cats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  animation: catsShine 5s ease-in-out infinite;
}
@keyframes catsShine {
  0%, 80% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.panel__cats-label {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0.7;
}
.panel__cats-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.panel__cats-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.panel__cats-list a:hover { transform: translateX(4px); }
.cats-ico {
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.55;
  letter-spacing: 0.08em;
}

.panel__why-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.panel__why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  padding: 24px 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}
.why-card__ring {
  position: absolute;
  inset: -50%;
  border: 1px solid rgba(197,160,89,0.08);
  border-radius: 50%;
  animation: whySpin 12s linear infinite;
}
@keyframes whySpin { to { transform: rotate(360deg); } }
.panel__why-ico {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.why-card p { font-size: 0.78rem; color: var(--muted); }

/* Vault products */
.shop { padding: 72px 0 80px; }
.shop__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  gap: 16px;
}
.shop__title {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shop__all {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vault {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.vault:hover {
  transform: translateY(-6px);
  border-color: rgba(197,160,89,0.3);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.vault__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 4px 9px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold);
  color: #000;
  border-radius: 2px;
}
.vault__wish {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.vault__wish:hover { background: var(--gold); color: #000; }
.vault__glass {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: transparent;
  overflow: hidden;
}
.vault__view {
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: inherit;
  color: inherit;
}
.vault__view:focus-visible {
  outline: 2px solid rgba(197,160,89,0.55);
  outline-offset: -2px;
}
.vault__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.vault:hover .vault__shine { transform: translateX(100%); }
.vault__glass img,
.vault__view img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
  transition: transform 0.45s ease;
}
.vault__glass--premium {
  padding: 10px 8px;
  background: #050505;
}
.vault:hover .vault__glass img,
.vault:hover .vault__view img { transform: scale(1.06) rotate(-2deg); }
.vault__info { padding: 16px 18px 18px; }
.vault__view-btn {
  display: inline-block;
  margin: -6px 0 12px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(197,160,89,0.85);
  cursor: pointer;
  transition: color 0.2s ease;
}
.vault__view-btn:hover { color: #fff; text-decoration: underline; }
.vault__info h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.vault__info p {
  font-size: 0.66rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  opacity: 0.85;
}
.vault__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vault__row span { font-size: 1rem; font-weight: 700; }
.vault__cart {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: #000;
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.vault__cart svg { width: 16px; height: 16px; }
.vault__cart:hover { transform: scale(1.1); }
.vault--pulse {
  box-shadow: 0 0 0 2px rgba(197,160,89,0.55), 0 18px 50px rgba(0,0,0,0.35);
}

/* Warranty */
.warranty {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  overflow: hidden;
}
.warranty__gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
}
.gear {
  position: absolute;
  width: 120px;
  height: 120px;
  color: var(--gold);
}
.gear--a { top: 20%; left: 15%; animation: gearA 20s linear infinite; }
.gear--b { bottom: 15%; left: 35%; width: 80px; height: 80px; animation: gearB 14s linear infinite reverse; }
@keyframes gearA { to { transform: rotate(360deg); } }
@keyframes gearB { to { transform: rotate(-360deg); } }

.warranty__photo { overflow: hidden; }
.warranty__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.warranty:hover .warranty__photo img { transform: scale(1.06); }

.warranty__body {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a, #121212);
}
.warranty__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 0;
}
.warranty__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.warranty__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.warranty__text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 400px;
}
.pulse-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(197,160,89,0.3);
  animation: badgePulse 2.5s ease-out infinite;
}
.pulse-badge span { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--gold); }
.pulse-badge strong { font-size: 0.72rem; letter-spacing: 0.08em; }
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(197,160,89,0.35); }
  70% { box-shadow: 0 0 0 16px rgba(197,160,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,160,89,0); }
}

/* Trust & Footer */
.trust {
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__grid article { display: flex; gap: 12px; align-items: flex-start; }
.trust__ico {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust__ico svg { width: 20px; height: 20px; }
.trust__grid strong {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.trust__grid p { font-size: 0.74rem; color: var(--muted); }

.footer {
  padding: 48px 0 24px;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand p { margin-top: 14px; font-size: 0.82rem; color: var(--muted); max-width: 260px; }
.footer__col h4 {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: #fff; }
.footer__copy {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: var(--muted);
}

/* Auth */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}
.auth-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}
.auth-modal__box {
  position: relative;
  width: min(400px, 100%);
  padding: 32px 28px;
  background: linear-gradient(160deg, #141414, #0a0a0a);
  border: 1px solid var(--line);
  border-radius: 4px;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: none; }
}
.auth-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.4rem;
  color: var(--muted);
}
.auth-modal__brand {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.auth-modal__brand span { color: var(--gold); }
.auth-modal__logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 4px 16px rgba(197, 160, 89, 0.2));
}
.auth-modal__box h2 {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}
.auth-tab {
  padding: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-tab.active { background: rgba(197,160,89,0.14); color: var(--gold); }
.auth-form label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.auth-form input {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
}
.auth-form input:focus { border-color: var(--gold); }
.auth-form[hidden] { display: none; }

/* Search + Cart */
.tool-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-h) + 24px) 20px 20px;
}
.tool-modal__bg,
.cart-drawer__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}
.tool-modal__box {
  position: relative;
  width: min(560px, 100%);
  padding: 28px 24px 24px;
  background: linear-gradient(160deg, #141414, #0a0a0a);
  border: 1px solid var(--line);
  border-radius: 4px;
  animation: modalIn 0.35s ease;
}
.tool-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.4rem;
  color: var(--muted);
}
.tool-modal__close:hover { color: #fff; }
.tool-modal__box h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.92);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  background: rgba(255,255,255,0.04);
}
.search-field svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 13px 0;
  outline: none;
  color: #fff;
  font-size: 0.92rem;
}
.search-results {
  margin-top: 16px;
  max-height: min(420px, 55vh);
  overflow: auto;
  display: grid;
  gap: 10px;
}
.search-hit {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.search-hit:hover { border-color: rgba(197,160,89,0.35); background: rgba(197,160,89,0.06); }
.search-hit img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 3px;
  background: transparent;
}
.search-hit__info strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.search-hit__info span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}
.search-hit__info em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
}
.search-hit__actions { display: flex; flex-direction: column; gap: 6px; }
.search-hit__actions button {
  padding: 8px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
}
.search-hit__actions .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.search-hit__actions .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.search-empty {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 530;
}
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121212, #080808);
  border-left: 1px solid var(--line);
  animation: cartIn 0.35s ease;
}
@keyframes cartIn {
  from { transform: translateX(100%); }
  to { transform: none; }
}
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-drawer__head h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 16px 22px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 40px 12px;
}
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
}
.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 3px;
  background: transparent;
}
.cart-line__info strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.cart-line__info span {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}
.cart-line__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-line__qty button {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
}
.cart-line__qty button:hover { border-color: var(--gold); color: var(--gold); }
.cart-line__qty span { min-width: 18px; text-align: center; font-size: 0.82rem; }
.cart-line__remove {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-line__remove:hover { color: #fff; }
.cart-drawer__foot {
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.cart-drawer__total strong {
  font-size: 1.1rem;
  color: #fff;
}
.cart-drawer__note {
  margin-top: 10px;
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 600;
  padding: 12px 18px;
  border-radius: 3px;
  background: rgba(20,20,20,0.96);
  border: 1px solid rgba(197,160,89,0.35);
  color: #fff;
  font-size: 0.82rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  animation: toastIn 0.3s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Product detail */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 540;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 16px) 20px 20px;
}
.product-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
}
.product-modal__box {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 28px 24px 24px;
  background: linear-gradient(155deg, #161616, #090909);
  border: 1px solid var(--line);
  border-radius: 4px;
  animation: modalIn 0.35s ease;
}
.product-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.product-modal__media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
}
.product-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.55));
}
.product-modal__cat {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-modal__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-bottom: 10px;
  color: rgba(255,255,255,0.95);
}
.product-modal__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-modal__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.product-modal__specs {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.product-modal__specs li {
  position: relative;
  padding-left: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.product-modal__specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.product-modal__note {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.product-modal__actions {
  display: grid;
  gap: 10px;
}
@media (max-width: 760px) {
  .product-modal__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-modal__media {
    aspect-ratio: 4/3;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay { transition-delay: 0.08s; }
.reveal--below-fold.is-visible,
.shop,
.shop .vault {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  :root { --orbit-r: 200px; }
  .hero__shell { grid-template-columns: 1fr 1fr; }
  .hero__feats {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }
  .hero__feat { flex: 1 1 180px; }
  .panel__why-grid { grid-template-columns: repeat(2, 1fr); }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    padding: 20px;
    background: rgba(5,5,5,0.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }
  .header.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .header-auth { display: none; }
  .header.nav-open .header-auth {
    display: flex;
    position: fixed;
    top: calc(var(--header-h) + 200px);
    left: 20px; right: 20px;
    justify-content: center;
    z-index: 201;
  }
  .menu-toggle { display: flex; }
  .header.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .header.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero__shell { grid-template-columns: 1fr; text-align: center; }
  .hero__feats { justify-content: center; }
  .hero__feat { text-align: left; }
  .chrono-stage { height: min(440px, 85vw); }
  .orbit-controls { right: 50%; transform: translateX(50%); bottom: 8px; }
  .panel__grid { grid-template-columns: 1fr; }
  .warranty { grid-template-columns: 1fr; }
  .warranty__inner { flex-direction: column; text-align: center; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --orbit-r: 160px; --wrap: calc(100% - 32px); }
  .shop__grid, .panel__why-grid, .trust__grid { grid-template-columns: 1fr; }
  .hero-lens { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
