﻿/* =============================================
   GREEN DOG FILMS — CSS CINEMATOGRÁFICO
   v3.0 — Film industry premium design system
   ============================================= */

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --gdf-green:         #0ace3a;
  --gdf-black:         #030303;
  --gdf-black-2:       #080808;
  --gdf-surface:       #101010;
  --gdf-white:         #ffffff;
  --gdf-muted:         rgba(255,255,255,.62);
  --gdf-line:          rgba(255,255,255,.12);
  --gdf-heading-font:  'Bebas Neue', 'Oswald', 'Roboto Condensed', sans-serif;
  --gdf-body-font:     'Poppins', Arial, sans-serif;

  /* ── Layout system ──────────────────────────
     --gdf-page-padding : lateral breathing room (overridden at breakpoints)
     --gdf-content-max  : text/content column cap
     --gdf-wide-max     : carousel/grid cap                                  */
  --gdf-page-padding: clamp(24px, 6vw, 120px);
  --gdf-content-max:   1320px;
  --gdf-wide-max:      1480px;

  /* ── Motion tokens ──────────────────────────── */
  --gdf-ease-out:    cubic-bezier(.25,.46,.45,.94);
  --gdf-ease-spring: cubic-bezier(.34,1.36,.64,1);
  --gdf-dur-fast:    180ms;
  --gdf-dur-base:    260ms;
  --gdf-dur-slow:    420ms;
}

/* Layout — responsive padding breakpoints */
@media (max-width: 1280px) {
  :root { --gdf-page-padding: clamp(32px, 5vw, 80px); }
}
@media (max-width: 575px) {
  :root { --gdf-page-padding: 22px; }
}

/* ── BASE ───────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
  font-family: var(--gdf-body-font);
  background: var(--gdf-black);
  color: var(--gdf-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.gdf-display-title {
  font-family: var(--gdf-heading-font);
  letter-spacing: .04em;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { color: var(--gdf-green); }

img { max-width: 100%; height: auto; }

::selection {
  background: rgba(10,206,58,.28);
  color: #fff;
}

/* ── SITE WRAPPER ───────────────────────────── */
.gdf-site {
  position: relative;
  background: var(--gdf-black);
}

.gdf-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mix-blend-mode: overlay;
}

/* ── HEADER ─────────────────────────────────── */
.gdf-site-header {
  position: absolute;
  inset: 0 0 auto 0;
  height: 96px;
  z-index: 100;
  padding: 32px var(--gdf-page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s ease, box-shadow .35s ease;
  background-color: transparent;
}

.gdf-site-header.is-scrolled {
  position: fixed;
  background: rgba(3,3,3,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.gdf-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gdf-header-logo img {
  max-width: 160px;
  height: auto;
  display: block;
}

.gdf-menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.gdf-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: background .25s ease, transform .28s cubic-bezier(.34,1.36,.64,1), opacity .22s ease;
}

.gdf-menu-toggle:hover {
  border-color: var(--gdf-green);
  background: rgba(10,206,58,.12);
}

.gdf-menu-toggle:hover span {
  background: var(--gdf-green);
}

/* ── FULLSCREEN MENU ────────────────────────── */
.gdf-fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 18% 10%, rgba(10,206,58,.08), transparent 28%),
    linear-gradient(135deg, #050505 0%, #0a0a0a 48%, #050505 100%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .45s cubic-bezier(.77,0,.175,1);
}

.gdf-fullscreen-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Inner wrapper */
.gdf-fullscreen-menu__inner {
  min-height: 100svh;
  padding: 140px;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.gdf-fullscreen-menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Logo inside overlay */
.gdf-fullscreen-menu__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.gdf-fullscreen-menu__logo img {
  max-width: 240px;
  height: auto;
  display: block;
}

.gdf-fullscreen-menu__logo .gdf-logo-text {
  font-family: var(--gdf-heading-font);
  font-size: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}

/* Close button */
.gdf-fullscreen-menu__close {
  width: 72px;
  height: 72px;
  border: 0;
  background: transparent;
  color: #fff;
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color .25s ease, transform .35s cubic-bezier(.25,.46,.45,.94);
}

.gdf-fullscreen-menu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 5px;
  background: currentColor;
  transform-origin: center;
  transition: background .25s ease, transform .25s ease;
}

.gdf-fullscreen-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gdf-fullscreen-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gdf-fullscreen-menu__close:hover {
  color: #0ace3a;
  transform: rotate(90deg);
}

/* Content grid */
.gdf-fullscreen-menu__content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(320px, 620px);
  justify-content: space-between;
  align-items: center;
  column-gap: clamp(72px, 10vw, 180px);
  padding: 40px 0;
}

/* Left column */
.gdf-fullscreen-menu__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Nav list */
.gdf-fullscreen-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.gdf-fullscreen-nav__list li {
  margin: 0;
  padding: 0;
}

.gdf-fullscreen-nav a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-family: var(--gdf-body-font, "Poppins", Arial, sans-serif);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transition: color .25s ease, transform .25s ease;
}

.gdf-fullscreen-nav a::before {
  content: "*";
  margin-right: 8px;
  color: #fff;
  transition: color .25s ease;
}

.gdf-fullscreen-nav a:hover,
.gdf-fullscreen-nav .current-menu-item > a {
  color: #0ace3a;
  transform: translateX(8px);
}

.gdf-fullscreen-nav a:hover::before,
.gdf-fullscreen-nav .current-menu-item > a::before {
  color: #0ace3a;
}

/* Social row */
.gdf-fullscreen-social {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gdf-fullscreen-social a {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  transition: color .25s ease, transform .25s ease, filter .25s ease;
}

.gdf-fullscreen-social a:hover {
  color: #0ace3a;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 8px rgba(10,206,58,.55));
}

/* Right column */
.gdf-fullscreen-menu__right {
  max-width: 620px;
}

.gdf-fullscreen-menu__right p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-family: var(--gdf-body-font, "Poppins", Arial, sans-serif);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.03em;
}

