:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a30;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #f5f0e8;
  --grey: #888888;
  --grey-light: #cccccc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* COOKIE */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a1a1a; border-top: 1px solid #9a7a30;
  padding: 16px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-size: 12px; color: #cccccc;
}
.cookie-banner a { color: #c9a84c; text-decoration: none; }
.cookie-accept {
  background: #c9a84c; color: #0a0a0a; border: none;
  padding: 10px 24px; cursor: pointer; font-family: inherit;
  font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}

/* TOPBAR */
.topbar {
  background: #111111; border-bottom: 1px solid #2a2a2a;
  padding: 10px 0; text-align: center; font-size: 11px;
  letter-spacing: 2px; color: #cccccc; text-transform: uppercase;
}
.topbar .stars { color: #c9a84c; }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid #2a2a2a;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
  font-weight: 600; letter-spacing: 3px; color: #f5f0e8;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-diamond {
  width: 8px; height: 8px; background: #c9a84c;
  transform: rotate(45deg); display: inline-block; flex-shrink: 0;
}
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: #cccccc; text-decoration: none; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 10px;
  font-weight: 500;
}
nav a:hover, nav a.active { color: #c9a84c; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-login { color: #cccccc; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; font-weight: 500; }
.btn-login:hover { color: #c9a84c; }
.btn-register {
  border: 1px solid #c9a84c; color: #c9a84c; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  font-weight: 600; padding: 8px 16px;
}
.btn-register:hover { background: #c9a84c; color: #0a0a0a; }
.cart-btn { background: none; border: none; cursor: pointer; color: #f5f0e8; font-size: 18px; }

/* BUTTONS */
.btn-enter {
  display: inline-block; background: #c9a84c; color: #0a0a0a;
  padding: 14px 36px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; text-decoration: none;
  font-family: inherit; border: none; cursor: pointer;
}
.btn-enter:hover { background: #e8d5a3; }
.btn-outline {
  display: inline-block; border: 1px solid #c9a84c; color: #c9a84c;
  padding: 14px 40px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; text-decoration: none;
}
.btn-outline:hover { background: #c9a84c; color: #0a0a0a; }

/* SECTION LABELS */
.section-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 12px; font-weight: 600; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 42px;
  font-weight: 400; line-height: 1.15; color: #f5f0e8;
}
.section-title em { font-style: italic; color: #e8d5a3; }

/* WINNER CARDS */
.winners-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; }
.winner-card { background: #1a1a1a; padding: 28px 24px; border: 1px solid #1e1e1e; }
.winner-card:hover { border-color: #333; }
.winner-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 16px; background: #222; }
.winner-watch-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #c9a84c; margin-bottom: 6px; display: block; }
.winner-watch-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; color: #f5f0e8; margin-bottom: 12px; }
.winner-divider { width: 28px; height: 1px; background: #9a7a30; margin-bottom: 12px; }
.winner-name { font-size: 12px; font-weight: 600; color: #f5f0e8; }
.winner-date { font-size: 11px; color: #888888; margin-top: 3px; }

/* PRESS */
.press-section { border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; background: #1a1a1a; padding: 48px 32px; }
.press-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.press-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #888; }
.press-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; color: #444; letter-spacing: 1px; cursor: default; }
.press-logo:hover { color: #888; }

/* TRUSTPILOT BAR */
.trustpilot-bar { background: #00b67a; padding: 12px 32px; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: white; }

/* NEWSLETTER */
.newsletter-section { background: #1a1a1a; border-top: 1px solid #1e1e1e; padding: 80px 32px; text-align: center; }
.newsletter-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 38px; font-weight: 300; margin-bottom: 8px; }
.newsletter-title strong { font-weight: 600; color: #e8d5a3; }
.newsletter-sub { font-size: 12px; color: #888; margin-bottom: 40px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: #111; border: 1px solid #333; border-right: none; padding: 14px 20px; color: #f5f0e8; font-family: inherit; font-size: 12px; outline: none; }
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button { background: #c9a84c; color: #0a0a0a; border: none; padding: 14px 24px; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

/* FOOTER */
footer { background: #0a0a0a; border-top: 1px solid #1e1e1e; padding: 60px 32px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start; }
.footer-logo { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 600; letter-spacing: 3px; color: #f5f0e8; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.footer-tagline { font-size: 11px; color: #888; letter-spacing: 1px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-nav a { color: #888; text-decoration: none; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-nav a:hover { color: #c9a84c; }
.footer-right { text-align: right; }
.footer-social { font-size: 12px; color: #888; line-height: 1.7; }
.footer-divider { max-width: 1280px; margin: 40px auto 24px; height: 1px; background: #1e1e1e; }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: #888; font-size: 10px; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.footer-legal a:hover { color: #c9a84c; }
.footer-copy { font-size: 10px; color: #888; }
.footer-address { font-size: 10px; color: #888; margin-top: 4px; }

/* COMP CARD */
.comp-card {
  flex: 1; min-width: 300px; max-width: 520px; border: 1px solid #2a2a2a;
  background: #1a1a1a; padding: 0; text-align: center;
  position: relative; overflow: hidden; text-decoration: none; display: block;
}
.comp-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #1a1a1a; display: block; }
.comp-card-body { padding: 36px 32px; }
.comp-card-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #c9a84c; margin-bottom: 12px; font-weight: 600; display: block; }
.comp-card h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 400; line-height: 1.2; margin-bottom: 20px; color: #f5f0e8; }
.comp-price .amount { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 300; color: #c9a84c; display: block; }
.comp-price .per { font-size: 11px; letter-spacing: 1px; color: #888; text-transform: uppercase; display: block; }
.comp-enter { display: inline-block; margin-top: 24px; background: #c9a84c; color: #0a0a0a; padding: 14px 36px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

@media(max-width:900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  nav { display: none; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in   { animation: fadeInUp .7s ease both; }
.fade-in-2 { animation: fadeInUp .7s ease .15s both; }
.fade-in-3 { animation: fadeInUp .7s ease .3s both; }
