/* =================================================================
   BORROWED TIME — Luxury Watch Rentals
   Stylesheet
   ================================================================= */

/* ---------- ROOT TOKENS ---------- */
:root {
  --midnight:    #0F0F1A;
  --rose-gold:   #C8907A;
  --blush-linen: #F5EDE8;
  --deep-rose:   #8C4A38;
  --warm-white:  #FAF6F2;
  --muted-hour:  #5A3A30;

  --rose-gold-30: rgba(200, 144, 122, 0.30);
  --rose-gold-20: rgba(200, 144, 122, 0.20);
  --rose-gold-10: rgba(200, 144, 122, 0.10);
  --blush-30:     rgba(245, 237, 232, 0.30);
  --blush-60:     rgba(245, 237, 232, 0.60);
  --midnight-80:  rgba(15, 15, 26, 0.80);
  --midnight-60:  rgba(15, 15, 26, 0.60);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--blush-linen);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

input, textarea, select { font: inherit; color: inherit; }

ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
.serif        { font-family: var(--serif); font-weight: 300; }
.sans         { font-family: var(--sans); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.12em;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* ---------- LAYOUT HELPERS ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.dark  { background: var(--midnight); color: var(--blush-linen); }
.section.light { background: var(--warm-white); color: var(--muted-hour); }
.section.blush { background: var(--blush-linen); color: var(--muted-hour); }

.divider-thin {
  height: 1px;
  background: var(--rose-gold-20);
  width: 100%;
  border: 0;
}

.center-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin: 1.25rem auto;
  opacity: 0.7;
}

/* ---------- LOGO ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--blush-linen);
  text-decoration: none;
}
.logo__icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo--lg .logo__icon { width: 84px; height: 84px; }
.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--serif);
  color: var(--blush-linen);
}
.logo__name {
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.logo__sub {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--rose-gold-30);
  width: 100%;
  text-align: center;
  color: var(--rose-gold);
  font-weight: 400;
}
.logo--lg .logo__name { font-size: 2.4rem; letter-spacing: 0.4em; }
.logo--lg .logo__sub { font-size: 1rem; letter-spacing: 0.55em; padding-top: 0.6rem; margin-top: 0.6rem; }

.logo--center {
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.logo--center .logo__text { align-items: center; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--midnight);
  border-bottom: 1px solid var(--rose-gold-30);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-linen);
  font-weight: 400;
  position: relative;
  padding: 0.4rem 0;
}
.nav__link:hover,
.nav__link.is-active { color: var(--rose-gold); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose-gold);
}
.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
  padding: 0.7rem 1.4rem;
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--rose-gold); color: var(--midnight); }

.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 5px; right: 5px;
  height: 1px;
  background: var(--blush-linen);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--midnight);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    padding: 4rem 2rem;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { font-size: 1rem; }
  .nav__cta { font-size: 0.85rem; padding: 0.9rem 2rem; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1.05rem 2.2rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--blush-linen);
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  background: var(--midnight);
}
.btn--primary:hover { background: var(--rose-gold); color: var(--midnight); }

.btn--ghost {
  color: var(--blush-linen);
  border-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn--ghost:hover { color: var(--rose-gold); }

.btn--solid {
  background: var(--rose-gold);
  color: var(--midnight);
  border-color: var(--rose-gold);
}
.btn--solid:hover { background: transparent; color: var(--rose-gold); }

.btn--full { width: 100%; }
.btn--lg { padding: 1.25rem 2.5rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- HERO (HOMEPAGE) ---------- */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--gutter) 5rem;
  position: relative;
  background: var(--midnight);
}
.hero__logo { margin-bottom: 3rem; }
.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--blush-linen);
  max-width: 18ch;
  margin: 0 auto;
}
.hero__sub {
  margin-top: 1.5rem;
  color: var(--blush-60);
  font-size: 1rem;
  letter-spacing: 0.05em;
  max-width: 36ch;
}
.hero__ctas {
  margin-top: 2.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__rule {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 420px;
  height: 1px;
  background: var(--rose-gold);
  opacity: 0.2;
}

/* ---------- HOW IT WORKS STRIP ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--rose-gold-20);
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--rose-gold);
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step__title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--blush-linen);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.step__body {
  color: var(--blush-60);
  font-size: 0.92rem;
  max-width: 32ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--rose-gold-20); }
  .step:last-child { border-bottom: 0; }
}

/* ---------- COLLECTION CARDS (HOMEPAGE FEATURED) ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--warm-white);
  border: 0.5px solid var(--rose-gold);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease);
}
.feature-card__img {
  aspect-ratio: 4 / 5;
  background: var(--midnight);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rose-gold-30);
}
.feature-card__body {
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
}
.feature-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 1.25rem;
}
.feature-card:hover { opacity: 0.92; }

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

/* ---------- WATCH PLACEHOLDER (REUSABLE) ---------- */
.watch-ph {
  width: 100%;
  height: 100%;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--rose-gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.watch-ph::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--rose-gold-30);
  pointer-events: none;
}
.watch-ph__label {
  position: relative;
  z-index: 1;
  text-align: center;
}
.watch-ph__label::before {
  content: "[ ";
}
.watch-ph__label::after { content: " ]"; }