body.gdf-menu-open { overflow: hidden; }

/* Fullscreen menu — tablet */
@media (max-width: 991px) {
  .gdf-fullscreen-menu__inner {
    padding: 28px;
  }

  .gdf-fullscreen-menu__close {
    width: 58px;
    height: 58px;
  }

  .gdf-fullscreen-menu__close span {
    width: 44px;
    height: 4px;
  }

  .gdf-fullscreen-menu__content {
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: start;
    row-gap: 48px;
    padding-top: 72px;
  }

  .gdf-fullscreen-menu__right {
    max-width: 100%;
  }

  .gdf-fullscreen-menu__right p {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.35;
  }

  .gdf-fullscreen-social {
    margin-top: 34px;
  }
}

/* Fullscreen menu — mobile */
@media (max-width: 575px) {
  .gdf-fullscreen-menu__inner {
    padding: 24px;
  }

  .gdf-fullscreen-menu__logo img {
    max-width: 96px;
  }

  .gdf-fullscreen-menu__close {
    width: 48px;
    height: 48px;
  }

  .gdf-fullscreen-menu__close span {
    width: 36px;
    height: 3px;
  }

  .gdf-fullscreen-menu__content {
    padding-top: 56px;
    row-gap: 40px;
  }

  .gdf-fullscreen-nav a {
    font-size: 18px;
  }

  .gdf-fullscreen-social a {
    font-size: 26px;
  }

  .gdf-fullscreen-menu__right p {
    font-size: 20px;
  }
}

/* ── HERO ───────────────────────────────────── */
.gdf-hero {
  position: relative;
  min-height: 100svh;
  background: #000;
  overflow: hidden;
}

.gdf-hero .carousel,
.gdf-hero .carousel-inner {
  min-height: 100svh;
}

.gdf-hero .carousel-item {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.gdf-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* covers both .gdf-hero-media-element class AND bare img/video children */
.gdf-hero-media-element,
.gdf-hero-media img,
.gdf-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1.08);
  filter: contrast(1.08) saturate(.95) brightness(.82);
  transition: transform 9s ease-out;
}

.gdf-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.68) 30%, rgba(0,0,0,.22) 62%, rgba(0,0,0,.66) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.08) 55%, #080808 100%);
}

.gdf-hero-content {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  max-width: 760px;
  padding: 160px var(--gdf-page-padding) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gdf-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--gdf-body-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.gdf-hero-tags span:first-child {
  color: var(--gdf-green);
}

.gdf-hero-tags span:not(:last-child)::after {
  content: "|";
  color: rgba(255,255,255,.35);
  margin-left: 12px;
}

.gdf-hero-title {
  font-family: var(--gdf-heading-font);
  font-size: clamp(76px, 12vw, 180px);
  line-height: .78;
  letter-spacing: .025em;
  color: var(--gdf-green);
  text-transform: uppercase;
  margin: 0 0 22px;
  text-shadow: 0 18px 70px rgba(10,206,58,.18);
}

.gdf-platform-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 4px;
}

/* Legacy plain-text fallback badges */
.gdf-platform-row > span {
  font-family: var(--gdf-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 2px;
}

/* New platform items — logo + name, no border, clickable */
.gdf-platform-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.68);
  cursor: default;
  padding: 0 18px 0 0;
  margin: 0 18px 0 0;
}

.gdf-platform-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 18px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.62);
  box-shadow: 0 0 8px rgba(255,255,255,.10);
  pointer-events: none;
}

.gdf-platform-item:last-child {
  padding-right: 0;
  margin-right: 0;
}

a.gdf-platform-item {
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

a.gdf-platform-item:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(10,206,58,.32));
}

.gdf-platform-item:hover::after {
  background: rgba(255,255,255,.78);
}

.gdf-platform-logo {
  height: 18px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  flex-shrink: 0;
  display: none;
}

.gdf-platform-logo-mask {
  width: auto;
  min-width: 18px;
  height: 18px;
  max-width: 72px;
  aspect-ratio: 3 / 1;
  display: inline-block;
  flex: 0 0 auto;
  background-color: rgba(255,255,255,.72);
  -webkit-mask-image: var(--gdf-platform-logo-url);
  mask-image: var(--gdf-platform-logo-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color .22s ease, opacity .22s ease, filter .22s ease, transform .22s ease;
}

.gdf-platform-row .gdf-platform-logo-mask {
  height: 18px;
  min-width: 22px;
}

.gdf-platform-logo--fallback {
  display: none;
  filter: brightness(0) invert(1) grayscale(1) contrast(1.25);
  opacity: .72;
  transition: opacity .22s ease, filter .22s ease, transform .22s ease;
}

a.gdf-platform-item:hover .gdf-platform-logo-mask {
  background-color: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.26)) drop-shadow(0 0 8px rgba(10,206,58,.22));
  transform: translateY(-1px);
}

.gdf-platform-name {
  font-family: var(--gdf-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}

a.gdf-platform-item:hover .gdf-platform-name {
  color: #fff;
}

/* Platform items on movie detail page */
.gdf-movie-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
}

.gdf-movie-platforms .gdf-platform-item {
  gap: 8px;
}

.gdf-movie-platforms .gdf-platform-logo-mask {
  height: 22px;
  min-width: 28px;
  background-color: rgba(255,255,255,.62);
}

.gdf-movie-platforms .gdf-platform-logo--fallback {
  height: 22px;
}

.gdf-movie-platforms a.gdf-platform-item:hover .gdf-platform-logo,
.gdf-platform-row a.gdf-platform-item:hover .gdf-platform-logo {
  opacity: 1;
  filter: brightness(0) invert(1) grayscale(1) contrast(1.25) drop-shadow(0 0 4px rgba(255,255,255,.24)) drop-shadow(0 0 8px rgba(10,206,58,.20));
  transform: translateY(-1px);
}

