:root {
  --bg: #030712;
  --bg-soft: #07111f;
  --text: #f5f7fb;
  --muted: #9ca9bd;
  --accent: #2563eb;
  --accent-two: #60a5fa;
  --border: rgba(147, 197, 253, 0.14);
  --card: rgba(96, 165, 250, 0.045);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--accent-two);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
}

/* GLOBAL */

.section {
  padding: 110px 6vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent-two);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #020617;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* HERO */

.hero,
.project-hero-video {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  overflow: hidden;
}

.hero-video,
.project-bg-video,
.hero-overlay,
.project-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.project-bg-video {
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(1.15) contrast(1.08) brightness(0.82);
  transform: scale(1.02);
}

.hero-overlay,
.project-hero-overlay {
  background:
    radial-gradient(circle at 72% 35%, rgba(37, 99, 235, 0.22), transparent 34%),
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.88) 0%,
      rgba(3, 7, 18, 0.52) 38%,
      rgba(3, 7, 18, 0.72) 100%
    );
}

.hero-content,
.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-text,
.project-hero-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-actions,
.project-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  display: none;
}

/* HOME */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.intro-grid p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card,
.about-card,
.process-item,
.review-card,
.story-review-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  transition: 0.35s ease;
}

.service-card:hover,
.portfolio-card:hover,
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.18);
}

.service-card span,
.process-item strong {
  color: var(--accent-two);
  font-weight: 800;
}

.service-card h3 {
  margin: 2.5rem 0 1rem;
}

.moving-gallery {
  width: 100%;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: galleryMove 20s linear infinite;
}

.gallery-track img {
  width: 360px;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.08);
  transition: 0.45s ease;
}

.gallery-track img:hover {
  opacity: 1;
  transform: scale(1.035);
}

.moving-gallery:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes galleryMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.25rem;
}

.work-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: 0.35s ease;
}

.work-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  transition: 0.45s ease;
}

.work-card:hover .work-image {
  transform: scale(1.06);
  opacity: 0.9;
}

.image-one {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.75)), url("images/eerste-stralen.jpg");
}

.image-two {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.75)), url("images/ome-toon.jpg");
}

.image-three {
  background-image: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.75)), url("images/vdb-interview.jpg");
}

.work-info {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
}

.work-info p {
  color: var(--accent-two);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* PORTFOLIO */

.portfolio-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-card {
  display: block;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.portfolio-preview {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.portfolio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
  opacity: 0.85;
}

.portfolio-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #020617;
  font-size: 1.4rem;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content p {
  color: var(--accent-two);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.portfolio-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* PROJECT PAGES */

.story-review-grid,
.project-info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-review-card {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 38px;

  padding: 2rem;

  backdrop-filter: blur(18px);
}

/* REVIEW FOTO */

.story-review-card img {
  width: 100%;
  height: 420px;

  object-fit: cover;
  object-position: center;

  border-radius: 24px;

  display: block;

  margin-bottom: 1.4rem;
}

/* REVIEW LABEL */

.story-review-card .eyebrow {
  margin-bottom: 1rem;
}

/* REVIEW QUOTE */

.story-review-card blockquote {
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);

  line-height: 0.96;

  letter-spacing: -0.045em;

  margin-bottom: 1.8rem;

  color: var(--text);

  max-width: 95%;
}

/* REVIEW AUTHOR */

.story-review-card strong {
  color: var(--text);
}

.story-review-card span,
.story-review-card p {
  color: var(--muted);
}

.story-content h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: 2.5rem;
}

.story-text {
  max-width: 850px;
}

.story-text p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.video-frame {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.video-frame video {
  width: 100%;
  background: #000;
}

/* OVER MIJ */

.about-hero-new {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 6vw 90px;
  overflow: hidden;
  background: #030712;
}

.about-hero-overlay-new {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(37, 99, 235, 0.22),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.98) 0%,
      rgba(3, 7, 18, 0.92) 30%,
      rgba(3, 7, 18, 0.60) 58%,
      rgba(3, 7, 18, 0.92) 100%
    );
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.about-hero-content p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.about-personal-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 5rem;
  align-items: center;
  min-height: 82vh;
}

.about-personal-image {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 35px 110px rgba(37, 99, 235, 0.14);
}

.about-personal-image img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.9) contrast(1.08);
  transition: 0.45s ease;
}

.about-personal-image:hover img {
  transform: scale(1.035);
}

.about-personal-text {
  max-width: 760px;
}

.about-personal-text h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
  margin-bottom: 2rem;
}

.about-personal-text p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.about-big-quote {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 4rem;
  border-radius: 42px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.about-big-quote h2 {
  font-size: clamp(2.5rem, 6vw, 6.5rem);
}

.about-work-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 38px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.about-work-card h2 {
  max-width: 900px;
  margin-bottom: 2.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
}

/* CONTACT */

.contact-hero {
  min-height: 82vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-intro h2 {
  margin-bottom: 2rem;
}

.contact-intro p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 560px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-socials a {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  transition: 0.25s ease;
}

.contact-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.55);
}