.watch-ph--has-mark::after {
  content: "BORROWED TIME";
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rose-gold);
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  opacity: 0.4;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--rose-gold-20);
  border-bottom: 1px solid var(--rose-gold-20);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}
.trust-item__icon {
  width: 40px;
  height: 40px;
  color: var(--rose-gold);
}
.trust-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-linen);
  font-weight: 400;
}
@media (max-width: 760px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--warm-white);
  border-left: 1px solid var(--rose-gold);
  padding: 2.25rem 2rem;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--muted-hour);
  margin-bottom: 1.75rem;
}
.testimonial__name {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--deep-rose);
  font-weight: 500;
}
.testimonial__date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-hour);
  margin-top: 0.35rem;
  opacity: 0.7;
}
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  text-align: center;
  padding: 5rem var(--gutter);
  background: var(--midnight);
  border-top: 1px solid var(--rose-gold-20);
}
.newsletter__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: 0.12em;
  color: var(--blush-linen);
  max-width: 26ch;
  margin: 0 auto 2rem;
}
.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__input {
  flex: 1 1 240px;
  background: transparent;
  border: 1px solid var(--rose-gold);
  padding: 1rem 1.2rem;
  color: var(--blush-linen);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.newsletter__input::placeholder { color: var(--blush-30); }
.newsletter__input:focus { outline: none; border-color: var(--blush-linen); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--midnight);
  color: var(--muted-hour);
  border-top: 1px solid var(--rose-gold-30);
  padding: 4rem var(--gutter) 1.5rem;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rose-gold-20);
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a {
  color: var(--blush-30);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.footer__col a:hover { color: var(--rose-gold); }
.footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rose-gold-20);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted-hour);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__social {
  display: flex;
  gap: 1.25rem;
}
.footer__social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blush-30);
}
.footer__social a:hover { color: var(--rose-gold); }
@media (max-width: 760px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- COLLECTION FILTERS ---------- */
.filter-bar {
  position: sticky;
  top: 70px;
  background: var(--midnight);
  border-bottom: 1px solid var(--rose-gold);
  z-index: 60;
  padding: 1.25rem var(--gutter);
}
.filter-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-group__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-30);
}
.filter-pill {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-linen);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border-top: 0; border-left: 0; border-right: 0;
}
.filter-pill:hover { color: var(--rose-gold); }
.filter-pill.is-active {
  color: var(--rose-gold);
  border-bottom-color: var(--rose-gold);
}
.filter-count {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-30);
}

/* ---------- WATCH GRID ---------- */
.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 1000px) { .watch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .watch-grid { grid-template-columns: 1fr; } }

.watch-card {
  background: var(--midnight);
  border: 0.5px solid var(--rose-gold);
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s var(--ease);
}
.watch-card__media {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.watch-card__media .watch-ph {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s var(--ease);
}
.watch-card__media .watch-ph.alt {
  opacity: 0;
  background: #16161f;
}
.watch-card__media .watch-ph.alt::before { border-color: var(--rose-gold-20); }
.watch-card:hover .watch-ph.alt { opacity: 1; }

.watch-tier {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
  background: var(--midnight);
  padding: 0.4rem 0.7rem;
  z-index: 2;
}
.watch-anti-counterfeit {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--midnight);
  border: 1px solid var(--rose-gold-30);
  padding: 0.35rem 0.55rem;
  color: var(--rose-gold);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}