.gdf-movie-platforms .gdf-platform-name {
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

.gdf-movie-platforms a.gdf-platform-item:hover .gdf-platform-name {
  color: #fff;
}

@supports not ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
  .gdf-platform-logo-mask {
    display: none;
  }

  .gdf-platform-logo--fallback {
    display: block;
  }
}

@media (max-width: 768px) {
  .gdf-platform-item {
    padding-right: 14px;
    margin-right: 14px;
  }

  .gdf-platform-item:not(:last-child)::after {
    height: 16px;
    background: rgba(255,255,255,.48);
  }
}


.gdf-watch-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 24px;
  transition: color .25s ease, transform .25s ease;
}

.gdf-watch-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--gdf-green);
  flex-shrink: 0;
}

.gdf-watch-btn:hover { color: var(--gdf-green); transform: translateX(4px); }

/* ── HERO PLACEHOLDER ───────────────────────── */
.gdf-hero-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(10,206,58,.22), transparent 30%),
    linear-gradient(120deg, #030303 0%, #101010 50%, #000 100%);
}

.gdf-hero-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(10,206,58,.18);
  box-shadow: 0 0 120px rgba(10,206,58,.08);
}

.gdf-hero-placeholder::after {
  content: "GREEN DOG FILMS";
  position: absolute;
  right: 8vw;
  bottom: 12vh;
  font-family: var(--gdf-heading-font);
  font-size: clamp(64px, 10vw, 160px);
  line-height: .8;
  color: rgba(255,255,255,.035);
  white-space: nowrap;
  pointer-events: none;
}

/* ── HERO INDICATORS ─────────────────────────── */
/* Override Bootstrap .carousel-indicators defaults completely */
.gdf-hero-indicators.carousel-indicators {
  position: absolute;
  right: auto;
  bottom: 72px;
  left: 50%;
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  list-style: none;
}

.gdf-hero-indicators.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  width: 60px;
  height: 4px;
  padding: 0;
  margin: 0;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  background-color: rgba(255,255,255,.68);
  background-clip: padding-box;
  border: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  opacity: 1;
  position: relative;
  transition: background-color .25s ease, box-shadow .25s ease;
  border-radius: 2px;
  flex: none;
}

.gdf-hero-indicators.carousel-indicators [data-bs-target]::after {
  display: none;
}

.gdf-hero-indicators.carousel-indicators .active {
  background-color: var(--gdf-green, #0ace3a);
  background-clip: padding-box;
}

.gdf-hero-indicators.carousel-indicators .active::after {
  display: none;
}

.gdf-hero-indicators.carousel-indicators [data-bs-target]:not(.active):hover {
  background-color: rgba(255,255,255,.92);
  transition-duration: .15s;
}

/* ── SECTIONS ────────────────────────────────── */
.gdf-section {
  position: relative;
  padding: clamp(72px, 9vw, 140px) var(--gdf-page-padding);
}

.gdf-section-heading {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 78px);
}

.gdf-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--gdf-body-font);
}

.gdf-section-heading h2 {
  margin: 0;
  font-family: var(--gdf-heading-font);
  font-size: clamp(58px, 7vw, 112px);
  line-height: .85;
  color: var(--gdf-green);
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(10,206,58,.08);
}

/* ── COMPLETED PROJECTS ──────────────────────── */

/* Remove lateral section padding — the shell inside provides it */
.gdf-completed.gdf-section {
  padding-left: 0;
  padding-right: 0;
}

.gdf-completed-shell {
  position: relative;
  max-width: var(--gdf-wide-max);
  margin: 0 auto;
  padding: 0 var(--gdf-page-padding);
}

.gdf-completed-swiper {
  overflow: hidden;
}

/* Static layout (≤2 slides) */
.gdf-completed-swiper--static .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  transform: none !important;
}

.gdf-completed-card {
  display: block;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), border-color .4s ease, box-shadow .4s ease;
}

.gdf-completed-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,206,58,.6);
  box-shadow: 0 20px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(10,206,58,.18);
}

.gdf-completed-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(10,206,58,.22), transparent 34%),
    linear-gradient(135deg, #121212, #020202);
}

.gdf-completed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) contrast(1.08) saturate(.9);
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .7s ease;
}

.gdf-completed-card:hover .gdf-completed-card__media img {
  transform: scale(1.08);
  filter: brightness(.92) contrast(1.12) saturate(1.05);
}

.gdf-completed-card__placeholder {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 30% 25%, rgba(10,206,58,.22), transparent 32%),
    linear-gradient(135deg, #151515, #050505);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
}

.gdf-completed-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,.72) 65%, rgba(0,0,0,.95) 100%),
    linear-gradient(90deg, rgba(10,206,58,.14), transparent 50%);
  opacity: 1;
  transition: opacity .5s ease;
  pointer-events: none;
}

.gdf-completed-card:hover .gdf-completed-card__overlay {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.62) 50%, rgba(0,0,0,.97) 100%),
    linear-gradient(90deg, rgba(10,206,58,.22), transparent 55%);
}

.gdf-completed-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.gdf-completed-card:hover .gdf-completed-card__content {
  transform: translateY(0);
}

.gdf-completed-card__type {
  display: inline-block;
  color: var(--gdf-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: .9;
  transition: opacity .3s ease;
}

.gdf-completed-card:hover .gdf-completed-card__type {
  opacity: 1;
}

.gdf-completed-card__content h3 {
  margin: 0;
  font-family: var(--gdf-heading-font);
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: .9;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.gdf-completed-card__footer {
  padding: 16px 32px;
  font-family: var(--gdf-body-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .3s ease;
}

.gdf-completed-card:hover .gdf-completed-card__footer {
  color: #fff;
}

/* Admin empty-state notice */
.gdf-completed-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed rgba(10,206,58,.3);
  border-radius: 4px;
  color: rgba(255,255,255,.45);
  font-family: var(--gdf-body-font);
  font-size: 14px;
  line-height: 1.6;
}

.gdf-completed-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.gdf-completed-arrow:hover {
  border-color: var(--gdf-green);
  color: var(--gdf-green);
  background: rgba(10,206,58,.1);
}

.gdf-completed-arrow:active {
  transform: translateY(-50%) scale(.92);
  transition-duration: .08s;
}

.gdf-completed-arrow--prev { left: 12px; }
.gdf-completed-arrow--next { right: 12px; }

/* ── COMING SOON ─────────────────────────────── */
.gdf-coming {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.gdf-coming .gdf-section-heading {
  padding-left: var(--gdf-page-padding);
  padding-right: var(--gdf-page-padding);
}

.gdf-coming-feature {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  min-height: clamp(520px, 65vw, 900px);
  overflow: hidden;
  background: #000;
}

/* ── Coming Soon bg carousel ── */
.gdf-coming-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.gdf-coming-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition:
    opacity 1400ms ease,
    transform 6000ms ease;
  will-change: opacity, transform;
}

.gdf-coming-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gdf-coming-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
}

.gdf-coming-feature img,
.gdf-coming-feature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(.82);
}

