:root {
  --ink: #0c0b08;
  --sand: #f3efe6;
  --gold: #c5a76a;
  --navy: #2a2d3e;
  --navy-dark: #202333;
  --glass: rgba(12, 11, 8, 0.45);
  --max-width: 1120px;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--sand);
  background: var(--navy-dark);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 6vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
  padding: 24px 6vw;
  background: linear-gradient(180deg, rgba(21, 22, 34, 0.85) 0%, rgba(21, 22, 34, 0) 100%);
  backdrop-filter: blur(6px);
}

.logo {
  display: none;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  opacity: 0.7;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}

.nav-links a:hover {
  opacity: 1;
  border-color: rgba(243, 239, 230, 0.5);
}

.nav-links a.is-active {
  color: var(--gold);
  opacity: 1;
  border-color: var(--gold);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05) brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 20, 0.25) 0%,
    rgba(10, 11, 20, 0.2) 45%,
    rgba(10, 11, 20, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 0;
  text-align: center;
  flex: 1;
  padding: 7vh 0 10vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 0.6rem;
  color: rgba(243, 239, 230, 0.7);
}

.hero-topline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.hero-content h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.7);
}

.hero-mark {
  margin-top: auto;
  margin-bottom: 2vh;
  font-family: "Satisfy", cursive;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.02em;
  color: #f2d4a4;
  text-transform: none;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

main {
  background: var(--navy);
  color: var(--sand);
}

.about {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 90px 6vw 100px;
  align-items: stretch;
  text-align: left;
}

.about-media {
  border-radius: 0;
  overflow: hidden;
  background: #111;
  min-height: 620px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--sand);
  padding-top: 6px;
  align-items: center;
  text-align: center;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
}

.about-content p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-head .eyebrow {
  letter-spacing: 0.12em;
  font-size: clamp(0.85rem, 1.05vw, 1.05rem);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.work {
  padding: 0 0 60px;
}

.work-page {
  background: var(--navy);
  color: var(--sand);
  min-height: 100vh;
}

.work-header {
  min-height: 120px;
}

.work-gallery {
  padding: 120px 0 80px;
}

.work-gallery .video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-gallery .video-card {
  background: transparent;
}

.work-gallery .embed-tile {
  aspect-ratio: 16 / 9;
}

.work-gallery .video-caption {
  bottom: 20px;
  left: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  background: #111;
}

.embed-tile {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0f;
}

.embed-tile img,
.embed-tile iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.embed-tile iframe {
  border: 0;
}

.embed-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.video-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
  pointer-events: none;
}

.video-caption h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.video-caption p {
  font-size: 0.7rem;
  opacity: 0.8;
}

.work-cta {
  background: var(--navy);
  padding: 30px 6vw 0;
  text-align: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 4px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  display: inline-block;
}

.btn.dark {
  background: #2f3346;
  color: var(--sand);
}

.contact {
  background: #f2f2f2;
  color: #1b1b1b;
  padding: 70px 6vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact h2 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-location {
  margin-bottom: 24px;
}

.contact-block {
  margin-bottom: 18px;
}

.contact-block h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.imdb-grid {
  background: #e7e7eb;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.imdb-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1b1b1b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.imdb-thumb {
  background: transparent;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imdb-thumb img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.imdb-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.imdb-meta h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.imdb-info {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
}

.imdb-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
}

.imdb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn.follow {
  align-self: center;
  background: var(--gold);
  color: #1a1a1a;
}

.footer {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 30px 6vw 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #2f3346;
  color: var(--sand);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 9;
}

.back-top:hover {
  background: #3a3f55;
}

@media (max-width: 1000px) {
  .about {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .imdb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-gallery .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 120px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
    padding: 18px 6vw;
  }

  .hero-content {
    margin-top: 0;
    padding: 9vh 0 14vh;
  }

  .hero-mark {
    margin-top: auto;
    margin-bottom: 2vh;
    font-size: clamp(3rem, 14vw, 6rem);
  }

  .back-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

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

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}

