/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #141210;
  --black-light: #1e1b17;
  --white: #f0ebe3;
  --accent: #c8a96e;
  --accent-dim: rgba(200,169,110,0.25);
  --gray: #9a9490;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Avenir', 'Avenir Next', 'Helvetica Neue', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 3rem;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(18,16,14,0.8), transparent);
  transition: background 1.2s ease, box-shadow 1.2s ease;
}

.nav--scrolled {
  background: rgba(20, 18, 16, 0.75);
  box-shadow: none;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 115px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav__links a:hover {
  opacity: 1;
  color: var(--accent);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(20, 18, 16, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 99;
  transition: right 0.4s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.mobile-menu a:hover {
  opacity: 1;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   HERO — Cinematic letterbox
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-native {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Fallback for Vimeo iframe background (Squarespace) */
.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero__play-btn:hover {
  color: var(--accent);
  transform: scale(1.3);
}

.hero__play-btn svg {
  width: 64px;
  height: 64px;
}

/* ── Video Lightbox ──────────────────── */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  opacity: 0.6;
  transition: opacity 0.3s;
  line-height: 1;
}

.video-lightbox__close:hover {
  opacity: 1;
}

.video-lightbox__content {
  width: 90%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-lightbox__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   CLIENT LOGO MARQUEE
═══════════════════════════════════════════════ */
.marquee {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--accent-dim);
  border-bottom: 1px solid var(--accent-dim);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 70s linear infinite;
}

.marquee__track a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.7;
  filter: sepia(100%) hue-rotate(15deg) saturate(60%) brightness(1.1);
  transition: opacity 0.4s, filter 0.4s;
}

.marquee__logo:hover {
  opacity: 1;
  filter: none;
}

/* Dark logos need inversion before gold tint */
.marquee__logo--invert {
  filter: invert(1) contrast(1.5) sepia(100%) hue-rotate(15deg) saturate(60%) brightness(1.1);
  mix-blend-mode: screen;
}
.marquee__logo--invert:hover {
  filter: invert(1) brightness(1.2);
  mix-blend-mode: screen;
}

/* Square/portrait logos need minimum width to not appear tiny */
.marquee__logo--wide {
  height: 65px;
}

/* Per-logo size overrides */
.marquee__logo[alt="Veuve Clicquot"]   { height: 75px; }
.marquee__logo[alt="Groth Vineyards"]  { height: 55px; }
.marquee__logo[alt="Hennessy"]         { height: 75px; }
.marquee__logo[alt="SingleThread Farm"] { height: 55px; }
.marquee__logo[alt="JR Davis"]         { height: 50px; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   CATEGORY CARDS — Blurred images that reveal on hover
═══════════════════════════════════════════════ */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 50vh;
}

.categories__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 45vh;
  display: block;
}

.categories__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.5);
  transform: scale(1.1);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.categories__card:hover .categories__img {
  filter: blur(0px) brightness(0.7);
  transform: scale(1.05);
}

.categories__info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.categories__info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.categories__card:hover .categories__info h2 {
  transform: translateY(0);
}

.categories__info p {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

.categories__card:hover .categories__info p {
  opacity: 0.8;
}

.categories__link {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}

.categories__card:hover .categories__link {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   FEATURED VIDEOS GRID
═══════════════════════════════════════════════ */
.featured {
  padding: 4rem 3rem;
}

.featured__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured__item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-top: 0.7rem;
}

.featured__item p {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* featured video wraps removed — now uses project-card pattern */

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  padding: 4rem 3rem;
  border-top: 1px solid var(--accent-dim);
}

.about__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  color: var(--accent);
}

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  padding: 4rem 3rem;
  text-align: center;
}