.gdf-coming-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(10,206,58,.10), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.42) 52%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.55) 100%);
}

/* Watch Now — legacy (keep for any other use) */
.gdf-watch-now:not(.gdf-watch-now--center) {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 5vw, 72px);
  top: clamp(28px, 5vw, 60px);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gdf-body-font);
  transition: color .25s ease;
}

.gdf-watch-now:not(.gdf-watch-now--center)::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--gdf-green);
  flex-shrink: 0;
}

.gdf-watch-now:not(.gdf-watch-now--center):hover { color: var(--gdf-green); }

/* Watch Now — Centered cinematic version */
.gdf-watch-now--center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 240px;
  min-height: 72px;
  padding: 22px 44px;
  border: 1.5px solid rgba(10,206,58,.75);
  border-radius: 999px;
  background: rgba(0,0,0,.52);
  color: #fff;
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 60px rgba(10,206,58,.28),
    0 8px 40px rgba(0,0,0,.48),
    inset 0 0 0 1px rgba(255,255,255,.06);
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
  white-space: nowrap;
}

.gdf-watch-now--center:hover {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: var(--gdf-green);
  background: rgba(10,206,58,.13);
  color: #fff;
  box-shadow:
    0 0 52px rgba(10,206,58,.28),
    inset 0 0 0 1px rgba(10,206,58,.18);
}

.gdf-watch-now--center:active {
  transform: translate(-50%, -50%) scale(.98);
  transition-duration: .08s;
}

.gdf-watch-now-btn {
  border: 0;
  cursor: pointer;
}

/* Coming Soon video modal */
.gdf-video-modal {
  background: rgba(0,0,0,.82);
}

.gdf-video-modal .modal-dialog {
  max-width: min(1120px, calc(100vw - 32px));
}

.gdf-video-modal-content {
  position: relative;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,.65),
    0 0 40px rgba(10,206,58,.12);
}

.gdf-video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gdf-video-modal-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.gdf-video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.gdf-video-modal-close:hover,
.gdf-video-modal-close:focus-visible {
  background: rgba(10,206,58,.9);
  color: #000;
  transform: scale(1.04);
  outline: none;
}

/* Fallback when Bootstrap modal JS is unavailable */
.gdf-video-modal.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 1;
}

.gdf-video-modal.is-open .modal-dialog {
  width: 100%;
}

@media (max-width: 767px) {
  .gdf-video-modal .modal-dialog {
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
  }

  .gdf-video-modal-content {
    border-radius: 12px;
  }

  .gdf-video-modal-close {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}

.gdf-play-icon {
  display: block;
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--gdf-green);
}

.gdf-ai-label {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 56px);
  top: clamp(24px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-family: var(--gdf-body-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
}

.gdf-coming-info {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
}

.gdf-coming-info h3 {
  font-family: var(--gdf-body-font);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  margin: 0;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.gdf-coming-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--gdf-green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--gdf-body-font);
}

/* ── FOOTER ──────────────────────────────────── */
.gdf-site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(10,206,58,.05), transparent 34%),
    #080808;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: clamp(80px, 8vw, 128px) var(--gdf-page-padding) 36px;
  color: #fff;
}

.gdf-footer-watermark {
  position: absolute;
  left: 50%;
  bottom: 68px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--gdf-heading-font, "Bebas Neue", sans-serif);
  font-size: clamp(96px, 15vw, 260px);
  line-height: .75;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255,255,255,.025);
  user-select: none;
}

.gdf-footer-inner {
  position: relative;
  z-index: 2;
  max-width: var(--gdf-content-max);
  margin: 0 auto;
}

.gdf-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  column-gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.gdf-footer-title {
  margin: 0 0 26px;
  color: var(--gdf-green);
  font-family: var(--gdf-body-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Address column heading is white, not green */
.gdf-footer-col--address .gdf-footer-title {
  color: #fff;
}

.gdf-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.gdf-footer-nav__list li { margin: 0; padding: 0; }

.gdf-footer-nav__list a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 15px;
  font-weight: 400;
  transition: color .25s ease, transform .25s ease;
  display: inline-block;
}

.gdf-footer-nav__list a:hover {
  color: var(--gdf-green);
  transform: translateX(4px);
}

.gdf-footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.gdf-footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gdf-green);
  text-decoration: none;
  transition: color .25s ease, transform .25s ease, filter .25s ease;
}

.gdf-footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 8px rgba(10,206,58,.55));
}

.gdf-footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.gdf-footer-address {
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  font-family: var(--gdf-body-font);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.gdf-footer-contact-list {
  display: grid;
  gap: 12px;
}

.gdf-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 15px;
  transition: color .25s ease;
}

.gdf-footer-contact-link:hover { color: var(--gdf-green); }

.gdf-footer-contact-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
}

.gdf-footer-col--logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.gdf-footer-col--logo img {
  max-width: 210px;
  height: auto;
  display: block;
}

.gdf-footer-logo-text {
  font-family: var(--gdf-heading-font);
  font-size: clamp(42px, 4vw, 64px);
  line-height: .9;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
}

