/* ============================================================
   Timeless & Co. — premium revamp (dark)
   ============================================================ */
:root {
  --bg: #08080a;
  --panel: #0e0e11;
  --panel-2: #121216;
  --txt: #f2f0eb;
  --dim: rgba(242, 240, 235, 0.55);
  --faint: rgba(242, 240, 235, 0.32);
  --gold: #c8a35f;
  --line: rgba(242, 240, 235, 0.12);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--ui);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--ui); background: none; border: none; color: inherit; cursor: pointer; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

section { padding: clamp(80px, 10vw, 130px) 0; }

h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ---------- buttons ---------- */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--txt);
  transition: color 0.25s ease, gap 0.25s ease;
}
.btn-line em { font-style: normal; color: var(--gold); transition: transform 0.25s ease; }
.btn-line:hover { color: var(--gold); }
.btn-line:hover em { transform: translateX(6px); }

.btn-solid {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 20px 46px;
  background: var(--gold);
  color: #121006;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-solid:hover { background: var(--txt); }

/* ---------- header ---------- */
#hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 3.5vw, 44px);
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#hdr.solid {
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.22em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.brand span { font-family: var(--ui); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold); }

.hdr-nav { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.hdr-nav a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hdr-nav a:hover { color: var(--txt); border-bottom-color: var(--gold); }

.hdr-icons { display: flex; align-items: center; gap: 6px; }
.hdr-icons button {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  transition: color 0.2s ease;
}
.hdr-icons button:hover { color: var(--gold); }
.hdr-icons svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.menu-btn { display: none; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--txt); }

/* menu overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5, 5, 6, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-overlay nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.menu-overlay nav a {
  font-family: var(--display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s ease;
}
.menu-overlay nav a:hover { color: var(--gold); }
.menu-close { position: absolute; top: 20px; right: 28px; font-size: 2.2rem; color: var(--dim); }
.menu-foot { position: absolute; bottom: 30px; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint); }

/* ---------- scroll-scrubbed hero ---------- */
.film {
  position: relative;
  height: 440vh; /* scroll runway that drives the scrub */
  padding: 0;
  background: #000;
}
.film-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.film-sticky canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: #000;
}
.film-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0) 68%),
    linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 26%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 20%);
}