.watch-anti-counterfeit svg { width: 12px; height: 12px; }

.watch-card__body {
  padding: 1.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--rose-gold-20);
}
.watch-card__brand {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-30);
  margin-bottom: 0.4rem;
}
.watch-card__model {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--blush-linen);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.watch-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted-hour);
}
.watch-card__retail { color: var(--blush-30); }
.watch-card__price { color: var(--rose-gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.watch-card__price strong { font-weight: 500; }

.watch-card .btn { margin-top: auto; }

/* ---------- WATCH DETAIL PAGE ---------- */
.watch-detail {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  padding: 4rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .watch-detail { grid-template-columns: 1fr; gap: 2.5rem; }
}

.gallery__main {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rose-gold);
  position: relative;
  margin-bottom: 1rem;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--rose-gold-30);
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
}
.gallery__thumb:hover,
.gallery__thumb.is-active { border-color: var(--rose-gold); }

.detail__brand {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-hour);
  margin-bottom: 0.75rem;
}
.detail__model {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.05em;
  color: var(--blush-linen);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.detail__retail {
  font-size: 0.85rem;
  color: var(--blush-30);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.detail__rule {
  height: 1px;
  background: var(--rose-gold);
  width: 100%;
  opacity: 0.4;
  margin: 1.5rem 0 1.75rem;
}

/* Calculator */
.calc__title {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.calc__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc__field { display: flex; flex-direction: column; gap: 0.4rem; }
.calc__field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-30);
}
.calc__field input {
  background: var(--midnight);
  border: 1px solid var(--rose-gold-30);
  color: var(--blush-linen);
  padding: 0.85rem 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color-scheme: dark;
}
.calc__field input:focus {
  outline: none;
  border-color: var(--rose-gold);
}
.calc__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--blush-linen);
}
.calc__line strong { color: var(--rose-gold); font-weight: 500; }

.calc__total {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--rose-gold);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-align: right;
  margin: 1.25rem 0 0.5rem;
}
.calc__deposit-note {
  background: rgba(200, 144, 122, 0.06);
  border: 1px solid var(--rose-gold-20);
  padding: 1rem 1.1rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--blush-30);
  letter-spacing: 0.03em;
  margin: 1.25rem 0 1.75rem;
  position: relative;
}
.calc__deposit-note strong { color: var(--rose-gold); font-weight: 500; }

/* Accordion */
.accordion {
  border-top: 1px solid var(--rose-gold-20);
  margin-top: 2rem;
}
.acc-item { border-bottom: 1px solid var(--rose-gold-20); }
.acc-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0.25rem;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-linen);
  background: none;
  border: none;
  cursor: pointer;
}
.acc-item__btn:hover { color: var(--rose-gold); }
.acc-item__icon {
  color: var(--rose-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.acc-item.is-open .acc-item__icon { transform: rotate(45deg); }
.acc-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc-item__panel-inner {
  padding: 0 0.25rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--blush-30);
}

/* ---------- HOW IT WORKS PAGE ---------- */
.process-section {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.process-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.process-section.reverse .process-section__inner > :first-child { order: 2; }

@media (max-width: 860px) {
  .process-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .process-section.reverse .process-section__inner > :first-child { order: 0; }
}

.process-step__num {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--rose-gold);
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
}
.process-step__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.process-step__body {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 56ch;
}

.process-img {
  aspect-ratio: 4 / 3;
  position: relative;
  border: 1px solid var(--rose-gold-30);
}

/* Why we're safe */
.safe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.safe-card {
  border: 1px solid var(--rose-gold-30);
  padding: 1.75rem 1.5rem;
  background: rgba(200, 144, 122, 0.04);
}
.safe-card__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--rose-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.safe-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--blush-linen);
  margin-bottom: 0.75rem;
}
.safe-card__body {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--blush-30);
}

/* FAQ accordion (light bg variant) */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--rose-gold-20);
}

