* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #FAF6EE; font-family: Georgia, serif; }

.nav-top {
  background: #FAF6EE;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 24px 12px; gap: 14px;
  border-bottom: 0.5px solid #E8E0D0;
}
.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; letter-spacing: 0.28em; color: #1A1208; font-weight: 300;
}
.nav-bottom {
  background: #FAF6EE;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; padding: 10px 24px 14px;
  border-bottom: 1px solid #D8D0BE;
}
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #3A2A18; font-weight: 300; cursor: pointer; text-decoration: none;
}

.hero {
  position: relative; height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-bg video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%); object-fit: cover;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(28, 24, 18, 0.45); z-index: 1;
}
.hero-card {
  position: relative; z-index: 2;
  background: rgba(250,246,238,0.78);
  border: 1px solid rgba(200,147,58,0.40);
  padding: 44px 48px; text-align: center;
  min-width: 280px; max-width: 480px; width: 90%;
  backdrop-filter: blur(2px);
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #C8933A; line-height: 1.4; font-weight: 700;
}
.hero-rule { width: 50px; height: 0.5px; background: #C8933A; margin: 16px auto; opacity: 0.55; }
.hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-style: italic; color: #6A4820; line-height: 1.8; font-weight: 300;
}

.pillars {
  background: #1C1812;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(200,147,58,0.3);
}
.pillar {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(200,147,58,0.2);
}
.pillar:last-child { border-right: none; }
.pillar-title {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #C8933A; margin-bottom: 14px; font-weight: 400;
}
.pillar-rule { width: 32px; height: 1px; background: #C8933A; margin: 0 auto 14px; opacity: 0.6; }
.pillar-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px; font-style: italic;
  color: rgba(250,246,238,0.65); line-height: 1.8; font-weight: 300;
}

/* FEATURED FILM */
.featured-section {
  background: #0D0A08;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #C8933A;
  margin-bottom: 12px;
  font-weight: 400;
  text-align: center;
}
.featured-rule {
  width: 36px; height: 0.5px;
  background: #C8933A;
  margin: 0 auto 40px;
  opacity: 0.5;
}
.featured-film-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #0D0A08;
  overflow: hidden;
  cursor: pointer;
}
.featured-film-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.featured-film-wrap:hover video { opacity: 1; }
.featured-film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
}
.featured-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 1px solid rgba(200,147,58,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(13,10,8,0.4);
}
.featured-film-wrap:hover .featured-play-btn {
  border-color: #C8933A;
  background: rgba(200,147,58,0.15);
}
.featured-play-btn svg { margin-left: 4px; }
.featured-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8933A;
  margin-bottom: 10px;
}
.featured-film-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  color: #FAF6EE;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
.featured-film-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: rgba(250,246,238,0.6);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}
.featured-film-tags {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.featured-film-tag {
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,147,58,0.65);
  border: 0.5px solid rgba(200,147,58,0.25);
  padding: 4px 10px;
}
@media (max-width: 768px) {
  .featured-section { padding: 48px 20px; }
  .featured-film-title { font-size: 28px; }
  .featured-film-overlay { padding: 24px 20px; }
  .featured-film-desc { font-size: 13px; }
}


/* GALLERY */
.gallery-section { background: #F5F0E8; padding: 72px 24px 100px; }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: #C8933A; margin-bottom: 10px; font-weight: 400;
}
.gallery-rule { width: 36px; height: 0.5px; background: #C8933A; margin: 0 auto 24px; opacity: 0.5; }
.gallery-filters { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  font-family: 'Jost', sans-serif; font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #7A6040; background: transparent;
  border: 0.5px solid rgba(200,147,58,0.5);
  padding: 8px 20px; cursor: pointer;
  transition: all 0.25s ease; font-weight: 300;
}
.filter-btn:hover, .filter-btn.active {
  background: #C8933A; color: #1C1812; border-color: #C8933A;
}

/* Masonry — 3 col desktop */
.masonry-grid { column-count: 3; column-gap: 8px; max-width: 1140px; margin: 36px auto 0; }
.masonry-item {
  break-inside: avoid; margin-bottom: 8px;
  position: relative; overflow: hidden; cursor: pointer;
  background: #1C1812; display: block;
}
.masonry-item.hidden { display: none; }
.masonry-placeholder {
  width: 100%;
  background: linear-gradient(160deg, #2C2016 0%, #1C1812 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-style: italic;
  color: rgba(200,147,58,0.18);
  transition: transform 0.6s ease; text-align: center; padding: 20px;
}
.masonry-item:hover .masonry-placeholder { transform: scale(1.03); }
.masonry-item img {
  width: 100%; height: auto; display: block;
  transition: transform 0.6s ease, opacity 0.4s ease; opacity: 0.82;
}
.masonry-item:hover img { transform: scale(1.04); opacity: 1; }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,12,6,0.92) 0%, rgba(18,12,6,0.05) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px 18px; opacity: 0; transition: opacity 0.3s ease;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-cat {
  font-family: 'Jost', sans-serif; font-size: 8px;
  letter-spacing: 0.28em; text-transform: uppercase; color: #C8933A; margin-bottom: 4px;
}
.masonry-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px; color: #FAF6EE; font-style: italic; font-weight: 300; line-height: 1.3;
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(12,9,6,0.97); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 820px; width: 100%;
  background: #1C1812; border: 0.5px solid rgba(200,147,58,0.25); margin: auto;
}
.lightbox-close {
  position: absolute; top: -30px; right: 0;
  font-family: 'Jost', sans-serif; font-size: 9.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250,246,238,0.45); cursor: pointer;
  background: none; border: none; transition: color 0.2s; padding: 4px 0;
}
.lightbox-close:hover { color: #C8933A; }
.lightbox-media { width: 100%; background: #0D0A08; overflow: hidden; }
.lightbox-media video { width: 100%; display: block; max-height: 420px; }
.lightbox-media img { width: 100%; display: block; max-height: 420px; object-fit: contain; }
.lightbox-coming {
  padding: 50px 32px; font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; color: rgba(250,246,238,0.25); font-size: 18px; text-align: center;
}
.lightbox-info { padding: 20px 24px 24px; border-top: 0.5px solid rgba(200,147,58,0.15); }
.lightbox-cat {
  font-family: 'Jost', sans-serif; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: #C8933A; margin-bottom: 6px;
}
.lightbox-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; color: #FAF6EE; font-style: italic; font-weight: 300; margin-bottom: 10px;
}
.lightbox-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px; color: rgba(250,246,238,0.55); line-height: 1.85; font-weight: 300;
}
.lightbox-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 5px; }
.lightbox-tag {
  font-family: 'Jost', sans-serif; font-size: 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200,147,58,0.65); border: 0.5px solid rgba(200,147,58,0.25); padding: 4px 10px;
}



