/* ============================================
   DRIPPIN — Luxury Without the Markup
   Design: Dark luxury, editorial, warm gold
   ============================================ */

:root {
  --bg: #0b0a08;
  --bg-2: #131210;
  --bg-3: #1a1815;
  --gold: #c9a84c;
  --gold-light: #e0c97a;
  --gold-dark: #9a7c30;
  --cream: #f0ece4;
  --cream-muted: rgba(240, 236, 228, 0.6);
  --text: #e8e4dc;
  --text-dim: rgba(232, 228, 220, 0.45);
  --border: rgba(201, 168, 76, 0.2);
  --border-strong: rgba(201, 168, 76, 0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── NAV ────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cream);
}

.nav__dot {
  color: var(--gold);
}

.nav__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 600px) {
  .nav { padding: var(--space-sm) var(--space-md); }
  .nav__tagline { display: none; }
}

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: var(--space-xl) var(--space-lg);
  overflow: hidden;
}

.hero__bg-text {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 380px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__categories {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__sep { color: var(--text-dim); }

.hero__showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__showcase-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__watch {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2520, #0d0c0a);
  border: 2px solid var(--gold-dark);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__watch-face {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a1815, #0a0908);
  border: 1px solid var(--gold-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__watch-brand {
  font-family: var(--font-body);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero__watch-model {
  font-family: var(--font-body);
  font-size: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero__watch-hands {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero__hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.hero__hand--hour {
  width: 2px;
  height: 28%;
  background: var(--cream);
  transform: translateX(-50%) rotate(135deg);
}

.hero__hand--minute {
  width: 1.5px;
  height: 36%;
  background: var(--cream);
  transform: translateX(-50%) rotate(45deg);
}

.hero__hand--second {
  width: 1px;
  height: 40%;
  background: var(--gold);
  transform: translateX(-50%) rotate(200deg);
}

.hero__price-tag {
  margin-top: var(--space-md);
  text-align: center;
}

.hero__price-retail {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.hero__price-ours {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.mobile-only { display: none; }
@media (max-width: 768px) {
  .mobile-only { display: block; }
  .hero br.mobile-only { display: block; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    padding-top: var(--space-xl);
  }
  .hero__content { order: 1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__categories { justify-content: center; }
  .hero__showcase { order: 0; margin-bottom: var(--space-xl); }
  .hero__showcase-ring { width: 220px; height: 220px; }
  .hero__watch { width: 140px; height: 140px; }
}

/* ── MANIFESTO ─────────────────────────────── */
.manifesto {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto__inner {
  max-width: 780px;
  margin: 0 auto;
}

.manifesto__rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  margin: var(--space-lg) 0;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream-muted);
  text-align: center;
}

@media (max-width: 600px) {
  .manifesto { padding: var(--space-xl) var(--space-md); }
}

/* ── COLLECTION ────────────────────────────── */
.collection {
  padding: var(--space-2xl) var(--space-lg);
}

.collection__header {
  margin-bottom: var(--space-xl);
}

.collection__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.collection__sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.collection__item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.collection__item:hover {
  border-color: var(--border-strong);
}

.collection__img-wrap {
  height: 280px;
  position: relative;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* WATCH ART */
.collection__watch-art {
  position: relative;
  width: 120px;
  height: 200px;
}

.collection__watch-case {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 40% 40%, #1f1c18, #0b0a08);
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15), 0 10px 30px rgba(0,0,0,0.5);
}

.collection__watch-case::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.collection__watch-strap {
  position: absolute;
  width: 36px;
  height: 80px;
  background: linear-gradient(180deg, #2a2520, #1a1714);
  border: 1px solid var(--gold-dark);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-radius: 4px 4px 2px 2px;
}

.collection__watch-crown {
  position: absolute;
  width: 8px;
  height: 14px;
  background: var(--gold-dark);
  border-radius: 2px;
  top: 55px;
  right: 0px;
}

/* SUNGLASSES ART */
.collection__sunglasses-art {
  position: relative;
  width: 160px;
  height: 80px;
}

.collection__lens {
  position: absolute;
  width: 60px;
  height: 45px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(135deg, rgba(30,28,24,0.9), rgba(15,14,12,0.95));
  border: 1.5px solid var(--gold);
  top: 20px;
}

.collection__lens--left { left: 10px; }
.collection__lens--right { right: 10px; }

.collection__lens::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 10px;
  width: 20px;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.collection__frame-top {
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--gold);
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.collection__bridge {
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--gold);
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.collection__temple {
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--gold-dark);
  top: 18px;
  border-radius: 2px;
}

.collection__temple--left { left: -30px; transform: rotate(-15deg); }
.collection__temple--right { right: -30px; transform: rotate(15deg); }

/* APPAREL ART */
.collection__apparel-art {
  position: relative;
  width: 100px;
  height: 160px;
}

.collection__shirt {
  position: absolute;
  width: 70px;
  height: 90px;
  background: linear-gradient(180deg, #2a2520, #1e1b17);
  border: 1px solid var(--gold-dark);
  top: 20px;
  left: 15px;
  border-radius: 2px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 100%, 0% 100%, 0% 15%);
}

.collection__shirt::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--gold-dark);
}

.collection__jacket {
  position: absolute;
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, #1a1815, #141210);
  border: 1px solid var(--gold-dark);
  top: 10px;
  right: 5px;
  border-radius: 2px;
  clip-path: polygon(15% 0%, 85% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
}

.collection__detail {
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--gold);
  top: 30px;
  right: 15px;
}

/* OVERLAY */
.collection__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 8, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection__item:hover .collection__overlay { opacity: 1; }

.collection__brands {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  line-height: 2;
  text-transform: uppercase;
}

.collection__info {
  padding: var(--space-md);
}

.collection__cat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.collection__desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.collection__starting {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .collection__grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .collection { padding: var(--space-xl) var(--space-md); }
}

/* ── WHY ───────────────────────────────────── */
.why {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.why__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.why__stat-block {}

.why__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.why__label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.why__right {}

.why__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.why__divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-md);
}

.why__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.why__detail {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.why__detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
}

.why__detail-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .why {
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-lg);
  }
  .why__left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

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

/* ── PRICING ───────────────────────────────── */
.pricing {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg);
}

.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.pricing__table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.pricing__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  align-items: center;
}

.pricing__row:last-child { border-bottom: none; }

.pricing__row--header {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-2);
}

.pricing__retail {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 0.8rem;
}

.pricing__highlight,
.pricing__price {
  color: var(--cream);
  font-weight: 500;
}

.pricing__save {
  color: var(--gold);
  font-weight: 600;
}

.pricing__footnote {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: var(--space-md);
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .pricing__row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .pricing__row--header span:first-child,
  .pricing__row span:first-child {
    display: none;
  }
  .pricing { padding: var(--space-xl) var(--space-md); }
}

/* ── CLOSING ───────────────────────────────── */
.closing {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.closing__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-lg);
}

.closing__body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

@media (max-width: 600px) {
  .closing { padding: var(--space-xl) var(--space-md); }
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.footer__dot { color: var(--gold); }

.footer__tagline {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
}

.footer__divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto var(--space-lg);
}

.footer__meta {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}

.footer__copyright {
  font-size: 0.65rem;
  color: var(--text-dim);
  opacity: 0.5;
}

@media (max-width: 600px) {
  .footer { padding: var(--space-xl) var(--space-md); }
}

/* ── SCROLL REVEAL ─────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .collection__item,
  .why__stat-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .collection__item.visible,
  .why__stat-block.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
