/* ============ RESET & BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #E8891F;
  --orange-dark: #c47018;
  --black: #080808;
  --dark: #101010;
  --dark2: #161616;
  --border: #222;
  --text: #f0ece4;
  --muted: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ NOISE OVERLAY ============ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 3px;
}

.logo span {
  color: var(--orange);
}

.menu {
  display: flex;
  gap: 36px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.menu a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.75;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.95) 100%),
    url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 24px;
  font-weight: 400;
  animation: fadeUp 0.8s ease both;
}

h1 {
  font-family: var(--font-display);
  line-height: 0.9;
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.line {
  display: block;
  animation: fadeUp 0.8s ease both;
}

.line:nth-child(2) { animation-delay: 0.1s; }
.line:nth-child(3) { animation-delay: 0.2s; }

.outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,236,228,0.7);
  margin-bottom: 40px;
  max-width: 580px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-logo {
  position: absolute;
  bottom: 40px;
  right: 6%;
  width: 160px;
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 6%;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #000;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-primary.big {
  padding: 20px 50px;
  font-size: 1rem;
  margin-top: 10px;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(240,236,228,0.3);
  color: var(--text);
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ============ MARQUEE ============ */
.marquee-wrap {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 30px;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #000;
}

.marquee-track .dot {
  font-size: 0.7rem;
  opacity: 0.5;
}

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

/* ============ SECTIONS ============ */
.section {
  padding: 110px 6%;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.section h2 em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--orange);
  font-size: 0.7em;
}

/* ============ SERVICES ============ */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: var(--dark);
  padding: 50px 40px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.service-card:hover {
  background: var(--dark2);
}

.service-card[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(240,236,228,0.6);
  font-size: 0.95rem;
}

.service-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-top: 30px;
  transition: width 0.3s;
}

.service-card:hover .service-line {
  width: 80px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 50px 6%;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 0 60px;
  flex: 1;
  min-width: 180px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: #000;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.2);
}

/* ============ ABOUT ============ */
.about-section {
  background: var(--black);
}

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

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

.about-img {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  background:
    url('photo-adn.png') center/contain no-repeat;
  background-color: transparent;
  border: none;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 20px 28px;
  line-height: 1.4;
  text-align: center;
}

.about-text {
  padding-right: 20px;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  color: rgba(240,236,228,0.65);
  margin-bottom: 20px;
}

.about-text .btn-primary {
  margin-top: 20px;
}

/* ============ PROJECTS ============ */
.projects-section {
  background: var(--dark);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}

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

.gallery-item.tall {
  grid-row: 1 / 3;
}

.gallery-item.wide {
  grid-column: 2 / 4;
}

.placeholder-bg {
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.placeholder-bg::after {
  content: '📷';
  font-size: 2.5rem;
  opacity: 0.2;
}

.gallery-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 24px;
  font-style: italic;
}

.gallery-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.65);
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.04);
  filter: brightness(0.5);
}

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--text);
  z-index: 1;
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--black);
}

.contact-inner {
  max-width: 700px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item p {
  color: rgba(240,236,228,0.65);
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 50px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 4px;
}

.footer-logo span {
  color: var(--orange);
}

footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(240,236,228,0.3) !important;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .menu { display: none; }
  .nav-cta { display: none; }

  h1 { font-size: clamp(3.5rem, 15vw, 6rem); }

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

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

  .about-badge { right: 0; }

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

  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }

  .stat-divider { display: none; }
  .stat { padding: 20px; }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .section { padding: 70px 5%; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
}