.film-captions {
  position: absolute;
  left: clamp(20px, 6vw, 90px);
  right: clamp(20px, 6vw, 90px);
  bottom: clamp(120px, 18vh, 190px);
  z-index: 5;
  pointer-events: none;
}
.chapter {
  position: absolute;
  bottom: 0; left: 0;
  max-width: 720px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.chapter.active { opacity: 1; transform: none; pointer-events: auto; }

.ch-eyebrow {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.chapter h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.chapter h1 .tm { font-size: 0.32em; vertical-align: 0.9em; letter-spacing: 0; }
.ch-size {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 20px;
}
.chapter p {
  max-width: 430px;
  color: var(--dim);
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.ch-ctas { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }

.discover {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s ease;
}
.discover em { font-style: normal; color: var(--gold); margin-left: 6px; }
.discover:hover { color: var(--txt); }

.film-dots {
  position: absolute;
  left: clamp(20px, 6vw, 90px);
  bottom: clamp(44px, 7vh, 64px);
  z-index: 6;
  display: flex;
  gap: 12px;
}
.dot {
  width: 52px; height: 14px;
  position: relative;
  display: flex; align-items: center;
}
.dot::before {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: rgba(242,240,235,0.22);
}
.dot .fill {
  position: absolute; left: 0;
  height: 2px; width: 0%;
  background: var(--gold);
}
.dot.done .fill { width: 100%; }

.film-next {
  position: absolute;
  right: clamp(14px, 2.4vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.film-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 6;
  font-size: 0.56rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--faint);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

body.capture .film { height: 880px; }
body.capture .film-sticky { position: relative; height: 880px; min-height: 0; }

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: slide 26s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.ticker-track i { color: var(--gold); font-style: normal; font-size: 0.6rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- centered heads / on-trend ---------- */
.t-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.t-head .eyebrow { margin-bottom: 14px; }
.t-head h2 {
  font-family: var(--ui);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.t-rule { width: 46px; height: 1px; background: var(--gold); margin: 22px auto 0; }

.trend { background: var(--bg); }
.tcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.t-cta { text-align: center; margin-top: 48px; }
.tcard { text-align: center; }
.tph { overflow: hidden; aspect-ratio: 1 / 1; background: var(--panel); }
.tph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tcard:hover .tph img { transform: scale(1.05); }
.tcard h3 {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.tcard .tprice { margin-top: 8px; color: var(--gold); font-size: 0.82rem; letter-spacing: 0.18em; }

/* ---------- style banner ---------- */
.style-banner {
  position: relative;
  text-align: center;
  background: url("../assets/img/dark/style-banner.jpg") center / cover no-repeat;
}
.style-banner::before { content: ""; position: absolute; inset: 0; background: rgba(5, 5, 7, 0.72); }
.style-banner .wrap { position: relative; z-index: 2; }
.style-banner h2 {
  font-family: var(--ui);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.style-banner p { color: var(--dim); max-width: 430px; margin: 0 auto 36px; }

/* ---------- brand strip ---------- */
.brandstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; background: var(--panel); }
.bs-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 26px;
}
.bs-row { display: flex; justify-content: center; gap: clamp(26px, 5vw, 64px); flex-wrap: wrap; }
.bs-row span {
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}

/* ---------- featured ---------- */
.feature { background: var(--bg); }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.feat-copy h2 { margin-bottom: 22px; }
.feat-copy p { color: var(--dim); max-width: 460px; margin-bottom: 26px; }
.feat-price {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.feat-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.feat-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ---------- noir ---------- */
.noir { background: var(--bg); }
.noir-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.giant {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.9;
  margin-bottom: 26px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 240, 235, 0.85);
}
.noir-copy p { color: var(--dim); max-width: 520px; margin-bottom: 36px; }
.specs { margin-bottom: 42px; }
.specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.specs li:last-child { border-bottom: 1px solid var(--line); }
.specs span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
}
.specs b { font-weight: 500; text-align: right; }
.specs .gold { color: var(--gold); font-weight: 700; letter-spacing: 0.06em; }

.noir-media { position: relative; }
.noir-media .main { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 60% 30%; }
.noir-media .inset {
  position: absolute;
  left: -13%;
  bottom: -9%;
  width: 52%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(242,240,235,0.2);
  outline: 12px solid var(--bg);
}

/* ---------- collection ---------- */
.collection { background: var(--panel); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pcard { background: var(--bg); border: 1px solid transparent; transition: border-color 0.3s ease, transform 0.3s ease; }
.pcard:hover { border-color: rgba(200,163,95,0.5); transform: translateY(-4px); }
.ph { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.92); }
.pcard:hover .ph img { transform: scale(1.06); }
.tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  background: rgba(8,8,10,0.82);
  color: var(--gold);
  padding: 6px 10px;
}
.pm { padding: 18px 18px 22px; }
.pm small {
  display: block;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 7px;
}
.pm h3 {
  font-size: 0.98rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.pm .price { font-size: 0.92rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; }

/* ---------- heritage ---------- */
.heritage { background: var(--bg); }
.her-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.her-media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.her-copy h2 { margin-bottom: 24px; }
.her-copy p { color: var(--dim); max-width: 520px; margin-bottom: 46px; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}
.stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats span {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--faint);
}

/* ---------- sell cta ---------- */
.sellcta {
  position: relative;
  text-align: center;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sellcta .wrap { position: relative; z-index: 2; }
.sellcta h2 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin-bottom: 20px; }
.sellcta p { color: var(--dim); max-width: 460px; margin: 0 auto 40px; }

/* ---------- quotes ---------- */
.quotes { background: var(--panel); }
.qgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 38px 32px;
}
.quote .stars { color: var(--gold); letter-spacing: 5px; font-size: 0.82rem; margin-bottom: 18px; }
.quote blockquote { font-size: 0.98rem; color: var(--txt); line-height: 1.65; margin-bottom: 22px; }
.quote figcaption {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--faint);
}

/* ---------- journal ---------- */
.journal { background: var(--bg); }
.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.jh { overflow: hidden; aspect-ratio: 3 / 2; margin-bottom: 20px; }
.jh img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.jcard:hover .jh img { transform: scale(1.05); }
.jcard small {
  display: block;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.jcard h3 {
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  line-height: 1.4;
  max-width: 340px;
}

/* ---------- footer ---------- */
footer {
  position: relative;
  background: #050506;
  border-top: 1px solid var(--line);
  padding: clamp(70px, 9vw, 120px) 0 0;
  overflow: hidden;
}
.foot-mark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(6rem, 19vw, 17rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 235, 0.07);
  pointer-events: none;
  white-space: nowrap;
}
.foot-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: clamp(60px, 8vw, 110px);
}
.fb-mark { font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.2em; display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.fb-mark span { font-family: var(--ui); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.3em; color: var(--gold); }
.foot-brand p { color: var(--dim); font-size: 0.88rem; max-width: 300px; margin-bottom: 26px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  transition: all 0.25s ease;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
footer h4 {
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.foot-grid a {
  display: block;
  font-size: 0.86rem;
  color: var(--dim);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.foot-grid a:hover { color: var(--txt); }
.foot-legal {
  position: relative; z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 30px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .hdr-nav { display: none; }
  .menu-btn { display: flex; }
  .cards, .tcards { grid-template-columns: repeat(2, 1fr); }
  .noir-grid, .her-grid, .feat-grid { grid-template-columns: 1fr; }
  .noir-media { max-width: 560px; }
  .noir-media .inset { left: auto; right: -6%; }
  .qgrid, .jgrid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .film-next { display: none; }
  .film-captions { bottom: 96px; }
  .chapter p { display: none; }
  .ch-ctas { gap: 20px; }
  .cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pm { padding: 12px 12px 16px; }
  .pm h3 { font-size: 0.82rem; }
  .qgrid, .jgrid, .tcards { grid-template-columns: 1fr; }
  .tcards { max-width: 420px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .hdr-icons button:not(.menu-btn) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .film-scroll { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
