:root {
  --gold: #d4af37;
  --gold-light: #f9e79f;
  --gold-dark: #b8860b;
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --border: rgba(212, 175, 55, 0.18);
  --text-muted: #a8a8a8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: #f2f2f2;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 1px;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center {
  padding-left: 0;
  text-align: center;
  display: block;
}

.eyebrow.center::before {
  display: none;
}

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  z-index: 999;
  transition: width 0.1s ease-out;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1.visible { transition-delay: 0.12s; }
.delay-2.visible { transition-delay: 0.24s; }
.delay-3.visible { transition-delay: 0.36s; }

/* Header */
.site-header {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo span {
  background: linear-gradient(120deg, #d4af37, #f9e79f, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  font-size: 13px;
  letter-spacing: 1px;
  color: #ddd;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.header-cta {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  background-size: 160% auto;
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 4px;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
}

.btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.32);
}

.btn-small {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: none;
  border-color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 85%, rgba(212,175,55,0.08), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0c08 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0) 70%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.ice-particle {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.04);
  border-radius: 6px;
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

.p1 { width: 26px; height: 26px; top: 18%; left: 6%; animation-delay: 0s; }
.p2 { width: 16px; height: 16px; top: 65%; left: 12%; animation-delay: 1.5s; }
.p3 { width: 20px; height: 20px; top: 30%; right: 8%; animation-delay: 3s; }
.p4 { width: 14px; height: 14px; top: 75%; right: 20%; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(12deg); }
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 420px;
}

.hero-text h1 {
  font-size: 68px;
  line-height: 1.02;
  color: #fff;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-text h1 .highlight {
  display: inline-block;
  background: linear-gradient(120deg, #b8860b, #f9e79f 45%, #d4af37 55%, #f9e79f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
  font-size: 1.05em;
}

.hero-text p {
  color: #ccc;
  max-width: 460px;
  margin-bottom: 32px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.trust-row i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-style: normal;
  font-size: 11px;
}

.hero-image {
  flex: 1 1 380px;
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
  transition: transform 0.6s ease;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  transform: rotate(8deg);
  animation: badge-float 5s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-10px); }
}

.hero-image:hover img {
  transform: scale(1.02) translateY(-4px);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  margin: 0 auto 10px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.scroll-cue p {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 34px;
  color: #fff;
}

/* Products */
.products {
  padding: 90px 24px;
}

.products-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  flex: 1 1 340px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-media {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.product-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-light);
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .zoom-icon {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  max-width: 88vw;
  max-height: 84vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.lightbox.active .lightbox-figure {
  transform: scale(1);
}

.lightbox-img {
  max-width: 88vw;
  max-height: 74vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  object-fit: contain;
}

.lightbox-caption {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lightbox-close {
  top: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 26px; }
.lightbox-next { right: 26px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

@media (max-width: 700px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

.product-info {
  padding: 28px;
  position: relative;
}

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #111;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.product-info h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 14px;
}

/* About */
.about {
  position: relative;
  background: var(--bg-alt);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.about-glow {
  position: absolute;
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
  pointer-events: none;
}

.about-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.about-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 22px;
}

.about-lead {
  color: var(--text-muted);
  font-size: 16px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 90px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
}

.stat-number,
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat p {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.feature {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.04);
}

.feature-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.2) rotate(8deg);
}

.feature h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.feature p {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08), transparent 60%),
    var(--bg);
}

.cta h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.cta p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 34px;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo span {
  background: linear-gradient(120deg, #d4af37, #f9e79f, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-contact h5,
.footer-social h5 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-contact p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 13px;
  color: #ccc;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 20px;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }

  nav#mainNav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 80vw);
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--border);
    padding: 100px 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 99;
  }

  nav#mainNav.open {
    transform: translateX(0);
  }

  nav#mainNav ul {
    flex-direction: column;
    gap: 26px;
  }

  .header-cta {
    display: none;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-badge {
    width: 74px;
    height: 74px;
    font-size: 10px;
    top: -12px;
    right: -12px;
  }
}

@media (max-width: 500px) {
  .stats {
    gap: 34px;
  }
  .stat-number, .stat-suffix {
    font-size: 34px;
  }
}
