* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Inter, sans-serif;
}

.page-shell {
  min-height: 100vh;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 1180px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 34px;
  padding: 34px;
  background: radial-gradient(circle at top left, rgba(212,175,55,0.14), transparent 35%), #080808;
}

.luxury-line {
  height: 3px;
  width: 90px;
  background: #d4af37;
  border-radius: 99px;
  margin-bottom: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d4af37;
  color: #050505;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 24px;
}

.brand-name {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
}

.brand-subtitle {
  margin: 3px 0 0;
  color: #b8b8b8;
  font-size: 14px;
}

.status-pill {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f5d56b;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.eyebrow {
  color: #f5d56b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 16px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  margin: 0;
  max-width: 900px;
}

.lead {
  color: #d7d7d7;
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
  margin: 24px 0 0;
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollSlides 28s linear infinite;
}

.slide-card {
  width: 220px;
  flex: 0 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.slide-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.slide-card span {
  display: block;
  padding: 14px;
  color: #f5d56b;
  font-weight: 800;
}

@keyframes scrollSlides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-shell {
    padding: 14px;
    align-items: flex-start;
  }

  .hero-card {
    min-height: calc(100vh - 28px);
    border-radius: 24px;
    padding: 22px;
  }

  .nav {
    margin-bottom: 42px;
    align-items: flex-start;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 13px;
  }

  .status-pill {
    font-size: 13px;
    padding: 8px 12px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .slide-card {
    width: 155px;
    border-radius: 18px;
  }

  .slide-card img {
    height: 120px;
  }

  .slide-card span {
    font-size: 13px;
    padding: 11px;
  }
}

@media (max-width: 420px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 15px;
  }

  .slide-card {
    width: 140px;
  }
}