.contact__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact__subtext {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact__email {
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.contact__email:hover {
  opacity: 0.7;
}

.contact__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact__social a {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.contact__social a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   CATEGORY PAGE — Banner
═══════════════════════════════════════════════ */
.category-banner {
  position: relative;
  height: clamp(260px, 38vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.category-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.category-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.category-banner__content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.2em;
}

.category-banner__content p {
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── Category Page Navigation ──────────────────── */
.category-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
}

.category-nav__link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.category-nav__link:hover {
  color: var(--accent);
}

/* Inline nav arrows inside banner */
.category-nav--inline {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: 100%;
  padding: 0 2rem;
}

.category-nav--inline .category-nav__link {
  color: rgba(240,235,227,0.55);
  font-size: 1.3rem;
}

.category-nav--inline .category-nav__link:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   CATEGORY PAGE — Video/Project Card Grid (blur style)
═══════════════════════════════════════════════ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--black-light);
}

.project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transform: scale(1.03);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.project-card:hover .project-card__bg {
  filter: blur(3px) brightness(0.5);
  transform: scale(1.08);
}

.project-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.project-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.project-card__meta {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__meta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-card__meta a:hover {
  opacity: 0.7;
}

.project-card__desc {
  font-size: 0.7rem;
  color: rgba(240,235,227,0.65);
  line-height: 1.5;
  margin: 0.25rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}

.project-card__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 4px;
}

.project-card:hover .project-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Trailer button — appears on hover next to play */
.project-card__trailer-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(28px, -50%) scale(0.8);
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
}

.project-card__trailer-btn::before {
  content: 'T';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

.project-card:hover .project-card__trailer-btn {
  opacity: 1;
  transform: translate(28px, -50%) scale(1);
}

.project-card__trailer-btn:hover {
  border-color: var(--accent);
  background: rgba(200,169,110,0.2);
}

.project-card__trailer-btn:hover::before {
  color: var(--accent);
}

/* Expanded video player overlay */
.project-card__player {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #000;
}

.project-card__player.active {
  display: block;
}

.project-card__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   CATEGORY PAGE — Brand Section Headers
═══════════════════════════════════════════════ */
.brand-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.brand-section__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 3rem 0 0.5rem;
  border-bottom: 1px solid var(--accent-dim);
  margin-bottom: 0;
  opacity: 0.85;
}

.brand-section + .project-grid {
  padding-top: 0.75rem;
}

/* ═══════════════════════════════════════════════
   NARRATIVE PAGE — Poster Grid
═══════════════════════════════════════════════ */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
}

.poster-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 2 / 3;
  background: var(--black-light);
  transition: transform 0.3s;
}

.poster-card:hover {
  transform: translateY(-5px);
}

.poster-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s;
}

.poster-card:hover .poster-card__img {
  filter: brightness(0.6);
}

.poster-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}

.poster-card:hover .poster-card__info {
  transform: translateY(0);
  opacity: 1;
}

.poster-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.poster-card__role {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poster-card__links {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.8rem;
}

.poster-card__links a {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.poster-card__links a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   DOCUMENTARY PAGE — Side-by-side layout
═══════════════════════════════════════════════ */
.doc-project {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  align-items: center;
}

.doc-project__video .project-card {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.doc-project__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.doc-project__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1rem;
}

.doc-project__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.doc-project__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.doc-project__meta a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}

.doc-project__meta a:hover {
  color: var(--accent);
}

.doc-project__trailer-link {
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 1px;
}

@media (max-width: 768px) {
  .doc-project {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
  }
}

.stills-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 2.35 / 1;
}

.stills-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}

.stills-carousel__slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
}

.stills-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stills-carousel:hover .stills-carousel__arrow {
  opacity: 1;
}

.stills-carousel__arrow--left { left: 8px; }
.stills-carousel__arrow--right { right: 8px; }

.stills-carousel__arrow:hover {
  background: rgba(200,169,110,0.6);
}

/* ═══════════════════════════════════════════════
   WORKSHOPS PAGE
═══════════════════════════════════════════════ */
.workshop-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.workshop-intro__subhead {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.workshop-intro__focus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.workshop-intro__badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--accent);
  padding: 0.3rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.workshop-intro__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.workshop-intro__desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Workshop Content Sections ──────── */
/* Workshop Details / Pricing */
.workshop-details {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  text-align: center;
}

.workshop-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.workshop-details__card {
  background: var(--black-light);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 1.5rem 1rem;
}

.workshop-details__card--highlight {
  border-color: var(--accent);
  position: relative;
}

.workshop-details__card--highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.75rem;
  border-radius: 3px;
}

.workshop-details__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.workshop-details__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.workshop-details__card--highlight .workshop-details__price {
  color: var(--accent);
}

.workshop-details__note {
  font-size: 0.8rem;
  color: var(--gray);
}

.workshop-details__deadline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.workshop-cta__spots {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .workshop-details__grid { grid-template-columns: 1fr; }
}

