:root {
  --bg: #090909;
  --bg-soft: #101010;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.07);
  --text: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.74);
  --line: rgba(255,255,255,0.1);
  --gold: #d2b079;
  --gold-soft: rgba(210,176,121,0.16);
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(43,43,43,0.35), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  font-family: 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  backdrop-filter: blur(14px);
  background: rgba(6,6,6,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand,
.nav a,
.hero-subtitle,
.eyebrow,
.section-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.86rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 0.76rem;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.7)), url('https://static.wixstatic.com/media/5d0a33_a643ae68844c4801ac7e5964065fbc88~mv2.jpg/v1/fill/w_980%2Ch_671%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/5d0a33_a643ae68844c4801ac7e5964065fbc88~mv2.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55) 50%, rgba(9,9,9,0.96) 100%),
    radial-gradient(circle at center, transparent 10%, rgba(0,0,0,0.22) 70%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 120px 0 70px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.73rem;
  margin: 0 0 18px;
}

.hero h1,
.announcement h2,
.feature-band h2,
.about-copy h2,
.services-header h2,
.contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  margin: 0;
}

.hero-subtitle {
  margin: 18px 0 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
}

.hero-email {
  display: inline-block;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.hero-actions,
.field-row {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #14110c; }
.btn-secondary { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.text-link { color: var(--gold); }
.muted { color: var(--muted); }

.announcement,
.feature-band,
.about-section,
.services-section {
  padding: 84px 0;
}

.announcement-card,
.reel-card,
.service-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.announcement-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  border-radius: 28px;
  padding: 24px;
}

.announcement-card img,
.poster-card img,
.about-large,
.about-small-grid img {
  border-radius: 20px;
  object-fit: cover;
}

.announcement-card img { aspect-ratio: 1 / 1; }
.announcement-copy h2,
.feature-band h2,
.about-copy h2,
.services-header h2,
.contact-copy h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); margin: 0 0 18px; }
.announcement-copy p { color: var(--muted); max-width: 60ch; }
.announcement-copy span { color: var(--gold); }

.feature-band-header,
.services-header,
.contact-grid,
.about-grid {
  display: grid;
  gap: 26px;
}

.feature-band-header {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  margin-bottom: 32px;
}

.reel-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 26px;
}

.reel-poster {
  min-height: 360px;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.55)), url('https://static.wixstatic.com/media/11062b_9b292a91e9104829834121f390a5ef84~mv2.jpg/v1/fill/w_980%2Ch_693%2Cal_c%2Cq_85%2Cusm_0.66_1.00_0.01%2Cenc_avif%2Cquality_auto/11062b_9b292a91e9104829834121f390a5ef84~mv2.jpg');
  background-size: cover;
  background-position: center center;
}

.reel-copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reel-copy h3,
.poster-copy h3,
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.reel-copy p,
.poster-copy p,
.service-card p,
.about-copy p,
.contact-copy p,
.festival-strip p {
  color: var(--muted);
  line-height: 1.7;
}

.poster-grid,
.services-grid {
  display: grid;
  gap: 22px;
}

.poster-grid { grid-template-columns: repeat(3, 1fr); }
.poster-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.poster-card img { aspect-ratio: 0.78; }
.poster-copy { padding: 20px; }

.festival-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(210,176,121,0.08), rgba(255,255,255,0.02), rgba(210,176,121,0.08));
}
.festival-strip .container { padding: 28px 0; }
.festival-strip p { margin: 0; font-size: 1rem; text-align: center; }

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.about-images { display: grid; gap: 20px; }
.about-large { aspect-ratio: 1.25; }
.about-small-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-small-grid img { aspect-ratio: 0.74; }

.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.contact-section {
  padding: 84px 0 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
  border-top: 1px solid var(--line);
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
}

label { display: grid; gap: 8px; }
label span { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(210,176,121,0.7);
  box-shadow: 0 0 0 3px rgba(210,176,121,0.12);
}

.footer {
  padding: 28px 0 42px;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .poster-grid,
  .services-grid,
  .about-grid,
  .contact-grid,
  .feature-band-header,
  .reel-card {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid,
  .about-grid,
  .feature-band-header,
  .reel-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar {
    padding: 16px 18px;
    flex-direction: column;
    gap: 14px;
  }

  .nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-actions,
  .field-row,
  .announcement-card,
  .poster-grid,
  .services-grid,
  .about-small-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-email { font-size: 0.95rem; }
  .announcement-card { padding: 18px; }
  .announcement-card img { max-width: 220px; margin: 0 auto; }
  .contact-form { padding: 20px; }
  .btn { width: 100%; }
}