.gdf-footer-bottom {
  margin-top: clamp(72px, 8vw, 112px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: rgba(255,255,255,.42);
  font-family: var(--gdf-body-font);
  font-size: 12px;
}

.gdf-footer-bottom p { margin: 0; }

.gdf-footer-bottom p:last-child {
  text-transform: uppercase;
  letter-spacing: .12em;
}



/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 991px) {
  .gdf-hero-content {
    max-width: 100%;
    padding: 140px var(--gdf-page-padding) 78px;
  }

  .gdf-hero-title {
    font-size: clamp(70px, 20vw, 120px);
  }

  .gdf-completed-shell {
    padding: 0 var(--gdf-page-padding);
  }

  .gdf-completed-arrow {
    display: none;
  }

  .gdf-completed-swiper--static .swiper-wrapper {
    grid-template-columns: 1fr;
  }

  .gdf-footer-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
    text-align: center;
  }

  .gdf-footer-col--menu,
  .gdf-footer-col--address {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gdf-footer-col--logo {
    justify-content: center;
  }

  .gdf-footer-nav__list {
    justify-items: center;
  }

  .gdf-footer-social {
    justify-content: center;
    margin-top: 32px;
  }

  .gdf-footer-watermark {
    font-size: clamp(72px, 20vw, 160px);
    bottom: 100px;
  }

  .gdf-footer-bottom {
    margin-top: 64px;
  }
}

@media (max-width: 575px) {
  .gdf-site-header {
    height: 78px;
    padding: 22px var(--gdf-page-padding);
  }

  .gdf-header-logo {
    font-size: 14px;
    letter-spacing: .12em;
  }

  .gdf-hero-tags {
    font-size: 10px;
    gap: 8px;
  }

  .gdf-hero-title {
    font-size: clamp(64px, 23vw, 96px);
  }

  .gdf-hero-indicators.carousel-indicators [data-bs-target] {
    width: 68px;
  }

  .gdf-section {
    /* --gdf-page-padding at ≤575px is 22px — handled by :root override */
    padding-left: var(--gdf-page-padding);
    padding-right: var(--gdf-page-padding);
  }

  .gdf-section-heading h2 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .gdf-ai-label {
    right: 16px;
    top: 16px;
    font-size: 9px;
    padding: 6px 12px;
  }

  .gdf-watch-now--center {
    min-width: 200px;
    min-height: 58px;
    font-size: 15px;
    padding: 16px 28px;
    gap: 14px;
  }

  .gdf-play-icon {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .gdf-site-footer {
    padding: 60px var(--gdf-page-padding) 28px;
  }

  .gdf-coming .gdf-section-heading {
    /* --gdf-page-padding is 22px at ≤575px via :root — no override needed */
  }

  .gdf-footer-title {
    font-size: 12px;
  }

  .gdf-footer-nav__list a,
  .gdf-footer-address,
  .gdf-footer-contact-link {
    font-size: 14px;
  }

  .gdf-footer-col--logo img {
    max-width: 170px;
  }

  .gdf-footer-social a {
    width: 32px;
    height: 32px;
  }

  .gdf-footer-social svg {
    width: 21px;
    height: 21px;
  }
}

/* ═══════════════════════════════════════════════
   MOVIE PROFILE (single-movie.php)
═══════════════════════════════════════════════ */

/* ── Layout container ───────────────────────── */
.gdf-movie-profile {
  background: var(--gdf-black, #030303);
  color: #fff;
}

.gdf-movie-container {
  max-width: var(--gdf-content-max);
  margin: 0 auto;
  padding: 0 var(--gdf-page-padding);
}

/* ── HERO ───────────────────────────────────── */
.gdf-movie-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.gdf-movie-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gdf-movie-hero__media video,
.gdf-movie-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gdf-movie-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3,3,3,.30) 0%, rgba(3,3,3,.18) 38%, rgba(3,3,3,.80) 75%, rgba(3,3,3,.98) 100%),
    linear-gradient(90deg, rgba(3,3,3,.72) 0%, transparent 55%);
  pointer-events: none;
}

.gdf-movie-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--gdf-content-max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) var(--gdf-page-padding) clamp(56px, 7vw, 100px);
  animation: gdfFadeSlideUp .75s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes gdfFadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* back link */
.gdf-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-family: var(--gdf-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
  margin-bottom: 24px;
}

.gdf-back-link:hover { color: var(--gdf-green); transform: translateX(-4px); }

/* eyebrow — removed from template */

/* title */
.gdf-movie-hero__title {
  margin: 0 0 28px;
  font-family: var(--gdf-heading-font);
  font-size: clamp(72px, 9vw, 148px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,.45);
  max-width: 820px;
}

/* tags */
.gdf-movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gdf-movie-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-family: var(--gdf-body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  transition: border-color .22s ease, color .22s ease, background .22s ease;
}

a.gdf-movie-tag:hover {
  border-color: rgba(10,206,58,.5);
  color: #fff;
  background: rgba(10,206,58,.08);
}

/* platforms — now rendered via .gdf-platform-item (see hero section styles above) */

/* watch trailer button */
.gdf-watch-trailer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: rgba(0,0,0,.44);
  color: #fff;
  font-family: var(--gdf-body-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
  white-space: nowrap;
}

.gdf-watch-trailer:hover {
  border-color: var(--gdf-green);
  background: rgba(10,206,58,.13);
  transform: scale(1.03);
  box-shadow: 0 0 52px rgba(10,206,58,.28), inset 0 0 0 1px rgba(10,206,58,.18);
}

.gdf-watch-trailer:active {
  transform: scale(.97);
  transition-duration: .08s;
}

.gdf-watch-trailer--large {
    font-size: 17px;
    padding: 18px 0;
    margin-top: 40px;
    width: auto;
    min-width: auto;
    border: none !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    justify-content: flex-end;
}

.gdf-watch-trailer--large:hover {
    border: none !important;
    background: transparent;
    transform: translateX(6px);
    color: #ffffff;
    box-shadow: none;
}