/* ---------- BOOKING FLOW ---------- */
.booking {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem var(--gutter) 5rem;
}
.progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.progress__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.progress__dot {
  width: 14px;
  height: 14px;
  border: 1px solid var(--rose-gold);
  border-radius: 50%;
  background: var(--midnight);
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.progress__step.is-active .progress__dot { background: var(--rose-gold); }
.progress__step.is-done .progress__dot { background: var(--rose-gold); opacity: 0.6; }
.progress__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-30);
  white-space: nowrap;
}
.progress__step.is-active .progress__label { color: var(--rose-gold); }
.progress__line {
  flex: 1;
  height: 1px;
  background: var(--rose-gold-20);
}
@media (max-width: 760px) {
  .progress__label { display: none; }
}

.book-step { display: none; }
.book-step.is-active { display: block; animation: fadeIn 0.5s var(--ease); }
.book-step__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.book-step__sub {
  color: var(--blush-30);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.summary-card {
  border: 1px solid var(--rose-gold-30);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  background: rgba(200, 144, 122, 0.04);
}
.summary-card__img { aspect-ratio: 1 / 1; }
.summary-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--blush-linen);
  letter-spacing: 0.06em;
}
.summary-card__brand {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-30);
  margin-bottom: 0.4rem;
}
.summary-card__price {
  margin-top: 0.75rem;
  color: var(--rose-gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.upload-zone {
  border: 1px dashed var(--rose-gold);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.upload-zone:hover { background: rgba(200, 144, 122, 0.04); }
.upload-zone__icon {
  width: 36px; height: 36px; color: var(--rose-gold); margin: 0 auto 0.75rem;
}
.upload-zone__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--blush-linen);
  margin-bottom: 0.4rem;
}
.upload-zone__sub {
  font-size: 0.78rem;
  color: var(--blush-30);
  letter-spacing: 0.05em;
}
.upload-zone.is-uploaded {
  border-style: solid;
  background: rgba(200, 144, 122, 0.08);
}

.field-group { margin-bottom: 1.25rem; }
.field-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush-30);
  margin-bottom: 0.5rem;
}
.field-group input,
.field-group textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rose-gold-30);
  padding: 0.75rem 0;
  color: var(--blush-linen);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: border-color 0.25s var(--ease);
  color-scheme: dark;
}
.field-group input:focus,
.field-group textarea:focus { outline: none; border-bottom-color: var(--rose-gold); }
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--blush-30); }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--blush-linen);
  line-height: 1.5;
  cursor: pointer;
  margin: 1rem 0;
}
.checkbox input {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--rose-gold);
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.checkbox input:checked { background: var(--rose-gold); }
.checkbox input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  font-size: 0.7rem;
  line-height: 1;
}

.agreement {
  border: 1px solid var(--rose-gold-30);
  background: var(--midnight);
  padding: 1.75rem;
  height: 280px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--blush-linen);
}
.agreement h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}
.agreement p { margin-bottom: 0.75rem; color: var(--blush-30); }
.agreement strong { color: var(--rose-gold); font-weight: 500; }

.book-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.confirmation {
  text-align: center;
  padding: 4rem 0 2rem;
}
.confirmation__icon {
  width: 60px; height: 60px;
  color: var(--rose-gold);
  margin: 0 auto 1.5rem;
}
.confirmation__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  color: var(--blush-linen);
  margin-bottom: 1rem;
}
.confirmation__sub {
  color: var(--blush-30);
  max-width: 48ch;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- ABOUT PAGE ---------- */
.about-hero {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  border-bottom: 1px solid var(--rose-gold-20);
}
.about-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 1.75rem;
  color: var(--blush-linen);
}
.about-hero__sub {
  color: var(--blush-60);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}
