body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #050505;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 22px 40px;
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(14px);
  z-index: 999;
  box-sizing: border-box;
}

.logo {
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.9;
}

.links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}

.links a {
  font-size: 13px;
  text-decoration: none;
  color: white;
  opacity: 0.5;
  transition: 0.25s ease;
}

.links a:hover {
  opacity: 1;
}

/* HERO / PAGE TITLE */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
}

.hero h1 {
  font-size: 70px;
  letter-spacing: 5px;
  margin: 0;
  font-weight: 500;
}

.hero p {
  margin-top: 18px;
  opacity: 0.55;
  font-size: 15px;
  max-width: 500px;
}

/* PAGE VARIANTS */
.page {
  padding: 140px 10% 80px 10%;
}

.page h1 {
  font-size: 42px;
  letter-spacing: 3px;
}

.page p {
  opacity: 0.6;
  line-height: 1.6;
}

/* subtle fade in */
.hero, .page {
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* section spacing for lists like work/blog */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  transition: 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
}

.cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  padding-left: 10%;
}

.btn {
  padding: 12px 22px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  color: black;
}

.btn.secondary {
  opacity: 0.6;
}

.btn.secondary:hover {
  opacity: 1;
  background: transparent;
}

.page {
  padding: 140px 10% 120px 10%;
  max-width: 1100px;
  margin: 0 auto;
}

.page h1 {
  font-size: 44px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.page p {
  opacity: 0.65;
  font-size: 16px;
  line-height: 1.7;
  max-width: 750px;
}

.page::before {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 20px;
}

section {
  animation: fadeIn 1.2s ease-out;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.film-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.film-info {
  margin-top: 20px;
}

.film-info h2 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.film-info p {
  margin-bottom: 20px;
}

.film-info a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: 0.3s ease;
}

.film-info a:hover {
  border-color: white;
}

.blog-layout {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.featured-post {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 40px;
}

.featured-post h2 {
  font-size: 42px;
  max-width: 800px;
  line-height: 1.1;
}

.blog-post {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.blog-post h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.about-block {
  margin-top: 70px;
  max-width: 800px;
}

.about-block h2 {
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.featured-work {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.featured-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.featured-text {
  max-width: 700px;
}

.featured-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.featured-text span {
  opacity: 0.5;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}
.main-article {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
  max-width: 900px;
}

.article-tag {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.5;
}

.main-article h2 {
  font-size: 52px;
  line-height: 1.05;
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 850px;
}

.article-intro {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 700px;
  margin-bottom: 40px;
}

.main-article a {
  text-decoration: none;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  transition: 0.3s ease;
}

.main-article a:hover {
  border-color: white;
}
