@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --black: #000;
  --near-black: #070707;
  --soft-black: #101012;
  --white: #fff;
  --muted: rgba(255,255,255,.68);
  --faint: rgba(255,255,255,.12);
  --red: #ed111b;
  --red-2: #ff1d25;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--red);
  color: white;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(0,0,0,.86), rgba(0,0,0,.2));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-minimal {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .62rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.48);
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
}

.brand-text {
  color: white;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--red);
  font-weight: 950;
}

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

.nav a {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .2s ease;
}

.nav a:hover { color: #fff; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: white;
  padding: .75rem 1rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 9rem clamp(1.2rem, 5vw, 5rem) 5rem;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url('assets/hero-header.jpg');
  background-size: cover;
  background-position: center;
  opacity: .84;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.65) 36%, rgba(0,0,0,.38) 70%, rgba(0,0,0,.72) 100%),
    linear-gradient(0deg, #000 0%, transparent 26%, rgba(0,0,0,.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: .95;
  text-transform: uppercase;
}

h1 {
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(4.2rem, 11vw, 10rem);
  letter-spacing: .02em;
  text-shadow: 0 16px 50px rgba(0,0,0,.8);
}

h1 span { color: var(--red); }

.hero-copy {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .95rem 1.5rem;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 55px rgba(237,17,27,.28);
}

.button.primary:hover { background: #ff2832; }

.button.secondary {
  border: 1px solid rgba(255,255,255,.34);
  color: white;
}

.button.secondary:hover {
  background: white;
  color: black;
  border-color: white;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-block: 1px solid rgba(255,255,255,.12);
}

.pillars article {
  background: #08080a;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.icon {
  color: var(--red);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pillars h2 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  letter-spacing: .16em;
}

.pillars p {
  margin: .75rem 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5rem);
}

.section-intro {
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.section-intro h2,
.about-band h2,
.booking-card h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: .01em;
  max-width: 900px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 780px;
}

.services {
  background:
    linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.9)),
    url('assets/text-free-background.svg') center / cover no-repeat;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(7,7,7,.82);
  padding: 2rem;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237,17,27,.6);
}

.service-card h3 {
  color: white;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: .16em;
}

.service-card p {
  color: rgba(255,255,255,.62);
  font-size: .94rem;
  line-height: 1.75;
  margin: 1rem 0 0;
}

.about-band {
  background: white;
  color: black;
  padding: clamp(4rem, 7vw, 6rem) clamp(1.2rem, 5vw, 5rem);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p {
  color: rgba(0,0,0,.72);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-top: 0;
}

.booking {
  background:
    radial-gradient(circle at 50% 20%, rgba(237,17,27,.25), transparent 42%),
    #000;
}

.booking-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(237,17,27,.35);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(237,17,27,.16), rgba(255,255,255,.04) 40%, rgba(0,0,0,.8)),
    #070707;
  box-shadow: 0 40px 120px rgba(237,17,27,.16);
}

.booking-card p:not(.eyebrow):not(.domain) {
  max-width: 680px;
  margin: 1.4rem auto 2rem;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
  line-height: 1.8;
}

.domain {
  margin: 1.6rem 0 0;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  place-items: center;
  gap: .8rem;
  padding: 3rem 1rem;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62);
  text-align: center;
  font-size: .92rem;
}

.footer-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.15rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  color: white;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .72rem;
  font-weight: 950;
  margin-bottom: .45rem;
}

.footer-banner strong {
  color: var(--red);
  font-weight: 950;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
}

@media (max-width: 950px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0,0,0,.96);
    border: 1px solid rgba(255,255,255,.12);
  }

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

  .nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero {
    min-height: 92vh;
    padding-top: 7rem;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .brand-text {
    font-size: .62rem;
    letter-spacing: .16em;
  }

  .brand-minimal {
    padding: .5rem .7rem;
  }

  .footer-banner {
    letter-spacing: .18em;
    line-height: 1.4;
  }
}
