:root {
  --bg: #090909;
  --bg-soft: #131313;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f2ede5;
  --muted: #b7ab9b;
  --peach: #f5861f;
  --gold: #d4a13d;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(245, 134, 31, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 161, 61, 0.12), transparent 22%),
    linear-gradient(180deg, #0f0b08 0%, #090909 42%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.45));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-lockup__wordmark,
.section-heading h2,
.hero h1,
.world-card h3,
.collection-card h3,
.contact-card h2 {
  font-family: var(--serif);
}

.brand-lockup__wordmark {
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.brand-lockup__tag,
.topbar__nav a,
.eyebrow,
.hero__facts,
.status-strip__label,
.footer {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-lockup__tag {
  color: var(--muted);
  font-size: 0.68rem;
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.topbar__nav a {
  color: var(--muted);
  font-size: 0.74rem;
  transition: color 160ms ease;
}

.topbar__nav a:hover {
  color: var(--peach);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  padding: 76px 0 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.hero h1 span {
  display: block;
  color: var(--peach);
}

.lede,
.section-heading p,
.showcase__copy p,
.world-card p,
.collection-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.lede {
  max-width: 56ch;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.hero__actions,
.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--solid {
  background: linear-gradient(135deg, var(--peach), var(--gold));
  color: #120e08;
  box-shadow: 0 18px 40px rgba(245, 134, 31, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost:hover {
  border-color: rgba(245, 134, 31, 0.42);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.hero__facts li,
.pill-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.73rem;
  color: #e3d4c1;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-card--main {
  border-radius: 30px;
  transform: rotate(-2.8deg);
}

.hero-card--floating {
  position: absolute;
  right: -18px;
  bottom: -16px;
  width: min(46%, 270px);
  border-radius: 24px;
  transform: rotate(4deg);
  backdrop-filter: blur(18px);
}

.marquee {
  overflow: hidden;
  margin: 22px 0 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee__track {
  display: flex;
  gap: 34px;
  min-width: max-content;
  color: #e6d6c2;
  font-family: var(--serif);
  font-size: 1.4rem;
  animation: slide 24s linear infinite;
}

.section {
  padding: 82px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
}

.collection-grid,
.worlds-grid {
  display: grid;
  gap: 24px;
}

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

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

.collection-card,
.world-card,
.contact-card,
.status-strip,
.showcase__media,
.showcase__copy {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.collection-card,
.world-card {
  overflow: hidden;
  border-radius: 26px;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.collection-card__body,
.world-card,
.contact-card,
.showcase__copy {
  padding: 24px;
}

.collection-card h3,
.world-card h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.section--split .section-heading {
  margin-bottom: 18px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.showcase__media {
  border-radius: 30px;
  overflow: hidden;
}

.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  margin-top: 82px;
}

.status-strip__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
}

.status-strip strong {
  font-size: 1rem;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  border-radius: 30px;
  margin-bottom: 82px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 36px;
  color: #9f9385;
  font-size: 0.68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 800ms ease forwards;
}

.reveal--delay-1 {
  animation-delay: 80ms;
}

.reveal--delay-2 {
  animation-delay: 180ms;
}

.reveal--delay-3 {
  animation-delay: 280ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .showcase,
  .collection-grid,
  .worlds-grid,
  .status-strip,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: start;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-card--floating {
    position: relative;
    width: min(62%, 320px);
    margin: -60px 0 0 auto;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1240px);
  }

  .topbar {
    flex-direction: column;
    align-items: start;
    padding: 14px 0;
  }

  .hero {
    padding-top: 44px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 18vw, 5rem);
  }

  .section {
    padding-top: 64px;
  }

  .hero-card--main {
    transform: none;
  }

  .hero-card--floating {
    margin-top: 18px;
    width: 68%;
    transform: none;
  }

  .marquee__track {
    font-size: 1.05rem;
    gap: 20px;
  }

  .footer {
    flex-direction: column;
  }
}