.gdf-watch-trailer--large:hover .gdf-trailer-icon {
    filter: drop-shadow(0 0 10px rgba(10,206,58,.65));
    transform: scale(1.08);
}

.gdf-watch-trailer--large .gdf-trailer-icon {
    transition: transform .28s ease, filter .28s ease;
}

@media (max-width: 900px) {
    .gdf-poster-action .gdf-watch-trailer--large {
        align-self: center;
        margin-right: 0;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .gdf-poster-action .gdf-watch-trailer--large {
        width: auto;
        justify-content: center;
        padding: 16px 0;
    }
}

/* triangle icon */
.gdf-trailer-icon {
  display: block;
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gdf-green);
}

/* ── SYNOPSIS ────────────────────────────────── */
/* ── SYNOPSIS ────────────────────────────────── */
.gdf-synopsis-section {
  position: relative;
  padding: clamp(56px, 7vw, 100px) 0 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(10, 206, 58, 0.08), transparent 30%),
    linear-gradient(180deg, #020202 0%, #050505 100%);
}

.gdf-container,
.gdf-footer-inner,
.gdf-section-inner,
.gdf-home-inner {
  width: min(100% - calc(var(--gdf-page-padding) * 2), var(--gdf-content-max));
  margin-left: auto;
  margin-right: auto;
}

.gdf-wide-container {
  width: min(100% - calc(var(--gdf-page-padding) * 2), var(--gdf-wide-max));
  margin-left: auto;
  margin-right: auto;
}

/* Header también debe respirar en pantallas grandes */
.gdf-site-header,
.site-header,
.gdf-header {
  padding-left: var(--gdf-page-padding) !important;
  padding-right: var(--gdf-page-padding) !important;
}

.gdf-synopsis-layout {
  display: grid;
  gap: clamp(36px, 7vw, 20px);
  align-items: start;
}

.gdf-synopsis-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gdf-synopsis-heading h2 {
  margin: 0;
  color: #0ace3a;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdf-synopsis-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.gdf-synopsis-copy p { margin: 0 0 24px; }
.gdf-synopsis-copy p:last-child { margin-bottom: 0; }
.gdf-synopsis-copy strong,
.gdf-synopsis-copy b { color: #ffffff; font-weight: 800; }
.gdf-synopsis-copy em { color: rgba(255, 255, 255, 0.95); }

.gdf-social-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.gdf-social-inline a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(10, 206, 58, 0.32);
  border-radius: 50%;
  color: #0ace3a;
  text-decoration: none;
  opacity: 0.86;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.gdf-social-inline a:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(10, 206, 58, 0.45));
}

.gdf-social-inline svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

/* ── CREW / FILM INFO ───────────────────────── */
.gdf-crew-section {
  position: relative;
  padding: 24px 0 clamp(56px, 7vw, 100px);
}

.gdf-film-info-layout {
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  padding-top: clamp(28px, 5vw, 38px);
}