/* ── CONTACT ── */
.contact-section {
  background: #FAF6EE;
  padding: 100px 40px;
  border-top: 1px solid #E8E0D0;
}
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #C8933A;
  margin-bottom: 10px;
  font-weight: 400;
}
.contact-rule {
  width: 36px;
  height: 0.5px;
  background: #C8933A;
  margin: 0 auto 28px;
  opacity: 0.5;
}
.contact-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 300;
  color: #1C1812;
  line-height: 1.4;
  margin-bottom: 16px;
}
.contact-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  color: #7A6040;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-link {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1C1812;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(200,147,58,0.5);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 300;
}
.contact-link:hover {
  color: #C8933A;
  border-color: #C8933A;
}
.contact-footer {
  margin-top: 64px;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58,42,24,0.35);
}
/* ── ABOUT ── */
.about-section {
  background: #1C1812;
  padding: 100px 40px;
  border-top: 1px solid rgba(200,147,58,0.2);
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #C8933A;
  margin-bottom: 10px;
  font-weight: 400;
}
.about-rule {
  width: 36px;
  height: 0.5px;
  background: #C8933A;
  margin: 0 auto 44px;
  opacity: 0.5;
}
.about-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: #FAF6EE;
  line-height: 1.5;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.about-headline em {
  color: #C8933A;
  font-style: italic;
}
.about-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  color: rgba(250,246,238,0.6);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 24px;
}
.about-body + .about-body {
  margin-top: 0;
}
.about-divider {
  width: 24px;
  height: 0.5px;
  background: rgba(200,147,58,0.4);
  margin: 36px auto;
}
.about-sign {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(200,147,58,0.7);
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-brand { font-size: 13px; letter-spacing: 0.18em; }
  .nav-bottom { gap: 24px; }
  .hero { height: 500px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .hero-card { padding: 32px 28px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(200,147,58,0.2); padding: 32px 24px; }
  .pillar:last-child { border-bottom: none; }
  .masonry-grid { column-count: 2; column-gap: 6px; }
  .masonry-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .nav-top { padding: 14px 16px 10px; gap: 8px; }
  .nav-bottom { gap: 16px; padding: 8px 16px 12px; }
  .nav-link { font-size: 9px; letter-spacing: 0.14em; }
  .nav-brand { font-size: 11px; letter-spacing: 0.16em; }
  .hero { height: 85vh; }
  .hero-title { font-size: 20px; letter-spacing: 0.08em; }
  .hero-sub { font-size: 13px; }
  .hero-card { padding: 22px 18px; min-width: unset; width: 90%; }
  .masonry-grid { column-count: 1; }
  .gallery-section { padding: 48px 14px 64px; }
  .filter-btn { padding: 7px 14px; font-size: 8.5px; }
  .masonry-overlay { opacity: 1; }
  .masonry-title { font-size: 14px; }
  .lightbox { padding: 0; align-items: flex-start; overflow-y: auto; }
  .lightbox-inner { max-width: 100%; min-height: 100vh; border: none; }
  .lightbox-close { top: 14px; right: 14px; position: fixed; background: rgba(18,12,6,0.85); padding: 6px 12px; z-index: 10; }
  .lightbox-media video { max-height: 240px; }
  .lightbox-media img { max-height: 280px; }
  .lightbox-info { padding: 18px 20px 32px; }
  .lightbox-title { font-size: 20px; }
  .lightbox-desc { font-size: 13.5px; }
}
