:root {
  color-scheme: dark;
  --bg: #101216;
  --panel: #181b21;
  --panel-2: #20242c;
  --text: #f7f2e8;
  --muted: #b8b3a8;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #f6b84b;
  --pink: #e35d87;
  --mint: #68d2b4;
  --blue: #6aa9ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(16, 18, 22, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: 72px clamp(18px, 5vw, 72px) 56px;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 184, 75, 0.18), transparent 28%),
    radial-gradient(circle at 82% 60%, rgba(227, 93, 135, 0.22), transparent 34%),
    linear-gradient(135deg, #151820, #101216 58%, #211923);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-art {
  position: relative;
  z-index: 1;
}

.hero-carousel {
  width: 100%;
  max-width: 980px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #07080b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.hero-track {
  display: flex;
  width: 500%;
  height: 100%;
  animation: heroScroll 30s infinite ease-in-out;
}

.hero-track img {
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  animation: dotPulse 30s infinite;
}

.hero-dots span:nth-child(2) {
  animation-delay: 6s;
}

.hero-dots span:nth-child(3) {
  animation-delay: 12s;
}

.hero-dots span:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroScroll {
  0%,
  16% {
    transform: translateX(0);
  }

  20%,
  36% {
    transform: translateX(-20%);
  }

  40%,
  56% {
    transform: translateX(-40%);
  }

  60%,
  76% {
    transform: translateX(-60%);
  }

  80%,
  96% {
    transform: translateX(-80%);
  }

  96.01%,
  100% {
    transform: translateX(0);
  }
}

@keyframes dotPulse {
  0%,
  16%,
  80%,
  96% {
    background: var(--gold);
  }

  20%,
  76%,
  96.01%,
  100% {
    background: rgba(255, 255, 255, 0.25);
  }
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

h1 {
  margin: 14px 0 16px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--text);
  color: #101216;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.card {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.art-card {
  overflow: hidden;
  padding: 0;
}

.art-card img {
  width: 100%;
  height: clamp(180px, 18vw, 260px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.art-card h3,
.art-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.art-card h3 {
  padding-top: 20px;
}

.art-card p {
  padding-bottom: 8px;
}

.card p,
.legal-page li {
  color: var(--muted);
}

.highlight {
  color: var(--mint);
}

.showcase {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(22px, 5vw, 58px);
  padding: 64px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #171a20;
}

.showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 20px 72px;
}

.legal-page h1 {
  font-size: clamp(36px, 6vw, 62px);
}

.legal-page section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 760px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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