@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&family=Bebas+Neue&display=swap');

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

:root {
  --white: #F5F4EE;
  --moss: #6B7A4E;
  --blue: #8BA3C1;
  --pink: #E8197C;
  --black: #0D0D0D;
  --dark: #111;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  mix-blend-mode: difference;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.2em; color: var(--white); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 700; transition: color 0.2s; }
.nav-links a:hover { color: var(--pink); }

/* MARQUEE */
.marquee-wrap { overflow: hidden; width: 100%; }
.marquee { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; }
.marquee span { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.2em; color: var(--moss); padding-right: 0; }
.marquee-wrap.reverse .marquee { animation-direction: reverse; }
.marquee-wrap.reverse .marquee span { color: var(--blue); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  gap: 2rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 15vw, 16rem);
  line-height: 0.9;
  display: flex; flex-direction: column;
}
.hero-title .line { display: block; }
.accent { color: var(--pink); }
.hero-sub { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.hero-sub p { font-size: 1rem; letter-spacing: 0.3em; color: rgba(245,244,238,0.5); text-transform: uppercase; }
.pantone-chips { display: flex; gap: 0.5rem; }
.chip {
  width: 3rem; height: 4rem; border-radius: 2px;
  display: flex; align-items: flex-end; padding: 0.3rem;
  font-size: 0.5rem; font-weight: 700; color: var(--black);
  transition: transform 0.2s;
}
.chip:hover { transform: translateY(-4px); }

.hero-img { position: relative; }
.img-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px;
  filter: saturate(1.1) contrast(1.05);
  transition: filter 0.4s;
}
.img-main:hover { filter: saturate(1.4) contrast(1.1); }
.hero-tag {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--pink); color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  transform: rotate(-3deg);
}

/* SECTION LABEL */
.section-label {
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: rgba(245,244,238,0.4);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* WORK GRID */
.work { padding: 6rem 3rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}
.grid-item {
  position: relative; overflow: hidden; border-radius: 4px;
  cursor: pointer;
}
.grid-item.tall { grid-row: span 2; }
.grid-item.wide { grid-column: span 2; }
.grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  min-height: 300px;
}
.grid-item:hover img { transform: scale(1.05); filter: saturate(1.3); }
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.overlay.dark { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); }
.grid-item:hover .overlay { opacity: 1; }
.num { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--pink); margin-bottom: 0.3rem; }
.overlay h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.1em; }
.overlay p { font-size: 0.75rem; color: rgba(245,244,238,0.6); letter-spacing: 0.1em; }

/* MARQUEE SECTION */
.marquee-section { padding: 3rem 0; border-top: 1px solid rgba(245,244,238,0.1); border-bottom: 1px solid rgba(245,244,238,0.1); }

/* ABOUT */
.about {
  padding: 8rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 4px; filter: grayscale(20%); }
.about-sticker {
  position: absolute; top: -1rem; right: -1rem;
  background: var(--pink); color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.1em;
  padding: 1rem; border-radius: 50%;
  width: 6rem; height: 6rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.1;
  animation: spin 8s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9; margin-bottom: 2rem;
}
.about-text p { font-size: 1rem; line-height: 1.7; color: rgba(245,244,238,0.7); margin-bottom: 1rem; }
.stats { display: flex; gap: 3rem; margin-top: 3rem; }
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--pink); }
.stat span:last-child { font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(245,244,238,0.5); text-transform: uppercase; }

/* CONTACT */
.contact {
  padding: 8rem 3rem;
  border-top: 1px solid rgba(245,244,238,0.1);
  text-align: center;
}
.contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 14rem);
  line-height: 0.9; margin-bottom: 3rem;
}
.cta-btn {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white); text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.2em; padding: 1.2rem 3rem;
  transition: all 0.3s;
  text-transform: uppercase;
}
.cta-btn:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-2px); }
.socials { display: flex; gap: 2rem; justify-content: center; margin-top: 3rem; }
.socials a { color: rgba(245,244,238,0.4); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.2em; transition: color 0.2s; }
.socials a:hover { color: var(--pink); }

/* FOOTER */
footer {
  padding: 2rem 3rem;
  display: flex; justify-content: space-between;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: rgba(245,244,238,0.25);
  border-top: 1px solid rgba(245,244,238,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
  .hero-img { order: -1; }
  .hero-title { font-size: clamp(5rem, 20vw, 8rem); }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid-item.tall { grid-row: span 1; }
  .grid-item.wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .work, .contact { padding: 4rem 1.5rem; }
  .contact h2 { font-size: clamp(4rem, 18vw, 8rem); }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; }
}
