* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0F1115;
  color: #F5F7FF;
  line-height: 1.6;
}
a {
  color: #2DE2E6;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #111B2E;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1C2333;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  height: 50px;
}
.nav-toggle {
  display: none;
}
.main-nav {
  display: flex;
  gap: 20px;
}
.main-nav a {
  color: #F5F7FF;
  font-weight: 600;
}
.burger {
  display: none;
  font-size: 24px;
  color: #F5F7FF;
  cursor: pointer;
}
.nav-close {
  display: none;
}
.hero {
  padding: 80px 0;
  background: linear-gradient(120deg, #0F1115, #111B2E);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  font-size: 40px;
  margin-bottom: 16px;
}
.hero-text p {
  margin-bottom: 16px;
  color: #7A8190;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #7C3AED;
  color: #F5F7FF;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
}
.btn-secondary {
  background: #2DE2E6;
  color: #0F1115;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
}
.responsive-img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.showreel, .services-preview, .process, .studio, .faq, .contact-form-section,
.page-hero, .about-story, .values, .equipment, .timeline, .about-cta,
.services-list, .services-media, .deliverables, .service-gallery, .services-cta,
.contact-info, .contact-hours, .contact-next, .thank-you-details, .legal-content {
  padding: 70px 0;
}
.showreel p, .services-preview p, .studio p, .about-story p, .equipment p, .services-media p, .contact-info p {
  color: #7A8190;
}
.media-grid, .studio-grid, .about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #111B2E;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #1C2333;
}
.card h3 {
  margin-bottom: 10px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step {
  background: #111B2E;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #1C2333;
}
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-list details {
  background: #111B2E;
  border: 1px solid #1C2333;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 10px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #1C2333;
  background: #0F1115;
  color: #F5F7FF;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.deliverables-list {
  list-style: disc;
  margin-left: 20px;
  color: #7A8190;
}
.site-footer {
  background: #111B2E;
  padding: 40px 0 20px;
  margin-top: 40px;
  color: #F5F7FF;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.footer-logo {
  height: 100px;
  margin-bottom: 10px;
}
.footer-menu a {
  display: block;
  margin-bottom: 6px;
  color: #F5F7FF;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #7A8190;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111B2E;
  border-top: 1px solid #1C2333;
  padding: 16px;
  display: none;
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.summary-box {
  background: #111B2E;
  border: 1px solid #1C2333;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .hero-grid, .media-grid, .studio-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .image-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #0F1115;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
  }
  .nav-toggle:checked + .main-nav {
    transform: translateY(0);
  }
  .burger {
    display: block;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #F5F7FF;
    cursor: pointer;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 30px;
  }
  .cta-row {
    flex-direction: column;
  }
}