:root {
  --ink: #151014;
  --paper: #fff6df;
  --cream: #ffeebd;
  --coral: #ff4b5c;
  --pink: #f42bbb;
  --violet: #6824d8;
  --blue: #0477ff;
  --teal: #00bfa6;
  --gold: #ffb000;
  --green: #63d448;
  --white: #fffdf6;
  --shadow: 0 24px 80px rgba(21, 16, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 75, 92, 0.28), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(0, 191, 166, 0.28), transparent 26rem),
    linear-gradient(135deg, #fff7d7 0%, #ffe3b8 36%, #fff9e8 100%);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: rgba(21, 16, 20, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav {
  gap: clamp(0.5rem, 2vw, 1.35rem);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  opacity: 0.86;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 16, 20, 0.88) 0%, rgba(21, 16, 20, 0.58) 42%, rgba(21, 16, 20, 0.2) 100%),
    repeating-radial-gradient(circle at 26% 52%, transparent 0 12px, rgba(255, 255, 255, 0.08) 13px 14px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 5.5rem);
  padding-top: 5rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title-row {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1rem;
}

h1 {
  max-width: 10ch;
  margin-bottom: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 16vw, 12.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 10px 0 rgba(244, 43, 187, 0.38), 0 20px 44px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--green));
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.blue {
  color: var(--white);
  background: linear-gradient(135deg, #0477ff, #00bfa6);
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 6vw, 5.5rem);
}

.intro,
.split,
.credits {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro {
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 0.95fr) minmax(230px, 0.58fr);
  gap: clamp(1.4rem, 3.6vw, 3.2rem);
  align-items: center;
}

.social-follow {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.8fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 191, 166, 0.22), transparent 22rem),
    linear-gradient(135deg, #151014, #2d0a1c 55%, #061d28);
}

.social-copy p {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button.dark {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.social-image {
  width: min(100%, 440px);
  border-radius: 8px;
  justify-self: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.social-follow .social-image {
  grid-column: 2;
}

.personal {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: linear-gradient(135deg, #fff6df, #ffe2af);
}

.personal-photo {
  width: min(100%, 360px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.personal-copy p {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.intro-copy p,
.credits-copy p {
  max-width: 780px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.intro-photo {
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-photo-wide {
  width: min(100%, 400px);
  aspect-ratio: 4 / 3;
  justify-self: end;
  object-position: center;
}

.intro-copy {
  max-width: 820px;
}

.intro-copy h2 {
  margin-bottom: 1.2rem;
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-block: 8px solid var(--coral);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1.1rem 0;
  animation: drift 25s linear infinite;
}

.marquee span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 4.75rem);
  white-space: nowrap;
  color: var(--gold);
  text-shadow: 5px 5px 0 var(--pink);
}

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

.feature-card {
  min-height: 310px;
  padding: 1.25rem;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    repeating-linear-gradient(135deg, rgba(104, 36, 216, 0.1) 0 8px, rgba(0, 191, 166, 0.12) 8px 16px);
  border: 2px solid rgba(21, 16, 20, 0.16);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--violet);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.2rem;
}

.feature-card p,
.timeline p {
  line-height: 1.65;
}

.credits {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 176, 0, 0.28), transparent 18rem),
    radial-gradient(circle at 78% 30%, rgba(244, 43, 187, 0.34), transparent 20rem),
    linear-gradient(135deg, #151014, #3a143c 48%, #062d50);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.timeline time {
  color: var(--gold);
  font-weight: 900;
}

.quote-band {
  padding: clamp(4rem, 9vw, 7rem) 1rem;
  color: var(--ink);
  text-align: center;
  background:
    repeating-conic-gradient(from 10deg, var(--gold) 0 8%, var(--coral) 8% 16%, var(--teal) 16% 24%, var(--pink) 24% 32%, var(--blue) 32% 40%);
}

.quote-band p {
  max-width: 960px;
  margin: 0 auto;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  color: var(--white);
  text-shadow: 0 6px 0 rgba(21, 16, 20, 0.7);
}

.contact-panel {
  display: grid;
  gap: 0.75rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 2px solid rgba(21, 16, 20, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.contact-heading {
  padding: clamp(0.65rem, 1.8vw, 0.9rem) clamp(0.25rem, 1vw, 0.5rem);
}

.contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
}

.contact-intro,
.contact-layer {
  margin: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border-radius: 8px;
}

.contact-intro {
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.55;
  background:
    linear-gradient(145deg, rgba(21, 16, 20, 0.9), rgba(104, 36, 216, 0.72)),
    repeating-linear-gradient(135deg, rgba(255, 176, 0, 0.18) 0 7px, rgba(244, 43, 187, 0.15) 7px 14px);
}

.contact-email {
  justify-self: center;
  min-height: 52px;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
}

.contact-layer {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 16, 20, 0.12);
}

.contact-layer h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.contact-layer p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 6vw, 5.5rem);
  color: var(--white);
  background: var(--ink);
}

footer p {
  margin: 0;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 16, 20, 0.84) 0%, rgba(21, 16, 20, 0.46) 52%, rgba(21, 16, 20, 0.88) 100%),
      repeating-radial-gradient(circle at 40% 44%, transparent 0 12px, rgba(255, 255, 255, 0.08) 13px 14px);
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding: 9rem 0 3rem;
  }

  .intro,
  .split,
  .credits,
  .contact,
  .social-follow,
  .personal,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .social-follow .social-image {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .intro-photo,
  .intro-photo-wide {
    width: min(100%, 420px);
    justify-self: start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(4.2rem, 24vw, 6rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