.workshop-features {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

.workshop-features__heading,
.workshop-curriculum__heading,
.workshop-location__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.workshop-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.workshop-features__card {
  background: var(--black-light);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}

.workshop-features__card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.workshop-features__card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

.workshop-curriculum {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  border-top: 1px solid var(--accent-dim);
}

.workshop-curriculum__sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.workshop-curriculum__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.workshop-curriculum__item {
  font-size: 0.9rem;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--accent-dim);
  letter-spacing: 0.02em;
}

.workshop-location {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem;
  text-align: center;
  border-top: 1px solid var(--accent-dim);
}

.workshop-location__desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Workshop Host ──────────────────── */
.workshop-host {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  border-top: 1px solid var(--accent-dim);
}

.workshop-host__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.workshop-host__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.workshop-host__photo img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.workshop-host__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.workshop-host__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.workshop-host__text {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.workshop-host__reel {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.workshop-host__reel:hover {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .workshop-host__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .workshop-host__photo img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ── Workshop FAQ ──────────────────── */
.workshop-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  border-top: 1px solid var(--accent-dim);
}

.workshop-faq__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.workshop-faq__item {
  border-bottom: 1px solid var(--accent-dim);
}

.workshop-faq__item summary {
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.workshop-faq__item summary:hover {
  color: var(--accent);
}

.workshop-faq__item summary::-webkit-details-marker {
  display: none;
}

.workshop-faq__item summary::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.workshop-faq__item[open] summary::after {
  content: '−';
}

.workshop-faq__item p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  padding: 0 0 1rem;
}

.workshop-cta {
  text-align: center;
  padding: 2rem 2rem 4rem;
}

.workshop-cta__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.workshop-cta__btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 0.75rem 3rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
}

.workshop-cta__btn:hover {
  background: #d4b87a;
  transform: translateY(-1px);
}

.workshop-form__sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .workshop-features__grid {
    grid-template-columns: 1fr;
  }
  .workshop-curriculum__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Workshop Form ──────────────────── */
.workshop-form-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.workshop-form__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent);
}

.workshop-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.workshop-form__section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent-dim);
}

.workshop-form__section-title:first-child {
  margin-top: 0;
}

.workshop-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.workshop-form__field--full {
  grid-column: 1 / -1;
}

.workshop-form__field label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.workshop-form__field input,
.workshop-form__field select,
.workshop-form__field textarea {
  background: var(--black-light);
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.workshop-form__field input::placeholder,
.workshop-form__field textarea::placeholder {
  color: var(--gray);
  opacity: 0.5;
}

.workshop-form__field input:focus,
.workshop-form__field select:focus,
.workshop-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.workshop-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9490' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.workshop-form__field select option {
  background: var(--black-light);
  color: var(--white);
}

.workshop-form__submit {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.workshop-form__submit:hover {
  background: #d4b87a;
  transform: translateY(-1px);
}

@media (max-width: 500px) {
  .workshop-form__grid {
    grid-template-columns: 1fr;
  }
}

/* Thank You page */
.workshop-thanks {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.workshop-thanks__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.workshop-thanks__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.workshop-thanks__text {
  max-width: 480px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
}

.workshop-thanks__link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.6rem 2rem;
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
}

.workshop-thanks__link:hover {
  background: rgba(200,169,110,0.1);
  border-color: var(--accent);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-top: 1px solid var(--accent-dim);
  font-size: 0.8rem;
  color: var(--gray);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: var(--gray);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    height: 50vh;
    min-height: 250px;
  }

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

  .categories__card {
    min-height: 35vh;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo-img {
    height: 80px;
  }

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

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

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

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav--scrolled {
    background: rgba(20, 18, 16, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .featured {
    padding: 4rem 1.5rem;
  }

  .about,
  .contact {
    padding: 4rem 1.5rem;
  }

  .project-grid,
  .poster-grid {
    padding: 3rem 1.5rem;
  }

  .brand-section {
    padding: 0 1.5rem;
  }

  .hero__play-btn {
    width: 48px;
    height: 48px;
  }

  .hero__play-btn svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 500px) {
  .hero {
    height: 40vh;
  }

  .nav__logo-img {
    height: 65px;
  }

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

  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .marquee__logo {
    height: 26px;
  }

  .categories__card {
    min-height: 28vh;
  }

  .footer__social {
    gap: 1rem;
    font-size: 0.7rem;
  }

  .about__text {
    font-size: 0.95rem;
  }
}
