/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #fff; background: #000; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --white: #ffffff;
  --off-white: #a0a0a0;
  --dark: #000000;
  --dark-2: #0a0a0a;
  --dark-3: #111111;
  --dark-4: #1a1a1a;
  --border: rgba(255,255,255,0.1);
  --accent: #e85d26;
  --radius: 4px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--off-white); margin-bottom: 16px; }
.section-header { margin-bottom: 72px; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.section-header.light h2 { color: var(--dark); }
.section-header.light .eyebrow { color: #555; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e0e0e0; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #c94d1a; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-bottom 0.3s;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo { font-size: 1.1rem; font-weight: 900; letter-spacing: 0.08em; color: #fff; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-cta:hover { background: #fff; color: #000; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 0 24px;
}
.mobile-menu a { padding: 14px 40px; font-size: 0.95rem; color: rgba(255,255,255,0.75); border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-cta { color: var(--accent); border-bottom: none; font-weight: 600; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #0d0d0d 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 1.4rem; color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--off-white); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 120px 0; background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.service-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-item:hover { background: var(--dark-3); }
.service-item:nth-child(3n) { border-right: none; }
.service-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-body p { font-size: 0.9rem; color: var(--off-white); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; transition: color 0.2s; }
.service-link:hover { color: #fff; }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work { padding: 120px 0; background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 3px;
}
.gallery-item { overflow: hidden; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-placeholder:hover { background: #222; }
.gallery-placeholder span { font-size: 0.75rem; color: #444; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 120px 0; background: #f5f5f5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testimonial {
  background: #fff;
  padding: 48px 40px;
  border: 1px solid #e8e8e8;
}
.stars { color: #000; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 24px; }
.testimonial blockquote { font-size: 1rem; color: #333; line-height: 1.8; margin-bottom: 24px; font-style: italic; font-weight: 400; }
.testimonial cite { font-size: 0.8rem; font-weight: 600; color: #888; letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 120px 0; background: var(--dark); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-placeholder {
  aspect-ratio: 4/5;
  background: var(--dark-4);
  border: 1px solid var(--border);
}
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 28px; }
.about-text p { font-size: 0.97rem; color: var(--off-white); line-height: 1.8; margin-bottom: 20px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.about-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 120px 0; background: var(--dark-3); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.contact-text h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.contact-text p { color: var(--off-white); font-size: 0.97rem; line-height: 1.8; margin-bottom: 48px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 16px; font-size: 0.97rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.contact-detail:hover { color: #fff; }
.detail-icon { font-size: 1.1rem; width: 20px; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
}
.contact-form textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer-left .logo { margin-bottom: 12px; }
.footer-left p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-nav, .footer-right { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-right a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-nav a:hover, .footer-right a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n) { border-right: none; }
  .contact-inner, .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: 72px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}
