:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #181818;
  --white: #f5f2ea;
  --white-dim: #a8a39a;

  --green: #4dff91;
  --green-dark: #1a6e3c;
  --orange: #ff6b2b;
  --orange-dark: #b03a08;

  --font-display: "Syne", sans-serif;
  --font-mono: "Space Mono", monospace;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  --max-width: 1100px; /* max content width */
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;

  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.7;

  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.section {
  padding-block: var(--sp-12);
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);

  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-6);
}

.divider {
  border: none;
  border-top: 1px solid var(--green-dark);
  margin-block: var(--sp-8);
  opacity: 0.4;
}

/* Scroll-reveal animation*/
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav__logo-video {
  height: 250px;
  width: auto;
  display: block;
}

.nav__logo-img {
  height: 250px;
  width: auto;
  display: block;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.nav__logo-img,
.nav__logo-video {
  height: 250px;
  width: auto;
  display: block;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);

  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(77, 255, 145, 0.08);
}

.nav__inner {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo / wordmark */
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
/* The dot before "alique" in green */
.nav__logo span {
  color: var(--green);
}

/* Horizontal nav links — hidden on mobile */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--green);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-down menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--green-dark);
  padding: var(--sp-3) var(--sp-4);
  z-index: 99;
}
.nav__mobile.open {
  display: block;
}
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.nav__mobile a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
}
.nav__mobile a:hover {
  color: var(--green);
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--sp-12);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Glowing green gradient blob top-right */
.hero__glow {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(77, 255, 145, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-3);
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

/* The green dot in "by.alique" */
.hero__name .dot {
  color: var(--green);
}

.hero__tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--white-dim);
  max-width: 420px;
  margin-bottom: var(--sp-6);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
}
.btn--primary:hover {
  background: #6fffa8;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 242, 234, 0.25);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white-dim);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.releases {
  background: var(--black-soft);
}

.releases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}

.release-card {
  background: var(--black-card);
  border: 1px solid rgba(77, 255, 145, 0.08);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.release-card:hover {
  border-color: rgba(77, 255, 145, 0.3);
  transform: translateY(-4px);
}

.release-card__embed {
  width: 100%;
  height: 420px;
  aspect-ratio: 1;
  display: block;
  border: none;
}

.release-card__body {
  padding: var(--sp-2) var(--sp-3);
}

.release-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.release-card__meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--sp-2);
}

.release-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-dim);
  border: 1px solid rgba(245, 242, 234, 0.12);
  transition: all 0.2s;
}
.stream-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.stream-link svg {
  width: 12px;
  height: 12px;
}

.bio__inner {
  display: grid;

  grid-template-columns: 5fr 7fr;
  gap: var(--sp-8);
  align-items: center;
}

.bio__image-wrap {
  position: relative;
}

.bio__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.bio__image-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--orange);
  z-index: -1;
}

.bio__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px solid var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  gap: var(--sp-2);
}

.bio__text p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: var(--sp-3);
}

.bio__text p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white);
  line-height: 1.5;
}

.bio__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.bio__stat {
  border-left: 2px solid var(--green);
  padding-left: var(--sp-2);
}

.bio__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.bio__stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.gallery {
  background: var(--black-soft);
}

.gallery__grid {
  columns: 3;
  column-gap: var(--sp-2);
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--sp-2);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(10%);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
  filter: grayscale(0%);
}

.gallery__item::after {
  content: "View";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.3s;

  display: flex;
}
.gallery__item:hover::after {
  opacity: 1;
}

.gallery__placeholder {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover {
  color: var(--orange);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.contact__info p {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.social-link:hover {
  color: var(--green);
}
.social-link span {
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.2s;
}
.social-link:hover span {
  width: 40px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.field input,
.field select,
.field textarea {
  background: var(--black-card);
  border: 1px solid rgba(245, 242, 234, 0.1);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a39a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  margin-top: var(--sp-1);
  cursor: pointer;
  border: none;
}
.btn--submit:hover {
  background: #ff8653;
  transform: translateY(-2px);
}
.btn--submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  font-size: 13px;
  padding: 12px 16px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(77, 255, 145, 0.08);
  border: 1px solid var(--green-dark);
  color: var(--green);
}
.form-status.error {
  display: block;
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid var(--orange-dark);
  color: var(--orange);
}

.footer {
  background: var(--black);
  border-top: 1px solid rgba(77, 255, 145, 0.08);
  padding-block: var(--sp-6);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.footer__logo span {
  color: var(--green);
}

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}
.footer__socials a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__socials a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .bio__inner {
    grid-template-columns: 1fr;
  }
  .bio__image-wrap {
    max-width: 360px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  .gallery__grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    columns: 1;
  }
  .hero__name {
    font-size: 3rem;
  }
}
