/* ─────────────────────────────────────────────
   ASTERISKS — Visual Studio
   Aesthetic: Raw editorial nightlife, high-contrast,
   grain-textured, bold display type
───────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:   #080808;
  --off-black: #111111;
  --white:   #f5f2ee;
  --cream:   #e8e2d9;
  --accent:  #d4ff00;
  --muted:   #555555;
  --border:  rgba(245, 242, 238, 0.12);

  --font-display: 'Bebas Neue', sans-serif;
  --font-italic:  'Playfair Display', serif;
  --font-mono:    'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-mono);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: crosshair;
}

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

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

/* ── Grain overlay ── */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  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.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.grain--light {
  opacity: 0.25;
  mix-blend-mode: soft-light;
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,8,0.92) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(8,8,8,0.97);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  filter: grayscale(20%);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  opacity: 1 !important;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 7px 18px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--black) !important;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 80px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) contrast(1.1);
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.15) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  animation: heroFadeUp 1.1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroFadeUp 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-star {
  color: var(--accent);
  display: inline-block;
  animation: starPulse 2.4s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.08) rotate(8deg); }
}

.hero-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 40px;
  animation: heroFadeUp 1.1s 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: heroFadeUp 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 255, 0, 0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 1.1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  writing-mode: vertical-rl;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────── */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background: var(--accent);
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--black);
}

.marquee-star {
  font-size: 0.7rem !important;
  opacity: 0.5;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   WORK / GALLERY
───────────────────────────────────────────── */
.work-section {
  padding: 96px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}

.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-link {
  display: block;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--off-black);
}

.gallery-item--large .gallery-img-wrap {
  aspect-ratio: 3/4;
  height: 100%;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.gallery-link:hover .gallery-img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-link:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover-icon {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  transform: translateY(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-link:hover .gallery-hover-icon {
  transform: translateY(0);
}

.gallery-meta {
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

.gallery-caption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.65;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-ig-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-link:hover .gallery-ig-link {
  opacity: 1;
}

.gallery-cta-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.outline-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.outline-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section {
  padding: 96px 64px;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-frame {
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--border);
  z-index: 0;
  pointer-events: none;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.08);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-img-badge img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
}

.about-img-badge span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0.7;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 32px;
}

.about-title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--accent);
}

.about-body {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 20px;
}

.about-text-col .outline-btn {
  margin-top: 16px;
}

/* ─────────────────────────────────────────────
   CONTACT CTA
───────────────────────────────────────────── */
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 120px 64px;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-section::before {
  content: '✦';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 28vw, 28rem);
  color: var(--accent);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  animation: starRotate 30s linear infinite;
}

@keyframes starRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 48px;
}

.contact-title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--accent);
}

.contact-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 16px 40px;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 255, 0, 0.3);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 48px 64px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
  border: 1px solid var(--border);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.45;
}

.footer-ig {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-ig:hover {
  opacity: 1;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 24px;
  }

  .hero {
    padding: 80px 24px;
    align-items: flex-end;
  }

  .hero-scroll-hint {
    right: 24px;
    bottom: 24px;
  }

  .work-section {
    padding: 64px 24px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item--large .gallery-img-wrap {
    aspect-ratio: 4/5;
    height: auto;
  }

  .about-section {
    padding: 64px 24px;
  }

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

  .about-img-badge {
    right: 0;
    bottom: -16px;
  }

  .contact-section {
    padding: 80px 24px;
  }

  .site-footer {
    padding: 40px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .nav-links li:not(:last-child) {
    display: none;
  }

  .hero-title {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .contact-title {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }
}
