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

:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f6f0e6;
  --muted: #cfc7b8;
  --gold: #d6b56d;
  --gold-light: #f0d58a;
  --line: rgba(255,255,255,0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  text-decoration: none;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  opacity: 0.86;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.58), rgba(0,0,0,0.88)),
    url("IMG_6138.jpeg") center / cover no-repeat;
}

.hero.small {
  min-height: 48vh;
}

.hero-content {
  max-width: 940px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 18px;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.93;
  margin-bottom: 28px;
  letter-spacing: -3px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
}

.hero-content > p {
  max-width: 690px;
  font-size: 1.16rem;
}

.buttons,
.social-links,
.inline-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn,
.social-links a,
.inline-links a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: 0.25s ease;
}

.primary,
.social-links a {
  background: var(--gold);
  color: #080808;
}

.secondary,
.inline-links a {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text);
}

.primary:hover,
.social-links a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.secondary:hover,
.inline-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: 100px 8%;
}

.dark {
  background: #0e0e0e;
}

.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.intro-copy p,
.about-copy p {
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.feature-grid,
.services-grid,
.project-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid {
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.card,
.project,
.service,
.quote-card,
.bio-panel {
  background: linear-gradient(145deg, var(--panel-2), #0b0b0b);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  transition: 0.25s ease;
}

.card,
.service,
.quote-card,
.bio-panel {
  padding: 30px;
}

.card:hover,
.project:hover,
.service:hover,
.quote-card:hover,
.bio-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(214,181,109,0.5);
}

.card span,
.project-type {
  display: inline-block;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  font-weight: 900;
}

.project {
  padding: 34px;
}

.project-header {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: start;
}

.project-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #000;
}

.project.no-art .project-header {
  grid-template-columns: 1fr;
}

.project p {
  margin-bottom: 16px;
}

.audio-player {
  width: 100%;
  margin-top: 18px;
  filter: sepia(10%) saturate(85%);
}

.video-frame,
.spotify-frame {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: #000;
  margin-top: 20px;
}

.video-frame {
  height: 520px;
}

.spotify-frame {
  height: 352px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.tag-list span {
  border: 1px solid rgba(214,181,109,0.3);
  color: var(--gold);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
}

.about-photo {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  object-fit: cover;
  max-height: 560px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.quote-card {
  max-width: 1080px;
}

.quote-card p {
  font-size: 1.18rem;
  margin-bottom: 22px;
}

.quote-card strong,
.gold {
  color: var(--gold);
}

.contact-panel {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.footer {
  padding: 34px 8%;
  text-align: center;
  color: #777;
  border-top: 1px solid var(--line);
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .feature-grid,
  .services-grid,
  .intro-grid,
  .about-grid,
  .project-header,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    height: 360px;
  }

  h1 {
    letter-spacing: -2px;
  }
}

@media (max-width: 650px) {
  .nav {
    position: static;
    flex-direction: column;
    gap: 14px;
    padding: 18px 6%;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: 78vh;
    padding: 66px 6%;
  }

  .hero.small {
    min-height: 42vh;
  }

  .section {
    padding: 72px 6%;
  }

  .buttons,
  .social-links,
  .inline-links {
    flex-direction: column;
  }

  .btn,
  .social-links a,
  .inline-links a {
    text-align: center;
  }

  .project {
    padding: 24px;
  }

  .video-frame {
    height: 250px;
  }

  .gallery-grid img {
    height: 260px;
  }
}
.about-hero-text {
  position: relative;
  min-height: 760px;
  padding: 110px 8%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.about-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.42;
  filter: saturate(0.85) contrast(1.05);
}

.about-bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.52), rgba(0,0,0,0.9)),
    radial-gradient(circle at center, rgba(214,181,109,0.18), transparent 45%);
}

.about-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  padding: 8px;
}

.about-overlay-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 42px;
  border-radius: 30px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
}

.about-overlay-card h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.about-overlay-card p {
  color: #cfc7b8;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.gallery-grid img {
  object-fit: contain !important;
  background: #050505;
}

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

  .about-hero-text {
    min-height: auto;
    padding: 80px 6%;
  }

  .about-overlay-card {
    padding: 28px;
  }
}
