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

:root {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  background-color: #0a0a0a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #ffffff;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header img {
  height: 40px;
  width: auto;
}

.logo {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #ffffff;
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.btn {
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-solid {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-solid:hover {
  background: #ffffff;
  color: #0a0a0a;
}

section {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 80px;
  color: #ffffff;
}

/* ===== ABOUT CINEMATIC ===== */

.about-cinematic {
  padding: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wrapper {
  
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 96px;
}

.about-visual {
  height: 80vh;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1s ease, filter 0.5s ease;
}

.about-visual img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.about-info {
  max-width: 520px;
  padding-right: 64px;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 48px;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.about-description.muted {
  color: rgba(255, 255, 255, 0.6);
}


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

.service-card {
  text-align: center;
}

.service-title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #ffffff;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  margin-bottom: 24px;
}

.service-card img:hover {
  filter: grayscale(0%);
}

.service-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

 .project-card img,
 .project-card video,
 .project-card .project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
  display: block;
 }

 .project-card:hover img,
 .project-card:hover video,
 .project-card:hover .project-video {
  filter: grayscale(0%);
  transform: scale(1.05);
 }

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.project-category {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
}

.philosophy {
  text-align: center;
}

.philosophy-text {
  font-size: 1.3rem;
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.form-input {
  padding: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-bottom-color: #ffffff;
}

.form-message {
  margin-top: 24px;
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.show {
  opacity: 1;
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #ef4444;
}

.footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

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

  .about-info {
    padding-right: 0;
    text-align: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 48px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 16px 0;
  }

  .logo {
    font-size: 1rem;
  }

  .hero {
    height: 80vh;
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
    max-width: none;
  }

  .about-cinematic {
    min-height: auto;
    padding: 60px 0;
  }

  .about-wrapper {
    gap: 24px;
  }

  .about-visual {
    height: 40vh;
  }

  .about-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .about-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card img {
    height: 180px;
  }

  .service-title {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .projects-grid {
    gap: 20px;
  }

  .project-card {
    height: 250px;
  }

  .project-overlay {
    padding: 20px;
  }

  .project-category {
    font-size: 0.75rem;
  }

  .project-title {
    font-size: 1.2rem;
  }

  .philosophy-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .form-row {
    gap: 12px;
    margin-bottom: 20px;
  }

  .form-input {
    padding: 10px;
    font-size: 0.85rem;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer p {
    font-size: 0.8rem;
  }
}

