:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --white: #f4f1ed;
  --muted: #999795;
  --line: rgba(255, 255, 255, .12);
  --red: #e21e2a;
  --red-dark: #7d0a11;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-width: 1440px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--black); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, var(--content-width));
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--page-gutter);
  transform: translateX(-50%);
}

.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 2.35rem; height: auto; object-fit: contain; }
.brand span { font: 500 .78rem/1 Inter, "Segoe UI", sans-serif; letter-spacing: .18em; }
.header nav { display: flex; gap: clamp(1.5rem, 4vw, 3rem); }
.header nav a { color: #c3c0bd; font-size: .78rem; text-decoration: none; transition: color .2s; }
.header nav a:hover, .header nav a:focus-visible { color: #fff; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__atmosphere, .hero__grid, .hero__beam { position: absolute; inset: 0; }
.hero__atmosphere { z-index: -1; overflow: hidden; background: radial-gradient(circle at 66% 50%, #150506 0, #080505 25%, #050505 58%); }
.hero__grid {
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 38%, transparent 95%);
  transform: perspective(700px) rotateX(63deg) scale(1.45) translateY(21%);
  transform-origin: center bottom;
}

.hero__orb {
  position: absolute;
  top: 50%;
  left: 68%;
  width: clamp(270px, 42vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 63, 73, .18);
  border-radius: 50%;
  background: radial-gradient(circle at 44% 42%, rgba(255, 70, 80, .22), rgba(145, 5, 14, .12) 18%, rgba(32, 1, 3, .7) 52%, #050505 70%);
  box-shadow: inset -80px -50px 140px #000, 0 0 130px rgba(191, 9, 20, .13);
  transform: translate(-50%, -50%);
  transition: transform 1s var(--ease-out);
}

.hero__orb::before, .hero__orb::after { content: ""; position: absolute; border-radius: 50%; }
.hero__orb::before { inset: 9%; border: 1px solid rgba(255, 255, 255, .06); box-shadow: 0 0 35px rgba(226, 30, 42, .13); }
.hero__orb::after { inset: 33%; background: radial-gradient(circle, rgba(226, 30, 42, .2), transparent 65%); filter: blur(8px); }
.hero__beam { background: linear-gradient(108deg, transparent 49%, rgba(226, 30, 42, .05) 50%, transparent 58%); }

.hero__content { width: min(100%, var(--content-width)); padding: 8rem var(--page-gutter) 6rem; }
.eyebrow { margin: 0 0 1.7rem; color: #b5b1ae; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 1.7rem; height: 1px; margin: 0 .8rem .2rem 0; background: var(--red); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -.055em; }
h1 { max-width: 950px; margin-bottom: 2rem; font-size: clamp(3.3rem, 7.8vw, 8.1rem); line-height: .93; }
h1 em { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero__intro { max-width: 520px; margin: 0 0 2rem; color: #aaa6a3; font-size: clamp(.95rem, 1.4vw, 1.1rem); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding: .95rem 1.05rem .95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s, border-color .25s, transform .25s;
}
.button svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.4; }
.button:hover { border-color: var(--red); background: var(--red); transform: translateY(-2px); }

.hero__signature { position: absolute; right: var(--page-gutter); bottom: 2.2rem; display: flex; align-items: center; gap: .8rem; color: #777472; font-size: .56rem; letter-spacing: .2em; }
.hero__signature i { width: 3rem; height: 1px; background: #555; }

.section { max-width: var(--content-width); margin-inline: auto; padding: clamp(5rem, 10vw, 9rem) var(--page-gutter); }
.section__label { display: flex; align-items: center; gap: 1rem; color: #8b8886; font-size: .63rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.section__label span { color: var(--red); }

.manifesto { display: grid; grid-template-columns: minmax(150px, .55fr) 1.6fr; gap: 3rem; }
.manifesto__copy h2 { max-width: 890px; margin: 0 0 2rem; font-size: clamp(2.4rem, 5vw, 5.6rem); line-height: 1.02; }
.manifesto__copy p { max-width: 620px; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.25rem); }
.manifesto blockquote { grid-column: 2; margin: clamp(3rem, 8vw, 7rem) 0 0; padding-left: clamp(1.5rem, 4vw, 4rem); border-left: 1px solid var(--red); font: italic 400 clamp(1.7rem, 3.6vw, 3.7rem)/1.18 Georgia, serif; color: #d8d3ce; }

.destinations { border-top: 1px solid var(--line); }
.destinations__heading { display: grid; grid-template-columns: 1.5fr .7fr; gap: 2rem; align-items: end; margin: 3rem 0 clamp(3rem, 6vw, 5.5rem); }
.destinations__heading h2 { max-width: 850px; margin: 0; font-size: clamp(2.5rem, 5.6vw, 6.2rem); line-height: .98; }
.destinations__heading p { max-width: 390px; margin: 0 0 .6rem; color: var(--muted); }
.destination-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 1rem; }

.destination-card {
  position: relative;
  min-height: 560px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  border: 1px solid var(--line);
  background: var(--black-soft);
  color: var(--white);
  overflow: hidden;
  text-decoration: none;
}
.destination-card--store { isolation: isolate; transition: border-color .35s, transform .45s var(--ease-out); }
.destination-card--store::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .8; background: radial-gradient(circle at var(--card-x, 65%) var(--card-y, 42%), rgba(188, 14, 25, .25), transparent 37%); transition: opacity .3s; }
.destination-card--store:hover { border-color: rgba(226, 30, 42, .7); transform: translateY(-5px); }
.destination-card__top { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #7c7977; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.destination-card__status { display: inline-flex; align-items: center; gap: .5rem; color: #bbb7b4; }
.destination-card__status i { width: .4rem; height: .4rem; border-radius: 50%; background: #37b76c; box-shadow: 0 0 10px #37b76c; }
.destination-card__status--soon { color: #6d6a68; }
.destination-card__art { position: absolute; top: 45%; left: 60%; width: min(48%, 330px); color: var(--red); filter: drop-shadow(0 35px 65px rgba(226, 30, 42, .25)); transform: translate(-50%, -50%); transition: transform .7s var(--ease-out), filter .4s; }
.destination-card:hover .destination-card__art { filter: drop-shadow(0 42px 75px rgba(226, 30, 42, .4)); transform: translate(-50%, -53%) scale(1.035); }
.destination-card__art img { display: block; width: 100%; height: auto; }
.destination-card__content { position: absolute; right: clamp(1.25rem, 2.2vw, 2rem); bottom: clamp(1.25rem, 2.2vw, 2rem); left: clamp(1.25rem, 2.2vw, 2rem); }
.destination-card__content > p { margin-bottom: .75rem; color: var(--red); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.destination-card__content > div { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.destination-card__content h3 { margin: 0; font: 400 clamp(1.8rem, 3.2vw, 3.4rem)/1 Inter, "Segoe UI", sans-serif; letter-spacing: -.04em; }
.destination-card__content > span { display: block; max-width: 360px; margin-top: .85rem; color: #888582; font-size: .85rem; }
.card-arrow { display: grid; width: 2.6rem; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.1rem; transition: color .25s, border-color .25s, transform .35s; }
.destination-card:hover .card-arrow { color: var(--red); border-color: var(--red); transform: rotate(45deg); }

.destination-card--soon { background: repeating-linear-gradient(-45deg, #090909, #090909 1px, #070707 1px, #070707 14px); }
.destination-card__coming { position: absolute; top: 43%; left: 50%; display: grid; width: 8rem; aspect-ratio: 1; place-items: center; border: 1px solid #201f1f; border-radius: 50%; color: #1f1e1e; font: 400 4.3rem/1 Georgia, serif; transform: translate(-50%, -50%); }
.destination-card--soon .destination-card__content > p { color: #696664; }
.destination-card--soon .destination-card__content h3 { font-size: clamp(1.6rem, 2.3vw, 2.4rem); color: #7a7774; }

.footer { display: flex; max-width: var(--content-width); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--page-gutter); border-top: 1px solid var(--line); justify-content: space-between; align-items: end; color: #74716f; font-size: .75rem; }
.brand--footer { margin-bottom: 1rem; color: var(--white); }
.footer p { margin-bottom: 0; }
.footer__meta { display: flex; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.footer__meta a { color: #aaa6a3; text-decoration: none; }
.footer__meta a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
  .header nav { display: none; }
  .hero { min-height: 780px; }
  .hero__content { align-self: end; padding-bottom: 8rem; }
  .hero__atmosphere { background: radial-gradient(circle at 65% 36%, #190507 0, #080505 27%, #050505 62%); }
  .hero__orb { top: 38%; left: 70%; width: min(90vw, 470px); }
  .manifesto, .destinations__heading { grid-template-columns: 1fr; }
  .manifesto__copy { margin-top: 2rem; }
  .manifesto blockquote { grid-column: 1; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 510px; }
  .destination-card--soon { min-height: 410px; }
  .footer { align-items: start; gap: 2.5rem; flex-direction: column; }
  .footer__meta { align-items: start; flex-direction: column; gap: .6rem; }
}

@media (max-width: 520px) {
  .brand span { font-size: .68rem; }
  h1 { font-size: clamp(3.05rem, 14.3vw, 4.5rem); }
  .hero__intro { max-width: 93%; }
  .hero__signature { display: none; }
  .destination-card__art { left: 55%; width: 62%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
