:root {
  --black: #010101;
  --white: #f7f6f3;
  --muted: #8a8a86;
  --line: rgba(1, 1, 1, 0.14);
  --line-light: rgba(247, 246, 243, 0.18);
  --font: "Roboto", sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: 0.5rem 0.8rem;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--black);
  color: var(--white);
}

.btn--invert:hover,
.btn--invert:focus-visible {
  background: var(--white);
  color: var(--black);
}

.ornament {
  display: block;
  pointer-events: none;
  user-select: none;
}

.ornament--light {
  filter: invert(1);
}

.divider {
  width: min(220px, 55vw);
  margin: 1.25rem auto;
}

.geo-bg {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(247, 246, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 243, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ——— Coming soon ——— */

.soon {
  min-height: 100svh;
  color: var(--white);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.25rem;
  color-scheme: dark;
}

.soon-frame {
  position: absolute;
  inset: 1.1rem;
  border: 1px solid var(--line-light);
  pointer-events: none;
}

.soon-ornament {
  position: absolute;
  width: min(160px, 28vw);
  opacity: 0.72;
}

.soon-ornament--tl {
  top: 1.6rem;
  left: 1.6rem;
}

.soon-ornament--br {
  bottom: 1.6rem;
  right: 1.6rem;
  transform: rotate(180deg);
}

.soon-inner {
  width: min(640px, 100%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.soon-logo {
  width: min(420px, 86vw);
  margin: 0 auto 0.4rem;
}

.soon-status {
  margin: 1.5rem 0 0.4rem;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.soon p.lead {
  margin: 0.35rem auto 1.8rem;
  max-width: 28rem;
  color: rgba(247, 246, 243, 0.72);
  font-weight: 300;
  font-size: 1.02rem;
}

.notify {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid var(--line-light);
}

.notify input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  outline: none;
}

.notify input::placeholder {
  color: rgba(247, 246, 243, 0.55);
}

.notify .btn {
  border: 0;
  border-left: 1px solid var(--line-light);
  min-height: 52px;
  white-space: nowrap;
}

.notify .btn:hover,
.notify .btn:focus-visible {
  background: var(--white);
  color: var(--black);
}

.notify-msg {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: rgba(247, 246, 243, 0.7);
}

.soon-foot {
  margin-top: 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.45);
}

/* ——— Demo site ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--space);
  background: rgba(1, 1, 1, 0.92);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.brand img {
  width: 148px;
}

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

.nav a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.hero {
  min-height: calc(100svh - 64px);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem 3rem;
  position: relative;
}

.hero-logo {
  width: min(520px, 88vw);
  margin: 0 auto 0.2rem;
}

.hero .lead {
  max-width: 28rem;
  margin: 0 auto;
  color: rgba(247, 246, 243, 0.72);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.5;
}

.section {
  padding: 5.5rem var(--space);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.split h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 38rem;
}

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

.pillar {
  border: 1px solid var(--line-light);
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
}

.pillar img {
  width: 92px;
  margin: 0 auto 1.1rem;
  opacity: 0.9;
}

.pillar h3 {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pillar p {
  margin: 0;
  color: rgba(247, 246, 243, 0.68);
  font-weight: 300;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.card {
  min-height: 210px;
  border: 1px solid var(--line);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, transparent 46%, rgba(1, 1, 1, 0.04) 46% 54%, transparent 54%);
}

.card span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.card strong {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.card img {
  width: 72px;
  opacity: 0.55;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.info-grid h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-grid p {
  margin-top: 1rem;
  max-width: 36rem;
  font-weight: 300;
}

.facts {
  display: grid;
  gap: 1.1rem;
}

.fact {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.fact b {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.fact span {
  font-weight: 300;
  font-size: 1.15rem;
}

.tickets {
  text-align: center;
}

.tickets h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tickets p {
  margin: 0 auto 1.6rem;
  max-width: 32rem;
  font-weight: 300;
  color: rgba(247, 246, 243, 0.72);
}

.site-footer {
  padding: 2rem var(--space) 2.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.site-footer img {
  width: 110px;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line-light);
    padding: 0.4rem 0 0.8rem;
  }

  .is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.85rem var(--space);
  }

  .split,
  .pillars,
  .lineup,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .soon-ornament {
    width: 88px;
    opacity: 0.4;
  }

  .notify {
    flex-direction: column;
  }

  .notify .btn {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