.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: clamp(3rem, 5vw, 5rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-images .frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--rose-gold);
  position: relative;
  background: rgba(200, 144, 122, 0.04);
  padding: 14px;
}
.about-images .frame .watch-ph::before { border: 0; }
@media (max-width: 760px) {
  .about-images { grid-template-columns: 1fr; }
}
.about-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 4rem;
  text-align: center;
}
.about-story p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--blush-linen);
  letter-spacing: 0.02em;
}
.values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 4rem var(--gutter);
  border-top: 1px solid var(--rose-gold-20);
}
.values span {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.values .dot {
  width: 4px; height: 4px;
  background: var(--rose-gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ---------- CONTACT ---------- */
.contact {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  text-align: center;
}
.contact__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--blush-linen);
}
.contact__sub {
  color: var(--blush-30);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}
.contact form {
  text-align: left;
}
.contact .form-actions {
  text-align: center;
  margin-top: 2.5rem;
}
.contact__note {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-hour);
  margin-top: 1.5rem;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- RELATED STRIP ---------- */
.related {
  background: var(--midnight);
  border-top: 1px solid var(--rose-gold-20);
  padding: 4rem var(--gutter);
}
.related__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush-linen);
  margin-bottom: 2rem;
  text-align: center;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 800px) { .related__grid { grid-template-columns: 1fr; } }

/* ---------- UTILITY ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.dim { color: var(--blush-30); }
.rose { color: var(--rose-gold); }

/* ---------- TINY UI BITS ---------- */
.tooltip {
  position: relative;
  border-bottom: 1px dotted var(--rose-gold);
  cursor: help;
}
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--midnight);
  color: var(--blush-linen);
  border: 1px solid var(--rose-gold);
  padding: 0.65rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  width: max-content;
  max-width: 240px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.tooltip:hover::after { opacity: 1; }

/* =================================================================
   POLISH PASS — Depth, 3D, Scroll Animations
   ================================================================= */

:root {
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Soft shadows that read as depth, not gloss */
  --shadow-soft:   0 24px 48px -20px rgba(0,0,0,0.55), 0 8px 16px -8px rgba(0,0,0,0.25);
  --shadow-rose:   0 24px 60px -24px rgba(200,144,122,0.28), 0 4px 12px -6px rgba(200,144,122,0.12);
  --shadow-inset:  inset 0 1px 0 rgba(245,237,232,0.04);
}

/* ---------- BODY: subtle vignette so cards lift off background ---------- */
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(200,144,122,0.045), transparent 50%),
    var(--midnight);
  background-attachment: fixed;
}

/* ---------- NAV: scroll-condensed glass ---------- */
.nav {
  transition: background 0.35s var(--ease-smooth),
              backdrop-filter 0.35s var(--ease-smooth),
              border-color 0.35s var(--ease-smooth),
              padding 0.35s var(--ease-smooth);
}
.nav.is-scrolled {
  background: rgba(15, 15, 26, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--rose-gold-30);
}
.nav__inner { transition: padding 0.35s var(--ease-smooth); }
.nav.is-scrolled .nav__inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

/* ---------- HERO: depth + perspective + watch float ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 35%, rgba(200,144,122,0.10), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(140,74,56,0.08), transparent 70%),
    var(--midnight);
  perspective: 1400px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,144,122,0.04) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(200,144,122,0.04) 0, transparent 35%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Floating + tilting hero watch */
.hero__logo {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease-out);
  animation: heroFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(200,144,122,0.20))
          drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50%      { transform: translateY(-14px) rotateX(0) rotateY(0); }
}

/* When hero is being mouse-tilted, JS sets a CSS variable; this overrides float */
.hero__logo.is-tilting {
  animation: none;
  transform:
    translateY(var(--tilt-y, 0))
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
}

/* Animated seconds hand on hero watch only */
.hero__logo .logo__second-hand {
  transform-origin: 50px 50px;
  transform-box: fill-box;
  animation: tickSeconds 60s linear infinite;
}
@keyframes tickSeconds {
  to { transform: rotate(360deg); }
}
/* Slow minute creep — barely perceptible but adds life */
.hero__logo .logo__minute-hand {
  transform-origin: 50px 50px;
  transform-box: fill-box;
  animation: tickMinute 3600s linear infinite;
}
@keyframes tickMinute {
  to { transform: rotate(360deg); }
}

