:root {
  --white: #fff;
  --cream: #f5e8d1;
  --ink: #101014;
  --amber: #d4974f;
  --warm: #e7ab55;
  --violet: #9d73ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #101014;
  font-family: "Inter", system-ui, sans-serif;
}

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

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background-color: #17151a;
  background-image:
    linear-gradient(90deg, rgba(21, 12, 5, .26), rgba(13, 10, 17, .05) 43%, rgba(22, 7, 46, .19)),
    url("bg_horizontal.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, .76), transparent 25%, transparent 69%, rgba(5, 5, 8, .8)),
    radial-gradient(circle at center, transparent 8%, rgba(5, 5, 8, .18) 70%, rgba(5, 5, 8, .48));
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 82px;
  padding: 0 clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(10,7,4,.72), rgba(10,7,4,.2) 70%, rgba(10,7,4,.88));
  backdrop-filter: blur(5px);
}

.logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font: 700 13px/1 "Montserrat", sans-serif;
  letter-spacing: .08em;
}

.main-nav { display: flex; gap: clamp(20px, 2.5vw, 42px); }
.main-nav a {
  position: relative;
  padding: 32px 0 30px;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav .is-active { color: #fff; }
.main-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--amber);
}

.header-button {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50% !important;
  overflow: hidden;
  transition: .25s;
}
.header-button:hover { color: var(--ink); background: #fff; }
.header-button svg { display: block; width: 16px; height: 16px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 82px clamp(28px, 6vw, 104px) 76px;
}

.brand {
  position: absolute;
  z-index: 3;
  top: 47%; left: 50%;
  width: min(480px, 38vw);
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow:
    0 2px 3px rgba(0, 0, 0, .9),
    0 7px 22px rgba(0, 0, 0, .82),
    0 14px 42px rgba(0, 0, 0, .6);
}
.brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -48px -70px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, .56) 0%,
    rgba(0, 0, 0, .31) 43%,
    transparent 74%
  );
  filter: blur(12px);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
}
.brand h1 {
  margin: 0;
  font: 500 clamp(54px, 7.5vw, 114px)/.72 "Montserrat", sans-serif;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.brand h1 strong {
  display: inline-block;
  margin-top: .22em;
  font-weight: 800;
  letter-spacing: .01em;
}
.brand p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font: 500 11px/1.4 "Montserrat", sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.experience { display: flex; align-items: flex-end; padding-bottom: clamp(45px, 7vh, 86px); }
.experience--party { justify-content: flex-end; text-align: right; }
.experience__content { position: relative; z-index: 2; max-width: 370px; }
.experience__number {
  display: block;
  margin-bottom: 15px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .22em;
}
.experience__label {
  margin: 0 0 5px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.experience h2 {
  margin: 0;
  font: 700 clamp(38px, 4vw, 64px)/1 "Montserrat", sans-serif;
  letter-spacing: -.04em;
}
.experience--acoustic h2 { color: var(--cream); }
.experience--party h2 { color: #e4dcff; }
.experience__genres {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.experience--party .experience__genres { justify-content: flex-end; }
.experience__genres i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.experience__button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  transition: .25s ease;
}
.experience__button:hover { color: var(--ink); background: #fff; border-color: #fff; transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 27px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.48);
  font-size: 8px;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.scroll-hint span { width: 1px; height: 25px; background: rgba(255,255,255,.45); }

.social-bar {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 5vw, 84px);
  bottom: 24px;
  display: none;
  gap: 18px;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (orientation: portrait) {
  .page-shell {
    background-image:
      linear-gradient(180deg, rgba(12, 8, 5, .16), rgba(12, 7, 25, .16)),
      url("bg_vertical.png");
    background-position: center;
  }
  .page-shell::before {
    background:
      linear-gradient(180deg, rgba(5,5,8,.76), transparent 20%, transparent 71%, rgba(5,5,8,.84)),
      radial-gradient(circle at 50% 43%, transparent 0, rgba(5,5,8,.12) 48%, rgba(5,5,8,.55));
  }
  .site-header { height: 70px; padding: 0 18px; grid-template-columns: 1fr auto 1fr; }
  .main-nav { gap: 16px; justify-content: center; }
  .main-nav a,
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .main-nav a:first-child {
    display: inline-block !important;
    padding: 27px 0 25px;
    font-size: 8px;
  }
  .header-button { width: 42px; height: 42px; }
  .hero { min-height: 100svh; grid-template-columns: 1fr 1fr; padding: 70px 18px 54px; }
  .brand { top: calc(38% + 50px); width: 80vw; }
  .brand h1 { font-size: clamp(48px, 15vw, 82px); }
  .brand p { margin-top: 18px; font-size: 9px; }
  .experience { padding-bottom: 38px; }
  .experience__content { width: 100%; }
  .experience__label, .experience__number { display: none; }
  .experience h2 { font-size: clamp(25px, 7vw, 42px); }
  .experience__genres { min-height: 28px; gap: 5px; font-size: 7px; letter-spacing: .06em; }
  .experience__button { gap: 8px; padding: 11px 9px; font-size: 7px; letter-spacing: .08em; }
  .experience--acoustic { padding-right: 5px; }
  .experience--party { padding-left: 5px; }
  .scroll-hint { display: none; }
}

@media (max-width: 720px) {
  .page-shell { overflow: visible; }
  .site-header {
    height: 70px;
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr;
  }
  .main-nav { gap: 16px; justify-content: center; }
  .main-nav a,
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .main-nav a:first-child {
    display: inline-block !important;
    padding: 27px 0 25px;
    font-size: 8px;
    letter-spacing: .1em;
  }
  .header-button { width: 42px; height: 42px; }
  .brand { top: calc(38% + 150px); }
}

@media (max-width: 680px) and (orientation: landscape) {
  .site-header { height: 58px; padding-inline: 22px; }
  .main-nav a,
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .main-nav a:first-child {
    display: inline-block !important;
    padding-block: 21px 19px;
    font-size: 8px;
  }
  .header-button { width: 42px; height: 42px; }
  .hero { padding-top: 58px; padding-bottom: 30px; }
  .brand { top: 45%; }
  .brand p, .eyebrow { display: none; }
  .experience { padding-bottom: 15px; }
  .experience__label, .experience__number { display: none; }
  .experience__genres { margin-block: 7px; }
  .experience__button { padding: 9px 11px; }
  .scroll-hint { display: none; }
}

@media (max-width: 430px) {
  .main-nav { gap: 12px; }
  .main-nav a,
  .main-nav a:nth-child(1),
  .main-nav a:nth-child(2),
  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .main-nav a:first-child {
    display: inline-block !important;
    letter-spacing: .08em;
  }
  .brand { top: calc(35% + 150px); }
  .experience h2 { font-size: 27px; }
  .experience__genres { flex-wrap: wrap; }
}

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