:root {
  color-scheme: dark;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  background: #0f0f12;
  color: #f7f2e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgb(120 78 36 / 26%), transparent 36%),
    linear-gradient(180deg, #161218 0%, #100f13 42%, #0a0a0d 100%);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  position: relative;
  min-height: 72vh;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgb(17 13 12 / 18%) 0%, rgb(17 13 12 / 78%) 100%),
    url("./gallery_gen/d006a0753d59296d770df4a1cb1264f9.jpg") center/cover;
  box-shadow: 0 30px 80px rgb(0 0 0 / 40%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 55%) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: #ffdcb2;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgb(247 242 232 / 88%);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgb(0 0 0 / 28%);
}

.button--primary {
  background: #f5a742;
  color: #21160b;
}

.button--secondary {
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 10%);
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 1rem;
}

.card {
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 8%);
  padding: 1.25rem;
  box-shadow: 0 18px 42px rgb(0 0 0 / 20%);
}

.card p:last-child {
  margin-bottom: 0;
}

.feature {
  grid-column: span 4;
}

.feature img,
.shop-item img,
.shop-item video {
  width: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
}

.feature img {
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
}

.section {
  margin-top: 1.25rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.5rem 0 1rem;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section-head p {
  margin: 0;
  color: rgb(247 242 232 / 70%);
}

.shop-item {
  grid-column: span 6;
  padding: 0;
  overflow: hidden;
}

.shop-item .content {
  padding: 1.2rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 7%);
  min-width: 10rem;
}

.footer {
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  color: rgb(247 242 232 / 68%);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

@media (max-width: 860px) {
  .feature,
  .shop-item {
    grid-column: span 12;
  }

  .hero-content {
    padding: 2rem 1.25rem;
  }
}