/* ---------- HEADLINE REVEAL ---------- */
.hero__headline {
  background: linear-gradient(180deg, var(--blush-linen) 0%, rgba(245,237,232,0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- 3D CARD HOVER ---------- */
.watch-card,
.feature-card {
  transform-style: preserve-3d;
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.45s var(--ease-out);
  will-change: transform;
  position: relative;
}
.watch-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,144,122,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.watch-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose-gold);
}
.watch-card:hover::before,
.feature-card:hover::before { opacity: 1; }

/* The card body content stays above the gradient overlay */
.watch-card__body,
.feature-card__body { position: relative; z-index: 2; }

/* Tier badge gets a subtle glow on hover */
.watch-card:hover .watch-tier {
  background: var(--rose-gold);
  color: var(--midnight);
}

/* ---------- BUTTONS: subtle depth + smoother ease ---------- */
.btn {
  transition:
    color 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}
.btn--primary:hover,
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(200,144,122,0.50);
}
.btn:active { transform: translateY(0); }

/* ---------- TRUST ITEMS: gentle lift ---------- */
.trust-item {
  transition: transform 0.4s var(--ease-out);
}
.trust-item:hover { transform: translateY(-4px); }
.trust-item:hover .trust-item__icon { color: var(--rose-gold); }

/* ---------- TESTIMONIAL CARDS ---------- */
.testimonial {
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-left-width 0.4s var(--ease-out);
  border-left-width: 1px;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-left-width: 3px;
  box-shadow: 0 18px 36px -18px rgba(140,74,56,0.25);
}

/* ---------- STEPS: depth on hover ---------- */
.step {
  transition: background 0.5s var(--ease-out);
}
.step:hover {
  background: linear-gradient(180deg, transparent, rgba(200,144,122,0.04));
}
.step:hover .step__num { color: var(--blush-linen); }

/* ---------- FADE-IN: smoother + stagger support ---------- */
.fade-in {
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  transform: translateY(36px) scale(0.985);
}
.fade-in.is-visible { transform: translateY(0) scale(1); }

/* ---------- STATS BLOCK (new on homepage) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rose-gold-20);
  padding: 1px;
  border: 1px solid var(--rose-gold-30);
  margin-top: 3rem;
}
.stat {
  background: var(--midnight);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.4s var(--ease-out);
}
.stat:hover { background: rgba(200, 144, 122, 0.04); }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--rose-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-30);
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- DECORATIVE SCROLL CUE (hero) ---------- */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
  z-index: 2;
  pointer-events: none;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: var(--blush-linen);
  animation: scrollCue 2.4s var(--ease-out) infinite;
}
@keyframes scrollCue {
  0%   { top: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ---------- IMAGE PLACEHOLDERS GET SUBTLE GLOW ON HOVER ---------- */
.watch-card__media,
.feature-card__img,
.gallery__main {
  transition: filter 0.5s var(--ease-out);
}
.watch-card:hover .watch-card__media,
.feature-card:hover .feature-card__img {
  filter: brightness(1.08);
}

/* ---------- SECTION DIVIDERS (light decorative line between sections) ---------- */
.section.dark + .section.light::before,
.section.dark + .section.blush::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  margin: -25px auto 0;
}

/* ---------- FILTER PILLS: smoother active transition ---------- */
.filter-pill {
  position: relative;
  transition: color 0.3s var(--ease-out);
}
.filter-pill::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.filter-pill.is-active::after { transform: scaleX(1); }
.filter-pill:hover::after { transform: scaleX(0.5); }
.filter-pill.is-active { border-bottom-color: transparent; } /* old underline replaced by ::after */

/* ---------- WATCH GALLERY MAIN: subtle inner highlight ---------- */
.gallery__main {
  box-shadow: var(--shadow-inset);
  transition: box-shadow 0.6s var(--ease-out);
}
.gallery__main:hover {
  box-shadow: var(--shadow-inset), var(--shadow-soft);
}

/* ---------- SAFE CARDS: lift + glow ---------- */
.safe-card {
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease-out), background 0.5s var(--ease-out);
}
.safe-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-gold);
  background: rgba(200, 144, 122, 0.07);
}

/* ---------- FRAME (about page) ---------- */
.frame {
  transition: transform 0.6s var(--ease-out);
}
.about-images:hover .frame:not(:hover) { opacity: 0.55; }
.about-images { transition: none; }
.frame:hover { transform: translateY(-6px); }
.about-images .frame { transition: transform 0.6s var(--ease-out), opacity 0.5s var(--ease-out); }

/* ---------- REDUCE-MOTION RESPECT ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__logo { animation: none; }
}
