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

:root {
  --black: #080808;
  --white: #f5f5f5;
  --accent: #d42b2b;
  --gray: #999;
  --border: #1e1e1e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
}

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

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul a {
  color: var(--gray);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 50%, rgba(8,8,8,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.accent { color: var(--accent); }

.hero-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #b82020;
  transform: translateY(-1px);
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ABOUT */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-services {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.service:last-child { border-bottom: none; padding-bottom: 0; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  min-width: 50px;
}

.service h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service p { color: var(--gray); font-size: 0.95rem; }

/* WORK */
.work {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* REELS */
.reels {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reel-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reel-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}

.reel-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.reel-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* CONTACT */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.contact > .container > p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.socials a:hover { color: var(--white); }

.socials svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */
footer {
  padding: 24px 60px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #444;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { padding: 0 32px; }
  .container { padding: 0 32px; }

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

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

  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/4; }

  nav { padding: 16px 24px; }
  nav ul { gap: 24px; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-content { padding: 0 24px; }
  .container { padding: 0 24px; }

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

  .socials { flex-direction: column; align-items: center; gap: 24px; }

  nav ul { display: none; }
  footer { padding: 20px 24px; }
}
