/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg-deep);
  overflow: hidden;
}
.hero-bg:not(.hero-bg-slides) img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
  transform-origin: center;
  animation: heroZoom 12s ease-out forwards;
}
.hero-bg-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.50) saturate(0.8);
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* Gradient overlay — from sides, lighter center */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(17,17,17,0.10) 0%, rgba(17,17,17,0.70) 100%),
    linear-gradient(to bottom, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.20) 40%, rgba(17,17,17,0.75) 100%);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Spinning Demo logo mark */
.hero-logo-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  position: relative;
  animation: logoSpin 24s linear infinite;
  opacity: 0;
  animation: logoSpin 24s linear infinite, logoRingIn 1.2s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
  will-change: transform, opacity;
}
@keyframes logoRingIn {
  to { opacity: 1; }
}
@keyframes logoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-ring::before {
  content: '';
  position: absolute; inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.15);
}
.hero-logo-ring::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold);
}
.hero-logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--white);
  /* counter-rotate so text stays up */
  animation: logoTextSpin 24s linear infinite;
  line-height: 1;
  padding-left: 0.55em; /* account for letter-spacing on last char */
}
@keyframes logoTextSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Hero typography */
.hero-pre {
  font-size: 9.5px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 10vw, 148px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; display: block; color: var(--gold-light); }
.hero-sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 1.3s ease forwards;
  margin-bottom: 52px;
  color: rgba(245,245,240,0.70);
}
.hero-actions {
  opacity: 0;
  animation: fadeUp 1s 1.5s ease forwards;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  border-color: rgba(245,245,240,0.40);
}
.hero-actions .btn-outline:hover {
  background: rgba(245,245,240,0.10);
  border-color: rgba(245,245,240,0.70);
}

/* Carousel dots */
.hero-carousel-dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 32px;
  position: relative; z-index: 4;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,240,0.35);
  background: transparent; padding: 0; cursor: pointer;
  transition: all 0.28s ease;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(245,245,240,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ─── SECTIONS ─────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 40px; }

/* ─── CATEGORY GRID ────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
}
.cat-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.cat-item:first-child { grid-row: span 2; aspect-ratio: auto; }
.cat-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}
.cat-item:hover img { transform: scale(1.06); filter: brightness(0.75) saturate(1); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.80) 0%, rgba(17,17,17,0.10) 55%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 32px;
}
.cat-label {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 300;
  color: var(--white); letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.cat-link {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,62,0.45);
  padding-bottom: 2px;
  transition: var(--transition-fast);
}
.cat-link:hover { color: var(--white); border-color: var(--white); }

/* ─── PRODUCTS GRID ────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 14px;
}

/* ─── SPLIT SECTION ────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 96px;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { overflow: hidden; border-radius: var(--radius); }
.split-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.split-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; align-content: start;
}
.split-img-grid .split-img-cell img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .split-img-grid { grid-template-columns: 1fr; }
}
.split-text { padding: 40px 0; }
.split-text .section-title { margin-bottom: 24px; }
.split-text p {
  font-size: 15px; line-height: 1.85;
  color: var(--gray-600); font-weight: 300; margin-bottom: 36px;
}

/* ─── NEWSLETTER ───────────────────────────────────────── */
.newsletter-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
  padding: 112px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--gold-muted) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section .section-title { color: var(--white); margin-bottom: 16px; }
.newsletter-section p { color: var(--gray-500); font-size: 14px; font-weight: 300; margin-bottom: 44px; }
.newsletter-form {
  display: flex; max-width: 500px; margin: 0 auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.newsletter-input {
  flex: 1; padding: 17px 22px;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.09em;
  background: var(--bg-surface);
  border: none; color: var(--white); outline: none;
}
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-input:focus { background: var(--bg-raised); }
.newsletter-form .btn {
  border-radius: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 17px 32px;
  white-space: nowrap;
  font-size: 9.5px;
  letter-spacing: 0.22em;
}
.newsletter-form .btn:hover { background: var(--gold-light); transform: none; }

/* ─── STATS ROW ────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-deep);
}
.stat-item {
  padding: 64px 44px;
  border-right: 1px solid var(--glass-border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 60px; font-weight: 300;
  line-height: 1; margin-bottom: 10px;
  color: var(--gold-light);
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-slide img,
  .hero-bg:not(.hero-bg-slides) img { animation: none; transform: none; }
  .hero-pre, .hero-title, .hero-sub, .hero-actions,
  .hero-logo-ring { animation: none; opacity: 1; transform: none; }
  .hero-logo-text { animation: none; }
  .hero-scroll { animation: none; opacity: 0.45; }
  .hero-logo-ring { width: 110px; height: 110px; margin-bottom: 32px; }
  .hero-logo-text { font-size: 20px; }
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .cat-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 2/1; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 14px 10px; }
  .split-section { grid-template-columns: 1fr; gap: 44px; }
  .split-section.reverse { direction: ltr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); padding: 44px 24px; }
  .stat-number { font-size: 48px; }
  .section { padding: 56px 0; }
  .newsletter-section { padding: 72px 24px; }
}
@media (max-width: 480px) {
  .hero-logo-ring { width: 88px; height: 88px; }
  .hero-logo-text { font-size: 16px; letter-spacing: 0.4em; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 8px; }
}