.contact-form {
  padding: 3rem;
  border-radius: 34px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.form-row label {
  color: var(--text);
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* CTA + FOOTER */

.cta {
  margin: 40px 6vw 100px;
  padding: 80px 6vw;
  text-align: center;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.cta h2 {
  margin-bottom: 2rem;
}

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #020617;
  font-weight: 800;
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.35);
}

.footer {
  padding: 35px 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 1.5rem;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .cards-grid,
  .portfolio-grid,
  .project-info-grid,
  .intro-grid,
  .story-review-grid,
  .contact-grid,
  .process-list,
  .work-grid,
  .about-personal-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: relative;
    top: unset;
  }

  .about-personal-image img {
    height: 560px;
    object-position: center 20%;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .section {
    padding: 80px 6vw;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track img {
    width: 260px;
    height: 360px;
  }

  .portfolio-preview {
    height: 260px;
  }

  .about-hero-new {
    min-height: 82vh;
    padding: 120px 6vw 70px;
  }

  .about-personal-image img {
    height: 420px;
    object-position: center 20%;
  }

  .about-big-quote,
  .about-work-card,
  .contact-form {
    padding: 2rem;
  }

  .floating-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }

  .footer {
    flex-direction: column;
  }
}
/* =========================================
   CSS SCROLL SNAPPING — HOMEPAGE
========================================= */

html {
  scroll-behavior: smooth;
}

/* Alleen op desktop/laptop */
@media (min-width: 900px) {
  body {
    scroll-snap-type: y proximity;
  }

  .hero,
  .intro,
  .cinematic-gallery-section,
  .services,
  .featured-work,
  .about-preview,
  .cta {
    scroll-snap-align: start;
    scroll-margin-top: 82px;
  }

  .hero {
    scroll-snap-stop: always;
  }
}

/* Respecteer gebruikers die minder animatie willen */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    scroll-snap-type:y proximity;
  }
}

/* HOME — ABOUT PREVIEW UPGRADE */

.about-preview {
  padding: 90px 6vw 120px;
}

.about-card {
  max-width: 1450px;
  margin: 0 auto;
  padding: 4rem;
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
  overflow: hidden;
  position: relative;
  border-radius: 38px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background:
    radial-gradient(circle at 82% 45%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 10% 10%, rgba(96, 165, 250, 0.10), transparent 35%),
    rgba(255, 255, 255, 0.028);
}

.about-card::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / 5;
  width: 100%;
  height: 620px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(3, 7, 18, 0.05), rgba(3, 7, 18, 0.22)),
    url("images/hero-poster-2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 100px rgba(37, 99, 235, 0.20);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.about-card .eyebrow,
.about-card h2,
.about-card p,
.about-card .btn {
  grid-column: 1;
}

.about-card .eyebrow {
  margin-bottom: 1.4rem;
}

.about-card .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 1rem;
  background: var(--accent-two);
  border-radius: 999px;
}

.about-card h2 {
  max-width: 650px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.92;
}

.about-card p {
  max-width: 620px;
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-card .btn {
  width: fit-content;
}

@media (max-width: 980px) {
  .about-card {
    grid-template-columns: 1fr;
    padding: 3rem;
  }

  .about-card::after {
    grid-column: 1;
    grid-row: 1;
    height: 520px;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 760px) {
  .about-card {
    padding: 2rem;
  }

  .about-card::after {
    height: 420px;
    border-radius: 22px;
  }

  .about-card h2 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }
}

/* =========================================
   SCHULZ NATUURSTEEN — PROJECT PAGE
========================================= */

.project-hero-video {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 6vw 100px;
}

.project-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.9) contrast(1.05);
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(37, 99, 235, 0.26), transparent 34%),
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.97),
      rgba(3, 7, 18, 0.70),
      rgba(3, 7, 18, 0.92)
    );
}

.project-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.project-hero-content h1 {
  max-width: 760px;
  margin-bottom: 2rem;
}

.project-hero-content p {
  max-width: 680px;
  font-size: 1.12rem;
  line-height: 1.9;
}

.project-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* PROJECT INFO */

.project-info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.project-info-grid h2 {
  max-width: 620px;
}

.project-info-grid .story-text {
  max-width: 760px;
}

.project-info-grid .story-text p {
  margin-bottom: 1.7rem;
  font-size: 1.08rem;
  line-height: 1.95;
}

/* VIDEO FRAME */

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(96, 165, 250, 0.20);
  background: rgba(255,255,255,0.02);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.55),
    0 0 80px rgba(37, 99, 235, 0.10);
}

.video-frame video {
  width: 100%;
  display: block;
  background: #000;
}

/* CTA */

.cta {
  max-width: 1400px;
  margin: 40px auto 120px;
  padding: 90px 6vw;
  text-align: center;
  border-radius: 40px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.22), transparent 42%),
    rgba(255,255,255,0.03);
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 0.92;
}

/* HOVER EFFECTS */

.video-frame,
.project-buttons .btn,
.cta .btn {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 50px 140px rgba(0,0,0,0.65),
    0 0 90px rgba(37, 99, 235, 0.16);
}

/* RESPONSIVE */

@media (max-width: 980px) {

  .project-info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-hero-video {
    min-height: auto;
    padding: 140px 6vw 90px;
  }

  .project-hero-content h1 {
    max-width: 100%;
  }

}

@media (max-width: 760px) {

  .project-hero-video {
    padding: 120px 6vw 80px;
  }

  .project-hero-content p {
    font-size: 1rem;
  }

  .project-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-frame {
    border-radius: 24px;
  }

  .cta {
    padding: 70px 2rem;
    border-radius: 28px;
  }

}

.project-hero-content,
.project-info-grid,
.video-frame,
.cta {
  opacity: 1 !important;
  transform: none !important;
}