/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  /* Backgrounds */
  --bg: #0a0e1a;
  --bg-alt: #0f1525;
  --surface: #161e33;
  --surface-2: #1f2942;

  /* Borders */
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);

  /* Text */
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --heading: #f8fafc;

  /* Accent */
  --accent: #f97316;
  --accent-hover: #fb923c;
  --accent-soft: rgba(249, 115, 22, 0.12);

  --container: 1200px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); letter-spacing: -0.01em; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--heading); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--heading); }

p { margin-bottom: 16px; color: var(--text); }
.lede { font-size: 1.15rem; color: var(--text-muted); max-width: 720px; }
.lede.light { color: var(--text-muted); }

.eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.eyebrow.light { color: var(--accent); }
.light { color: var(--text) !important; }
h2.light { color: var(--heading); }

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

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.2rem; color: var(--heading);
  font-family: 'Space Grotesk', sans-serif;
}
.logo-mark { color: var(--accent); font-size: 1.4rem; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; position: relative; }
.main-nav a:hover { color: var(--heading); }
.main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 2px; background: var(--accent);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--heading); transition: 0.3s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block; padding: 14px 28px; font-weight: 600; font-size: 0.95rem;
  border-radius: 6px; transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--heading);
  border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--accent); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 90vh; overflow: hidden;
  display: flex; align-items: center; color: var(--heading);
  background: var(--bg);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.55; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,14,26,0.7) 0%, rgba(10,14,26,0.4) 50%, rgba(10,14,26,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 24px; }
.hero-eyebrow {
  display: inline-block; padding: 8px 16px;
  border: 1px solid var(--border-strong); background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
  border-radius: 100px; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px; color: var(--text);
}
.hero h1 { color: var(--heading); margin-bottom: 24px; }
.hero-sub { font-size: 1.2rem; max-width: 640px; color: var(--text-muted); margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-dim); font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--heading); padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--heading); margin-bottom: 20px; position: relative; }
.page-hero .lede { color: var(--text-muted); position: relative; }
.page-hero .container { position: relative; z-index: 1; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-light { background: var(--bg-alt); }
.section-dark { background: var(--bg); }
.section-accent { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header .lede { margin: 0 auto; }

/* ========== SERVICES GRID ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.service-card {
  padding: 36px 28px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: var(--accent);
  background: var(--surface-2);
}
.service-icon { font-size: 2rem; margin-bottom: 20px; }
.link-arrow { color: var(--accent); font-weight: 600; font-size: 0.95rem; }
.link-arrow:hover { color: var(--accent-hover); }

/* ========== PORTFOLIO / GALLERY ========== */
.filter-bar { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 100px; font-weight: 500;
  transition: all 0.2s; font-size: 0.9rem;
}
.filter-btn:hover { background: var(--surface-2); color: var(--heading); border-color: var(--border-strong); }
.filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

.gallery { column-count: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: 8px; overflow: hidden;
  cursor: pointer; position: relative; background: var(--surface);
  transition: transform 0.3s; border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--accent); }
.gallery-item img, .gallery-item video { width: 100%; height: auto; display: block; }
.gallery-item.video-item::before {
  content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; background: rgba(249, 115, 22, 0.85); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; padding-left: 4px; z-index: 2; pointer-events: none;
  backdrop-filter: blur(8px); box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.gallery-item.hidden { display: none; }

/* ========== SERVICE DETAIL ========== */
.service-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.service-detail.reverse .service-detail-text { order: 2; }
.service-detail.reverse .pricing-cards { order: 1; }
.service-detail-text h2 { margin-bottom: 24px; }
.feature-list { margin-top: 24px; }
.feature-list li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--text); }
.feature-list.light li { color: var(--text); }
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}

/* ========== PRICING CARDS ========== */
.pricing-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pricing-card {
  position: relative; padding: 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; transition: all 0.3s;
}
.pricing-card:hover { background: var(--surface-2); border-color: var(--border-strong); }
.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.pricing-card .badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--accent); color: white; padding: 4px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2.2rem; font-weight: 800; color: var(--heading);
  font-family: 'Space Grotesk', sans-serif; margin-bottom: 16px;
}
.pricing-card ul li {
  padding: 8px 0; color: var(--text-muted); font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border: none; }

/* ========== ADDONS ========== */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.addon {
  padding: 24px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; display: flex; gap: 16px; align-items: center;
  transition: all 0.2s;
}
.addon:hover { border-color: var(--accent); background: var(--surface-2); }
.addon span {
  font-weight: 700; color: var(--accent); font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif; flex-shrink: 0;
}
.addon p { margin: 0; font-size: 0.95rem; color: var(--text); }

/* ========== FAQ ========== */
.faq details {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.faq summary {
  font-weight: 600; font-size: 1.05rem; cursor: pointer; padding: 4px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--heading);
}
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-top: 12px; color: var(--text-muted); }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  color: white; text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: white; }
.cta-section p { color: rgba(255,255,255,0.95); font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn-primary { background: var(--bg); color: var(--heading); }
.cta-section .btn-primary:hover { background: var(--heading); color: var(--bg); }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 60px;
}
.contact-card {
  padding: 32px 28px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; text-align: center; transition: all 0.3s;
}
.contact-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: var(--accent); transform: translateY(-2px);
}
.contact-icon { font-size: 2rem; margin-bottom: 16px; }
.contact-link {
  display: inline-block; margin-top: 8px; color: var(--accent);
  font-weight: 600; font-size: 1.05rem; word-break: break-word;
}
.contact-link:hover { color: var(--accent-hover); }
.contact-card .small { font-size: 0.85rem; color: var(--text-dim); margin-top: 12px; }

.contact-cta {
  max-width: 720px; margin: 0 auto 60px; padding: 40px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.contact-cta h2 { margin-bottom: 20px; }
.checklist li { padding: 8px 0 8px 28px; position: relative; color: var(--text); }
.checklist li::before {
  content: '◉'; position: absolute; left: 0; color: var(--accent);
}

.legal-notice {
  max-width: 720px; margin: 0 auto; padding: 32px;
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: 8px;
}
.legal-notice h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--heading); }
.legal-notice p { margin: 0; font-size: 0.95rem; color: var(--text); }
.legal-notice strong { color: var(--heading); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img, .lightbox-content video {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border-radius: 4px;
}
.lightbox-close, .lightbox-nav {
  position: absolute; color: white; font-size: 2rem;
  width: 50px; height: 50px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ========== FOOTER ========== */
.site-footer {
  background: #060912; color: var(--text-muted);
  padding: 60px 0 30px; border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-grid .logo { color: var(--heading); margin-bottom: 16px; }
.footer-about { font-size: 0.9rem; color: var(--text-dim); }
.site-footer h4 { color: var(--heading); }
.site-footer ul li { padding: 5px 0; font-size: 0.9rem; }
.site-footer a { color: var(--text-muted); transition: color 0.2s; }
.site-footer a:hover { color: var(--accent); }

.footer-bottom { padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--text-dim); }
.disclaimer { font-style: italic; }

/* ========== SELECTION & SCROLLBAR ========== */
::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .gallery { column-count: 2; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-text { order: 1; }
  .service-detail.reverse .pricing-cards { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 70px 0; }
}
@media (max-width: 640px) {
  .gallery { column-count: 1; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 24px; }
  .main-nav a.active::after { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}