:root {
  --black: #000000;
  --white: #ffffff;
  --white-soft: #f5f5f0;
  --gray: #818589;
  --pink: #f91792;
  --teal: #40decb;
  --yellow: #f6da3a;
  --purple: #9051b9;
  --purple2: #bb2fd4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background-image: url(brick.jpg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-color: black;
}

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

.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  -webkit-text-stroke: 2px var(--pink);
}

.eyebrow2 {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(1rem, 1.5vw, 2rem);
  margin: 0 0 12px;
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  -webkit-text-stroke: 1px var(--black);
}

.hero-text, .split p, .contact p {
  color: var(--yellow);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.65;
}

.hero-art {
  display: block;  
  padding: 16px;
  max-width: 748px;
}

.hero-art img { 
  display: block;
  border-radius: 22px; 
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact {
  text-align: center;
  padding-inline: 24px;
  margin-bottom: 70px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.contact-grid a {
  color: var(--pink);
  text-decoration: none;
  padding: 12px 16px;
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;

}

.links {
  text-align: center;
  padding-inline: 24px;
  margin-bottom: 70px;
}
.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.links-grid a {
  color: var(--yellow);
  text-decoration: none;
  padding: 12px 16px;
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 3vw, 3rem);
  -webkit-text-stroke: 1px var(--pink);
}

.footer {
  padding: 26px;
  text-align: center;
  color: var(--pink);
  border-top: 1px solid rgba(0, 0, 0);
  background: #000;
}

@media (max-width: 820px) {
  .hero, .split, { grid-template-columns: 1fr; }
  .nav { gap: 10px; font-size: .7rem; }
}
