:root {
  color-scheme: dark;
  --bg: #090909;
  --bg-soft: #141211;
  --panel: #1d1916;
  --panel-strong: #261f1a;
  --text: #f7f2ec;
  --muted: #c8bcb0;
  --quiet: #8f8277;
  --red: #f20d1f;
  --red-dark: #8e0611;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 10%, rgba(242, 13, 31, 0.16), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #11100f 46%, #17100f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: clamp(126px, 16vw, 190px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.86fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  width: min(100% - 32px, var(--max));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 74px) 0 clamp(54px, 8vw, 98px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.7rem, 7.1vw, 6.25rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  min-width: 0;
}

.hero-copy p {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
}

.hero-copy .hero-sub {
  color: var(--text);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 22px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.button.large {
  min-width: min(100%, 220px);
}

.hero-photo {
  position: relative;
  min-height: clamp(500px, 62vh, 700px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-photo::after,
.event-card::after,
.photo-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    linear-gradient(90deg, rgba(242, 13, 31, 0.1), transparent 38%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.92) contrast(1.08);
}

.trust-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 670px;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.trust-stack p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(14px, 2vw, 20px);
  color: var(--text);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.trust-stack p:last-child {
  border-bottom: 0;
}

.trust-stack a {
  color: var(--text);
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.trust-stack a:hover {
  color: var(--red);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 132px) 0;
}

.intro-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.intro-strip p {
  margin: 0;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 98px;
}

.section-heading.narrow {
  position: static;
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p,
.photo-band p,
.why p,
.booking p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.feature-list article {
  min-height: 210px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.03);
}

.feature-list article:nth-child(2n) {
  border-right: 0;
}

.feature-list span {
  color: var(--red);
  font-weight: 900;
}

h3 {
  margin: 34px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.feature-list p,
.event-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.photo-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: end;
  gap: clamp(26px, 5vw, 72px);
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(46px, 8vw, 84px) 0;
}

.photo-band::after {
  opacity: 0.2;
}

.photo-band img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-band div {
  position: relative;
  z-index: 1;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.event-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 0.92));
}

.event-card h3 {
  margin-top: 0;
}

.event-card .event-caption {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vibenet-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: end;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 13, 31, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: clamp(50px, 8vw, 88px) 0;
}

.vibenet-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vibenet-copy h2 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

.vibenet-copy > p:not(.vibenet-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.vibenet-proof {
  display: grid;
  border-top: 1px solid var(--line);
}

.vibenet-proof div {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.vibenet-proof span {
  display: block;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.vibenet-proof p {
  margin: 10px 0 0;
  color: var(--muted);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.why-copy p {
  max-width: 760px;
}

.why-close {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
}

.why-stack h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.why-list li {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
}

.why-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 14px;
  background: var(--red);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(100% - 32px, var(--max));
  margin: 0 auto clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242, 13, 31, 0.17), transparent 36%),
    var(--panel-strong);
  padding: clamp(30px, 5vw, 56px);
}

.booking h2 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--quiet);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .photo-band,
  .vibenet-band,
  .why,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-photo {
    min-height: 600px;
  }

  .section-heading {
    position: static;
  }

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

}

@media (max-width: 620px) {
  .site-nav {
    gap: 8px 10px;
    font-size: 0.58rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11.4vw, 3.15rem);
    line-height: 0.9;
  }

  .hero-copy .hero-sub {
    font-size: 1.05rem;
    line-height: 1.35;
    max-width: min(100%, 340px);
  }

  .trust-stack {
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .trust-stack p {
    padding: 12px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    max-width: calc(100vw - 32px);
    white-space: normal;
    word-break: break-word;
  }

  h2,
  .vibenet-copy h2,
  .booking h2 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
    line-height: 0.92;
  }

  .intro-strip p {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
    line-height: 0.92;
  }

  .hero-photo {
    min-height: 480px;
  }

  .feature-list,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article,
  .feature-list article:nth-child(2n) {
    border-right: 0;
  }

  .event-card {
    min-height: 430px;
  }

  .vibenet-band {
    padding: 44px 0;
  }

  .booking {
    padding: 26px 20px;
  }
}
