:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0ece4;
  --fg-muted: #8a8578;
  --gold: #d4a843;
  --gold-bright: #f5c842;
  --gold-dim: #9a7a2e;
  --red: #c43a3a;
  --red-bright: #e74c4c;
  --drip-yellow: #e8c840;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.gold-text { color: var(--gold-bright); }
.red-text { color: var(--red-bright); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0d08 50%, #0a0a0a 100%);
}

/* Split hero layout with product photo */
.hero-split {
  justify-content: space-between;
  text-align: left;
  padding: 2rem clamp(2rem, 6vw, 8rem);
  gap: 4rem;
}

.hero-split .hero-content-left {
  text-align: left;
  max-width: 560px;
  flex: 1;
}

.hero-split .hero-content-left .hero-sub {
  margin: 0;
}

.hero-split .hero-content-left .hero-logo-wrap {
  text-align: left;
}

/* Flagship product showcase in hero */
.hero-product-showcase {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.hero-product-frame {
  position: relative;
  width: clamp(280px, 30vw, 440px);
}

.hero-product-frame a {
  display: block;
  text-decoration: none;
  position: relative;
}

.hero-product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid rgba(212, 168, 67, 0.15);
  transition: border-color 0.3s ease, transform 0.4s ease;
  filter: brightness(0.95);
}

.hero-product-frame a:hover .hero-product-img {
  border-color: rgba(212, 168, 67, 0.45);
  transform: scale(1.015);
  filter: brightness(1);
}

.hero-product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.95) 50%);
}

.hero-product-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0a0a0a;
  background: var(--gold-bright);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.6rem;
}

.hero-product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.hero-product-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 3rem;
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-split .hero-content-left {
    text-align: center;
    max-width: 100%;
  }

  .hero-split .hero-content-left .hero-logo-wrap {
    text-align: center;
  }

  .hero-split .hero-content-left .hero-sub {
    margin: 0 auto;
  }

  .hero-product-showcase {
    width: 100%;
    justify-content: center;
  }

  .hero-product-frame {
    width: min(320px, 80vw);
  }
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(196, 58, 58, 0.02) 0%, transparent 40%);
}

.drip-line {
  position: absolute;
  top: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-bright), var(--drip-yellow), transparent);
  opacity: 0.15;
  animation: drip 4s ease-in infinite;
}

.drip-1 { left: 15%; height: 200px; animation-delay: 0s; }
.drip-2 { left: 75%; height: 300px; animation-delay: 1.5s; }
.drip-3 { left: 45%; height: 150px; animation-delay: 3s; }

@keyframes drip {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { opacity: 0.2; }
  100% { transform: translateY(100vh); opacity: 0; }
}

.diamond-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; padding: 2rem; }

/* Hero logo */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(212, 168, 67, 0.5));
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.4)); }
  50% { filter: drop-shadow(0 0 40px rgba(212, 168, 67, 0.7)); }
}

/* Hero CTA button */
.hero-cta-row {
  margin-top: 2.5rem;
}

.hero-cta-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 4px 30px rgba(212, 168, 67, 0.25);
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  margin: 0 auto 1.5rem;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

/* STORY */
.story {
  padding: 8rem 2rem;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.story-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.story-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.story-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 600px;
}

/* IDENTITY */
.identity {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

.identity-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.logo-showcase { margin: 3rem 0; }

.logo-description {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.logo-diamond { flex-shrink: 0; }

.identity-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.35));
}

.diamond-shape {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  transform: rotate(45deg);
  border: 2px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.1), inset 0 0 30px rgba(212, 168, 67, 0.05);
}

.diamond-inner {
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--gold-dim), var(--red), var(--gold-dim));
  opacity: 0.3;
}

.identity-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.identity-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 500px;
}

.color-strip {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.color-block {
  flex: 1;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.color-black { background: #0a0a0a; color: var(--fg-muted); border: 1px solid #222; }
.color-gold { background: var(--gold); color: #0a0a0a; }
.color-red { background: var(--red); color: var(--fg); }

/* AUDIENCE */
.audience {
  padding: 8rem 2rem;
}

.audience-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.audience-split {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 3rem;
}

.audience-card {
  flex: 1;
  padding: 3rem;
  text-align: left;
  position: relative;
  background: var(--bg-card);
}

.card-block { border-left: 3px solid var(--gold); }
.card-clock { border-right: 3px solid var(--red); }

.card-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(212, 168, 67, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.card-clock .card-number { color: rgba(196, 58, 58, 0.1); }

.card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.card-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.audience-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  gap: 1rem;
}

.divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.divider-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0d08 50%, var(--bg) 100%);
}

.closing-drip {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold));
  margin: 0 auto 3rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 550px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  display: inline-block;
  padding: 0.8rem 2rem;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}

.footer-inner { max-width: 1000px; margin: 0 auto; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.footer-location {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.footer-divider {
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
  margin: 1rem auto;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-label { display: none; }
  
  .logo-description {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .identity-text { margin: 0 auto; }
  
  .diamond-shape {
    width: 120px;
    height: 120px;
  }
  
  .audience-split {
    flex-direction: column;
  }
  
  .audience-divider {
    flex-direction: row;
    padding: 1.5rem 0;
  }
  
  .divider-text {
    writing-mode: horizontal-tb;
  }
  
  .divider-line {
    height: 1px;
    width: auto;
  }
  
  .color-strip {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }
}