:root {
  --bg: #10100e;
  --surface: #191916;
  --surface-2: #22221f;
  --text: #f4f1e9;
  --muted: #b8b1a4;
  --line: rgba(244, 241, 233, 0.14);
  --accent: #d7b46a;
  --accent-2: #7ea48d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(126, 164, 141, 0.12), transparent 32rem),
    linear-gradient(180deg, #11110f 0%, #0b0b0a 100%);
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #17140d;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  min-height: calc(100vh - 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.9fr);
  align-items: center;
  gap: 2rem;
  padding: 1rem 0 3rem;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.9;
}

.lead {
  margin: 1.4rem 0 1.6rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-art {
  position: relative;
  min-height: 36rem;
  display: grid;
  place-items: center;
}

.hero-art img,
.product img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--surface-2);
  object-fit: cover;
}

.art-main {
  max-width: 20rem;
  aspect-ratio: 9 / 16;
  z-index: 2;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.art-side {
  position: absolute;
  max-width: 14rem;
  aspect-ratio: 9 / 16;
  opacity: 0.78;
}

.art-side.top {
  top: 1.25rem;
  right: 0;
}

.art-side.bottom {
  bottom: 1.25rem;
  left: 0;
}

.section {
  padding: 2.5rem 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-heading a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

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

.product {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.75rem;
}

.product img {
  aspect-ratio: 4 / 5;
}

.product h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1.2rem;
}

.product p {
  margin: 0 0 0.25rem;
  color: var(--muted);
  line-height: 1.5;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-art {
    min-height: 30rem;
  }

  .art-main {
    max-width: 16rem;
  }

  .art-side {
    max-width: 11rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