.gdf-film-info-heading h2 {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gdf-film-info-list {
  display: flex;
  flex-direction: column;
}

.gdf-film-info-row {
  display: grid;
  padding: 16px 0;
}

.gdf-film-info-row span {
  color: #0ace3a;
  font-size: clamp(18px, 1.45vw, px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1;
}

.gdf-film-info-row strong {
  color: #ffffff;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.gdf-film-info-row--cast strong {
  max-width: 920px;
}

/* ── POSTER SECTION ─────────────────────────── */
.gdf-poster-section {
  padding-bottom: clamp(56px, 7vw, 100px);
  padding-top: clamp(56px, 7vw, 68px);
}

.gdf-poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.gdf-poster-viewer {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: box-shadow .4s ease;
}

.gdf-poster-viewer:hover {
  box-shadow: 0 0 0 1px rgba(10,206,58,.25), 0 28px 72px rgba(0,0,0,.55);
}

.gdf-poster-single {
  width: 100%;
  height: clamp(460px, 64vh, 720px);
  display: block;
  object-fit: contain;
  object-position: center;
  background: #050505;
  filter: brightness(.96) contrast(1.08);
}

/* ── POSTER BOOTSTRAP CAROUSEL ───────────────── */
.gdf-poster-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gdf-poster-carousel .carousel-inner,
.gdf-poster-carousel .carousel-item {
  width: 100%;
}

.gdf-poster-carousel .carousel-item {
  min-height: clamp(460px, 64vh, 720px);
  background: #050505;
}

.gdf-poster-carousel .carousel-item img {
  width: 100%;
  height: clamp(460px, 64vh, 720px);
  display: block;
  object-fit: contain;
  object-position: center;
  filter: brightness(.96) contrast(1.08);
}

/* ── POSTER INDICATORS ───────────────────────── */
.gdf-poster-indicators.carousel-indicators {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(20px, 3vw, 34px);
  z-index: 8;
  width: min(360px, 70%);
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
}

.gdf-poster-indicators.carousel-indicators [data-bs-target] {
  flex: 1 1 0;
  width: auto;
  height: 3px;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  cursor: pointer;
  transition:
    background-color 260ms ease,
    height 260ms ease,
    box-shadow 320ms ease;
}

.gdf-poster-indicators.carousel-indicators .active {
  height: 4px;
  background-color: var(--gdf-green, #0ace3a);
  box-shadow:
    0 0 3px rgba(10, 206, 58, 0.55),
    0 0 10px rgba(10, 206, 58, 0.26),
    0 0 22px rgba(10, 206, 58, 0.14);
}

.gdf-poster-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gdf-poster-title {
  margin: 14px 0 0;
  font-family: var(--gdf-heading-font);
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: .9;
  text-transform: uppercase;
  color: #fff;
}

/* ── ACTIVE POSTER INFO (title + description per slide) ──── */

.gdf-active-poster-info {
  margin-top: 20px;
  gap: 18px;
  display: flex;
  flex-direction: column;
}

.gdf-active-poster-name {
  font-family: var(--gdf-body-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gdf-green);
  margin: 0 0 7px;
  min-height: 1em;
  transition: opacity .25s ease;
}

.gdf-active-poster-desc {
  margin: 0;
  min-height: 1.65em;
  transition: opacity .25s ease;
  font-size: 14px !important;
}

/* Poster description HTML block — defensive styles (strips pasted inline cruft) */
.gdf-poster-description,
.gdf-poster-description * {
  color: rgba(255, 255, 255, 0.86) !important;
  background: transparent !important;
  font-family: var(--gdf-body-font, 'Poppins', sans-serif) !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
}

.gdf-poster-description {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.gdf-poster-description p { margin: 0 0 22px; }
.gdf-poster-description p:last-child { margin-bottom: 0; }
.gdf-poster-description strong,
.gdf-poster-description b { color: #ffffff !important; font-weight: 800; }
.gdf-poster-description em,
.gdf-poster-description i { font-style: italic; }
.gdf-poster-description a { color: var(--gdf-green, #0ace3a) !important; text-decoration: none; }
.gdf-poster-description a:hover { text-decoration: underline; }

/* ── GALLERY / STILLS ───────────────────────── */

.gdf-gallery-heading-wrap {
  margin-bottom: clamp(34px, 5vw, 72px);
}

.gdf-section-heading--center {
  text-align: center;
}

.gdf-section-heading--center h2 {
  margin: 8px 0 0;
  color: #0ace3a;
  font-size: clamp(68px, 9vw, 144px);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gdf-gallery-wide {
  width: 100%;
  overflow: visible;
}

.gdf-gallery-swiper {
  width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gdf-gallery-swiper .swiper-wrapper {
  align-items: center;
}

.gdf-gallery-swiper .swiper-slide {
  width: 100%;
  height: clamp(480px, 70vh, 840px);
  overflow: hidden;
  background: #070707;
  flex-shrink: 0;
}

.gdf-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.1) saturate(1);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 700ms ease;
}

.gdf-gallery-swiper .swiper-slide:hover img {
  transform: scale(1.03);
  filter: brightness(1.02) contrast(1.14) saturate(1.06);
}

/* ── GALLERY PAGINATION (green lines) ── */
.gdf-gallery-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.gdf-gallery-pagination .swiper-pagination-bullet {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.30);
  opacity: 1;
  margin: 0;
  cursor: pointer;
  pointer-events: all;
  transition: background 350ms ease, width 350ms ease;
}

.gdf-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gdf-green);
  width: 44px;
}

.gdf-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.gdf-gallery-arrow:hover {
  background: rgba(10, 206, 58, 0.18);
  border-color: rgba(10, 206, 58, 0.74);
  color: #0ace3a;
  transform: translateY(-50%) scale(1.06);
}

.gdf-gallery-arrow:active {
  transform: translateY(-50%) scale(.94);
  transition-duration: .08s;
}

.gdf-gallery-arrow--prev { left: clamp(18px, 4vw, 72px); }
.gdf-gallery-arrow--next { right: clamp(18px, 4vw, 72px); }

/* ── GALLERY BOOTSTRAP CAROUSEL ─────────────── */
.gdf-gallery-carousel {
  position: relative;
  overflow: hidden;
}

.gdf-gallery-carousel .carousel-inner {
  height: clamp(320px, 55vw, 820px);
}

.gdf-gallery-carousel .carousel-item {
  height: 100%;
}

.gdf-gallery-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.88) contrast(1.06);
}

/* ── GALLERY INDICATORS ─────────────────────── */
.gdf-gallery-indicators.carousel-indicators {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(24px, 4vw, 42px);
  z-index: 10;
  width: min(460px, 70vw);
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
}

.gdf-gallery-indicators.carousel-indicators [data-bs-target] {
  flex: 1 1 0;
  width: auto;
  height: 3px;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.38);
  opacity: 1;
  cursor: pointer;
  transition:
    background-color 260ms ease,
    height 260ms ease,
    box-shadow 320ms ease;
}

.gdf-gallery-indicators.carousel-indicators .active {
  height: 4px;
  background-color: var(--gdf-green, #0ace3a);
  box-shadow:
    0 0 3px rgba(10, 206, 58, 0.55),
    0 0 10px rgba(10, 206, 58, 0.26),
    0 0 22px rgba(10, 206, 58, 0.14);
}

/* ── TRAILER MODAL ──────────────────────────── */
.gdf-trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.gdf-trailer-modal:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: all;
}

.gdf-trailer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.gdf-trailer-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 1000px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
  transform: scale(.96);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}

.gdf-trailer-modal:not([aria-hidden="true"]) .gdf-trailer-modal__dialog {
  transform: scale(1);
}

.gdf-trailer-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.gdf-trailer-modal__close:hover {
  border-color: var(--gdf-green);
  color: var(--gdf-green);
}

.gdf-trailer-modal__frame {
  position: absolute;
  inset: 0;
}

.gdf-trailer-modal__frame iframe,
.gdf-trailer-modal__frame video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── MOVIE PROFILE RESPONSIVE ───────────────── */
@media (max-width: 900px) {
  .gdf-movie-hero { min-height: 80vh; }
  .gdf-movie-hero__title { font-size: clamp(60px, 14vw, 96px); }

  .gdf-synopsis-layout,
  .gdf-film-info-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gdf-synopsis-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gdf-film-info-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .gdf-gallery-swiper .swiper-slide {
    height: min(60vh, 520px);
  }

  .gdf-poster-grid { grid-template-columns: 1fr; row-gap: 48px; }
  .gdf-poster-action { align-items: center; text-align: center; }
  .gdf-watch-trailer--large { width: auto; }
  .gdf-poster-carousel .carousel-item,
  .gdf-poster-carousel .carousel-item img,
  .gdf-poster-single {
    height: 420px;
    min-height: 420px;
  }

  .gdf-poster-indicators.carousel-indicators {
    width: min(280px, 72%);
    bottom: 18px;
  }
}

