/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #111;
  --white: #fff;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', 'Arial', sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
}

/* HERO */
#hero-highend {
  position: relative;
  overflow: hidden;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7vw 0 5vw 0;
  background: var(--black);
}
/* Removed .hero-bg-subtle as hero background is now just black */
/* No extra background needed, #hero-highend background is already black */
.hero-highend-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 4vw;
  position: relative;
  z-index: 2;
}
.hero-highend-text {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.hero-highend-text h1 {
  font-size: 6vw;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-bold { 
  color: var(--white); 
}
.hero-outline {
  color: var(--black);
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
}
.hero-slide {
  color: var(--white);
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: slideIn 1.1s cubic-bezier(.77,0,.18,1) 0.25s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-hero h1 {
  opacity: 0;
  animation: fadeInTitle 1.1s cubic-bezier(.77,0,.18,1) 0.05s forwards;
}
@keyframes fadeInTitle {
  to { opacity: 1; }
}
.hero-underline {
  width: 80px;
  height: 4px;
  background: var(--white);
  margin: 1.5rem 0 2.5rem 0;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.3);
  animation: underlineGrow 0.8s cubic-bezier(.77,0,.18,1) 0.8s forwards;
}
@keyframes underlineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.hero-highend-sub {
  font-size: 1.5rem;
  margin: 2.5rem 0 2.5rem 0;
  color: var(--white);
  font-weight: 400;
}

/* FOOTER */
.highend-footer {
  background: var(--black);
  padding: 3rem 0 2rem 0;
}
.footer-highend-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  gap: 2.5rem;
}
.footer-logo-text {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-logo-text.hero-outline {
  font-family: 'Jersey 25', 'Inter', 'Arial', sans-serif;
  color: var(--black);
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
}
.footer-logo-text.hero-slide {
  font-family: 'Jersey 25', 'Inter', 'Arial', sans-serif;
}
@media (max-width: 600px) {
  .footer-logo-text { font-size: 2.3rem; }
}
.footer-highend-info {
  text-align: right;
  color: var(--white);
  font-size: 1.07rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.footer-copyright {
  color: #aaa;
  font-size: 0.98rem;
  margin-top: 0.7rem;
  letter-spacing: 0.04em;
}

.footer-highend-inner a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-highend-inner a:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer-highend-inner { flex-direction: column; text-align: left; align-items: flex-start; gap: 2.5rem; }
  .footer-highend-info { align-items: flex-start; text-align: left; }
}
@media (max-width: 600px) {
  .highend-header, .footer-highend-inner { padding: 1.2rem 3vw; }
  .hero-highend-inner { padding-left: 3vw; }
  .footer-highend-inner { flex-direction: column; text-align: left; gap: 2.5rem; }
  .footer-highend-info { align-items: flex-start; text-align: left; }
}

/* === PIXELATED CURSOR === */
body, html {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><rect x="2" y="2" width="20" height="20" rx="2" fill="white" stroke="black" stroke-width="2"/><rect x="6" y="6" width="4" height="4" fill="black"/><rect x="14" y="14" width="4" height="4" fill="black"/></svg>') 2 2, auto;
}
body:hover, html:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><rect x="2" y="2" width="20" height="20" rx="2" fill="white" stroke="black" stroke-width="2"/><rect x="6" y="6" width="4" height="4" fill="black"/><rect x="14" y="14" width="4" height="4" fill="black"/><rect x="10" y="10" width="4" height="4" fill="black"/></svg>') 2 2, auto;
}