@media (max-width: 560px) {
  .gdf-movie-hero__title { font-size: clamp(52px, 16vw, 78px); }

  .gdf-synopsis-copy { font-size: 17px; line-height: 1.68; }

  .gdf-film-info-row span { font-size: 16px; }
  .gdf-film-info-row strong { font-size: 20px; }

  .gdf-gallery-swiper .swiper-slide {
    height: 56vh;
  }

  .gdf-gallery-arrow { width: 46px; height: 46px; font-size: 34px; }

  .gdf-watch-trailer { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   MICROINTERACCIONES Y MOVIMIENTO
   Professional hover / focus / click interactions
   Cinematic — premium — no gimmicks
═══════════════════════════════════════════════ */

/* ── FOCUS VISIBLE (accessibility) ─────────────
   Keyboard / assistive-tech users get a green ring
   on all interactive elements automatically        */
:focus-visible {
  outline: 2px solid var(--gdf-green);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ── HAMBURGUESA → X ────────────────────────────
   The 3 bars morph into an X when the menu opens.
   With gap:5px and bar-height:2px the centres are
   7 px apart, so translateY(±7px) nails alignment. */
body.gdf-menu-open .gdf-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gdf-green);
}

body.gdf-menu-open .gdf-menu-toggle span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}

body.gdf-menu-open .gdf-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gdf-green);
}

/* ── KEN BURNS — hero slides ────────────────────
   Images start at scale(1.08) and slowly zoom to
   scale(1.0) while the slide is active.
   Bootstrap animates .carousel-item (translateX),
   not the inner media element — no conflict.       */
.gdf-hero .carousel-item.active .gdf-hero-media-element,
.gdf-hero .carousel-item.active .gdf-hero-media img,
.gdf-hero .carousel-item.active .gdf-hero-media video {
  transform: scale(1.0);
}

/* Slide content fades up each time a slide becomes active */
.gdf-hero .carousel-item.active .gdf-hero-content {
  animation: gdfFadeSlideUp .65s cubic-bezier(.25,.46,.45,.94) both;
}

/* ── COMING SOON — hover scale ──────────────────
   Subtle image push on hover to hint interactivity */
.gdf-coming-feature video {
  transition: transform .9s cubic-bezier(.25,.46,.45,.94), filter .6s ease;
}

.gdf-coming-feature:hover video {
  transform: scale(1.03);
}

/* ── SOCIAL INLINE — synopsis section ──────────
   Already has opacity/transform, keep consistent  */
.gdf-social-inline a:focus-visible {
  outline-offset: 4px;
}

/* ── PREFERS REDUCED MOTION ─────────────────────
   Users who prefer less motion get instant
   transitions. Functional visibility is preserved. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  /* Kill entry animations */
  .gdf-movie-hero__content,
  .gdf-hero .carousel-item.active .gdf-hero-content {
    animation: none !important;
  }

  /* Kill Ken Burns — keep at resting scale */
  .gdf-hero-media-element,
  .gdf-hero-media img,
  .gdf-hero-media video,
  .gdf-hero .carousel-item.active .gdf-hero-media-element,
  .gdf-hero .carousel-item.active .gdf-hero-media img,
  .gdf-hero .carousel-item.active .gdf-hero-media video {
    transition: none !important;
    transform: scale(1.0) !important;
  }

  /* Kill coming soon hover */
  .gdf-coming-feature video {
    transition: none !important;
  }

  .gdf-coming-feature:hover video {
    transform: none !important;
  }

  /* Kill coming soon slideshow */
  .gdf-coming-bg-slide {
    transition: opacity 300ms ease !important;
    transform: none !important;
  }

  .gdf-coming-bg-slide.is-active {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   Contact Modal
   ═══════════════════════════════════════════════════════════════════════ */

.gdf-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  color: #fff;
}

.gdf-contact-modal.is-open {
  display: flex;
}

.gdf-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 206, 58, 0.12), transparent 35%),
    rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gdf-contact-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(5, 12, 8, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.72),
    0 0 50px rgba(10, 206, 58, 0.10);
}

.gdf-contact-modal__content {
  padding: clamp(28px, 4vw, 54px);
}

.gdf-contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

.gdf-contact-modal__close:hover {
  transform: scale(1.05);
  color: #0ace3a;
  border-color: rgba(10,206,58,.75);
  background: rgba(10,206,58,.08);
}

.gdf-contact-modal__eyebrow {
  margin: 0 0 12px;
  color: #0ace3a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.gdf-contact-modal__title {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gdf-contact-modal__intro {
  margin: 18px 0 34px;
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.65;
}

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

.gdf-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gdf-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gdf-contact-form__field span {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gdf-contact-form__field input,
.gdf-contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: rgba(255,255,255,.035);
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.gdf-contact-form__field textarea {
  resize: vertical;
  min-height: 150px;
}

.gdf-contact-form__field input:focus,
.gdf-contact-form__field textarea:focus {
  border-color: rgba(10,206,58,.85);
  background: rgba(10,206,58,.045);
  box-shadow: 0 0 0 1px rgba(10,206,58,.22);
}

.gdf-contact-form__submit {
  align-self: flex-start;
  margin-top: 8px;
  min-width: 190px;
  min-height: 52px;
  border: 1px solid rgba(10,206,58,.85);
  background: transparent;
  color: #fff;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.gdf-contact-form__submit:hover {
  background: rgba(10,206,58,.12);
  color: #0ace3a;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(10,206,58,.16);
}

.gdf-contact-form__submit:disabled {
  opacity: .65;
  cursor: wait;
}

.gdf-contact-form__status {
  min-height: 20px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.gdf-contact-form__status.is-success {
  color: #0ace3a;
}

.gdf-contact-form__status.is-error {
  color: #ff5f5f;
}

.gdf-contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.gdf-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gdf-contact-modal {
    padding: 16px;
    align-items: flex-start;
  }

  .gdf-contact-modal__dialog {
    max-height: calc(100vh - 32px);
    border-radius: 18px;
  }

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

  .gdf-contact-form__submit {
    width: 100%;
  }
}
