:root {
  --ink: #050505;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --line: rgba(255, 255, 255, 0.15);
  --yellow: #ef902d;
  --yellow-strong: #f7cda1;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 20px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease, min-height 300ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(6, 6, 7, 0.56);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

/* HEADER LOGO */
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 52px;   /* reduced */
  width: auto;
  object-fit: contain;
  display: block;
}

/* FOOTER LOGO */
.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 65px;   /* reduced */
  width: auto;
  object-fit: contain;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .brand img {
    height: 42px;
  }

  .footer-logo img {
    height: 55px;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 34px);
  justify-self: center;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 220ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.header-cta,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--yellow);
  color: white;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 18px 44px rgba(255, 210, 26, 0.28);
  transition: transform 240ms var(--ease), background 240ms ease, box-shadow 240ms ease;
}

.header-cta {
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.header-cta:hover,
.hero-cta:hover {
  background: var(--yellow-strong);
  box-shadow: 0 24px 54px rgba(255, 210, 26, 0.38);
  transform: translateY(-2px) scale(1.03);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
}

.hero-media {
  position: absolute;
  inset: -5vh -3vw;
  z-index: -4;
  background-image: url("images/hero1.png");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 23% 28%, rgba(255, 210, 26, 0.18), transparent 28%),
    radial-gradient(circle at 76% 40%, rgba(255, 255, 255, 0.11), transparent 24%);
  mix-blend-mode: screen;
}

.hero-overlay {
  display: none;
}

.hero-noise {
  display: none;
}

.hero-content {
  width: min(1120px, calc(100% - 44px));
  margin: 18vh auto 120px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.hero-subtitle {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 550;
  line-height: 1.65;
  font-family: "Poppins", sans-serif;
}

.hero-cta {
  min-height: 58px;
  margin-top: 38px;
  padding: 0 30px;
  font-size: 15px;
  color: white
}

.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.26);
}

.logo-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  padding: 25px 46px;
  animation: logo-marquee 24s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  height: 42px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.75;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
}

/* about agency */
.about-agency {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 154px) clamp(22px, 5vw, 76px);
  background: whitesmoke;
  isolation: isolate;
}

.about-agency::before {
  display: none;
}

.about-agency__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-agency__content {
  max-width: 650px;
}

.section-kicker {
  margin: 0 0 18px;
  color: #ef902d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-agency h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.about-agency__content>p:not(.section-kicker) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 450;
  line-height: 1.78;
}

.about-agency__media {
  position: relative;
  min-height: clamp(430px, 44vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.about-agency__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.about-agency__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-agency__media:hover img {
  transform: scale(1.06);
}

/* stats swapped colors */
.about-stats {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.about-stats__item {
  display: grid;
  min-height: 148px;
  align-content: center;
  justify-items: center;
  padding: 28px 20px;
  background: #050505;
  color: #f7cda1;
  text-align: center;
}

.about-stats__item+.about-stats__item {
  border-left: 1px solid rgba(247, 205, 161, 0.15);
}

.about-stats strong {
  display: block;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  color: #f7cda1;
}

.about-stats span {
  display: block;
  margin-top: 12px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  text-transform: uppercase;
  color: #f7cda1;
}

.reveal-up,
.reveal-pop,
.scroll-reveal {
  opacity: 0;
  animation-duration: 900ms;
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease);
}

.reveal-up,
.scroll-reveal.is-visible {
  animation-name: fade-up;
}

.reveal-pop {
  animation-name: pop-in;
}

.delay-1 {
  animation-delay: 140ms;
}

.delay-2 {
  animation-delay: 300ms;
}

.delay-3 {
  animation-delay: 520ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 16px 22px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .primary-nav,
  .header-cta {
    position: fixed;
    right: 18px;
    left: 18px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .primary-nav {
    top: 86px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(7, 7, 8, 0.92);
    backdrop-filter: blur(18px);
  }

  .primary-nav a {
    padding: 16px 14px;
    font-size: 15px;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    top: 405px;
    min-height: 52px;
  }

  .menu-open .primary-nav,
  .menu-open .header-cta {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

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

  .about-agency__inner {
    grid-template-columns: 1fr;
  }

  .about-agency__content {
    max-width: 760px;
  }

  .about-agency__media {
    min-height: clamp(360px, 70vw, 560px);
  }
}

@media (max-width: 640px) {
  .brand-copy {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 13px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .hero-cta {
    width: 100%;
    max-width: 280px;
  }

  .logo-track {
    gap: 36px;
    padding: 21px 28px;
    animation-duration: 18s;
  }

  .about-agency {
    padding: 78px 18px;
  }

  .about-agency__inner {
    gap: 34px;
  }

  .section-kicker {
    font-size: 12px;
    letter-spacing: 0.26em;
  }

  .about-agency h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .about-agency__content>p:not(.section-kicker) {
    margin-top: 22px;
    font-size: 15.5px;
  }

  .about-agency__media {
    min-height: 390px;
    border-radius: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .about-stats__item {
    min-height: 122px;
  }

  .about-stats__item+.about-stats__item {
    border-top: 1px solid rgba(5, 5, 5, 0.13);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .hero-media {
    transform: scale(1.04);
  }
}

.site-header {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms ease,
    border-color 300ms ease;
}
 
.site-header.nav-hidden {
  transform: translateY(-140%);
}


/* featured work */
.featured-work {
  padding: 120px 0;
  background: var(--ink);
  overflow: hidden;
}

.featured-work__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .featured-work__container {
    padding: 0 20px;
  }
}

.featured-work__heading {
  text-align: center;
  margin-bottom: 60px;
}

.featured-work__heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
}

.featured-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  background: #090909;
  transform: translateY(100px);
  opacity: 0;
}

@media (max-width: 980px) {
  .featured-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .featured-work__grid {
    grid-template-columns: 1fr;
  }
}

.work-card:hover {
  transform: translateY(-8px);
}

.work-card__video-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.work-card__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: black;
}

.work-card__content {
  padding: 24px;
}

.work-card__content h3 {
  margin: 0;
  color: #ef902d;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.work-card__content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .featured-work {
    padding: 80px 18px;
  }

  .work-card__video-wrap {
    height: 240px;
  }
}


/* services showcase */
.services-showcase {
  padding: 0;
  background: whitesmoke;
  position: relative;
}

.services-showcase__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 120px 24px;
}

.services-kicker {
  color: #ef902d;
}

.services-showcase__heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 90px;
}

.services-showcase__heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  color: #050505;
}

.services-showcase__heading p:last-child {
  margin-top: 18px;
  color: rgba(5, 5, 5, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.service-row {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 80px 0;
  background: whitesmoke;
  opacity: 1;
  transform: none;
  position: relative;
}

.service-row--reverse .service-content {
  order: 2;
}

.service-row--reverse .service-image {
  order: 1;
}

.service-content {
  max-width: 520px;
}

.service-content h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 24px;
  color: #050505;
  opacity: 1 !important;
  transform: none !important;
}

.service-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ef902d;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.service-tags span:hover {
  transform: translateY(-3px);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 14px;
  background: #050505;
  color: white;
  font-weight: 700;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #ef902d;
  color: #050505;
  transform: translateY(-3px);
}

.service-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.service-image img,
.service-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.service-image:hover img {
  transform: scale(1.06);
}

@media (max-width: 980px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-row--reverse .service-content,
  .service-row--reverse .service-image {
    order: initial;
  }

  .service-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .services-showcase {
    padding: 80px 18px;
  }

  .services-showcase__heading {
    margin-bottom: 60px;
  }

  .service-row {
    margin-bottom: 70px;
  }

  .service-content h3 {
    font-size: 32px;
  }

  .service-content p {
    font-size: 15px;
  }

  .service-image img {
    height: 300px;
  }
}

/* process section */
.process-section {
  padding: 120px 24px;
  background: #050505;
  position: relative;
}

.process-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.process-heading {
  text-align: center;
  margin-bottom: 90px;
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

/* grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

/* THIS creates connected dashed line */
.process-grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 8%;
  width: 84%;
  border-top: 2px dashed rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.process-card {
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f7cda1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #050505;
  cursor: pointer;
  transition: all 0.4s ease;
}

.process-card h3 {
  margin-top: 30px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
}

.process-card p {
  margin-top: 18px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* hover animations */
.bulb-icon:hover {
  animation: bounceGlow 0.8s ease;
}

.camera-icon:hover {
  animation: rotateCam 0.8s ease;
}

.film-icon:hover {
  animation: pulseFilm 0.8s ease;
}

.plane-icon:hover {
  animation: flyPlane 0.8s ease;
}

@keyframes bounceGlow {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px) scale(1.08);
  }

  60% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
    box-shadow: 0 0 30px rgba(239, 144, 45, 0.45);
  }
}

@keyframes rotateCam {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(15deg) scale(1.08);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes pulseFilm {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(239, 144, 45, 0.45);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes flyPlane {
  0% {
    transform: translateX(0) rotate(0);
  }

  50% {
    transform: translateX(12px) translateY(-8px) rotate(-12deg);
  }

  100% {
    transform: translateX(0) rotate(0);
  }
}

/* responsive */
@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .process-grid::before {
    display: none;
  }

  .process-card h3 {
    font-size: 28px;
  }
}

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

  .process-section {
    padding: 80px 18px;
  }

  .process-heading h2 {
    font-size: 42px;
  }
}


/* WHY CHOOSE US */
.why-choose {
  background: whitesmoke;
  padding: 120px 6%;
  overflow: visible;
}

.why-choose__container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.why-choose__heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.why-choose__heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.why-choose__heading p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  perspective: 1200px;
  overflow: visible;
}

.why-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 38px 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-18px) translateZ(60px) scale(1.06);
  border-color: rgba(239, 144, 45, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 0 30px rgba(239, 144, 45, 0.15);
  z-index: 50;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 48px;
  height: 48px;
  stroke: #ffffff;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.3s ease;
}

.why-card:hover .why-icon svg {
  stroke: #ef902d;
}

.why-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #ef902d;
  line-height: 1.2;
  margin-bottom: 18px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* tablet */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    perspective: none;
  }

  .why-card:hover {
    transform: translateY(-12px) scale(1.04);
  }
}

/* mobile */
@media (max-width: 768px) {
  .why-choose {
    padding: 90px 5%;
  }

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

  .why-card {
    padding: 28px 22px;
  }

  .why-card h3 {
    font-size: 1.5rem;
  }

  .why-card p {
    font-size: 0.95rem;
  }

  .why-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* CONTACT PAGE */
.contact-page {
  background: #000;
  padding: 140px 6% 100px;
  min-height: 100vh;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 50px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.contact-form-card h1,
.contact-info-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-form-card p,
.contact-info-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 18px;
  transition: 0.3s ease;
  outline: none;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #ef902d;
  box-shadow: 0 0 0 4px rgba(239, 144, 45, 0.12);
}

.contact-form-card textarea {
  min-height: 180px;
  resize: none;
}

.contact-alert {
  border: 1px solid transparent;
  border-radius: 14px;
  display: none;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 22px;
  opacity: 0;
  padding: 15px 18px;
  transform: translateY(10px);
}

.contact-alert.is-visible {
  animation: contactAlertIn 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  display: block;
}

.contact-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.32);
  color: #86efac;
}

.contact-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.34);
  color: #fca5a5;
}

.contact-form-card button {
  width: 100%;
  background: #ef902d;
  border: none;
  color: #fff;
  padding: 18px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.35s ease;
}

.contact-form-card button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.contact-form-card button:hover {
  background: #ff9d37;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(239, 144, 45, 0.35);
}

.contact-form-card button:disabled:hover {
  background: #ef902d;
  box-shadow: none;
  transform: none;
}

@keyframes contactAlertIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.contact-info-item a,
.contact-info-item span {
  color: #ef902d;
  font-size: 1.05rem;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-info-item a:hover {
  color: #ffab4f;
}

/* TABLET */
@media (max-width: 1100px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-page {
    padding: 120px 5% 80px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card h1,
  .contact-info-card h2 {
    font-size: 2.2rem;
  }
}

/* FOOTER */
.site-footer {
  background: whitesmoke;
  padding: 90px 6% 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-logo .brand-mark {
  width: 54px;
  height: 54px;
  background: #111;
  color: #ef902d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.footer-logo .brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-logo .brand-copy span {
  color: #111;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-logo .brand-copy small {
  color: #555;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-brand p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 26px;
  max-width: 360px;
}

.footer-btn {
  display: inline-block;
  background: #ef902d;
  color: white;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.35s ease;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(239, 144, 45, 0.25);
}

.footer-column h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-column a,
.footer-column span {
  display: block;
  text-decoration: none;
  color: #444;
  font-size: 1rem;
  line-height: 2;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #ef902d;
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #555;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.footer-social a:hover {
  background: #ef902d;
  color: white;
  transform: translateY(-5px);
}

/* TABLET */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 70px 5% 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

html {
  scroll-behavior: smooth;
}

#about,
#work,
#services,
#contact {
  scroll-margin-top: 120px;
}

/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  background: #333;
}

#scrollTopBtn.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

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

/* Mobile */
@media (max-width: 768px) {
  #scrollTopBtn {
    right: 15px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* =========================
   PREMIUM CLIP REVEAL
========================= */

.image-reveal {
  overflow: hidden;
}

.image-reveal img {
  transform: scale(1.15);
  will-change: transform;
}

/* =========================================================
   RESPONSIVE HARDENING: MOBILE + TABLET ONLY
   Desktop >=1200px is intentionally untouched.
========================================================= */
@media (max-width: 1199px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  img,
  video,
  svg {
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(142px, 0.8fr) auto minmax(124px, 0.8fr);
    padding-inline: clamp(20px, 3vw, 36px);
  }

  .brand img {
    height: clamp(44px, 4.4vw, 52px);
  }

  .primary-nav {
    gap: clamp(12px, 1.6vw, 22px);
    padding: 12px 16px;
  }

  .primary-nav a,
  .header-cta,
  .hero-cta,
  .footer-btn,
  .contact-form-card button {
    min-height: 44px;
  }

  .header-cta {
    padding-inline: 16px;
    white-space: nowrap;
  }

  .hero {
    min-height: min(100svh, 860px);
  }

  .hero-content {
    width: min(100% - clamp(40px, 6vw, 72px), 920px);
  }

  .hero h1,
  .about-agency h2,
  .featured-work__heading h2,
  .services-showcase__heading h2,
  .process-heading h2,
  .why-choose__heading h2,
  .contact-form-card h1,
  .contact-info-card h2 {
    overflow-wrap: anywhere;
  }

  .about-agency__inner,
  .contact-container,
  .footer-container {
    width: min(100%, 100% - 0px);
  }

  .featured-work__container,
  .services-showcase__container,
  .process-container,
  .why-choose__container,
  .contact-container,
  .footer-container,
  .footer-bottom {
    max-width: 100%;
  }

  .featured-work__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  }

  .work-card {
    min-width: 0;
  }

  .work-card__video-wrap {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .services-showcase__container {
    padding-block: clamp(88px, 9vw, 112px);
  }

  .service-row {
    gap: clamp(44px, 6vw, 72px);
    min-height: auto;
    padding-block: clamp(64px, 7vw, 80px);
  }

  .service-content,
  .service-image {
    min-width: 0;
  }

  .service-content h3 {
    font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  }

  .service-image img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(42px, 5vw, 60px);
  }

  .process-grid::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 28px);
    perspective: none;
  }

  .why-card,
  .contact-form-card,
  .contact-info-card {
    min-width: 0;
  }

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

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

@media (max-width: 991px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 14px clamp(16px, 4vw, 26px);
  }

  .menu-toggle {
    display: grid;
    min-width: 46px;
    min-height: 46px;
    justify-self: end;
  }

  .primary-nav,
  .header-cta {
    position: fixed;
    right: clamp(14px, 4vw, 24px);
    left: clamp(14px, 4vw, 24px);
    z-index: 30;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .primary-nav {
    top: 82px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(7, 7, 8, 0.94);
    backdrop-filter: blur(18px);
  }

  .primary-nav a {
    padding: 16px 14px;
    font-size: 15px;
    line-height: 1.2;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    top: 404px;
    justify-self: stretch;
    width: auto;
  }

  .menu-open .primary-nav,
  .menu-open .header-cta {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hero-content {
    margin-top: clamp(120px, 16svh, 150px);
    margin-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 7vw, 4.4rem);
    letter-spacing: 0;
  }

  .hero-subtitle {
    font-size: clamp(0.98rem, 2.1vw, 1.12rem);
  }

  .about-agency__inner {
    grid-template-columns: 1fr;
  }

  .about-agency__media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-stats {
    margin-top: 0;
  }

  .services-showcase__heading {
    margin-bottom: clamp(56px, 8vw, 76px);
  }

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
  }

  .service-row--reverse .service-content,
  .service-row--reverse .service-image {
    order: initial;
  }

  .service-content {
    max-width: 760px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: clamp(32px, 5vw, 44px);
  }
}

@media (max-width: 767px) {
  .site-header.nav-hidden {
    transform: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    inset: 0;
    background-position: center top;
    transform: scale(1.04);
    will-change: auto;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin-top: clamp(112px, 15svh, 132px);
    margin-bottom: 124px;
  }

  .hero-kicker,
  .section-kicker {
    font-size: clamp(0.72rem, 3.2vw, 0.82rem);
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.5rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: clamp(0.95rem, 4.1vw, 1rem);
    line-height: 1.62;
  }

  .hero-cta {
    width: min(100%, 280px);
    min-height: 52px;
  }

  .logo-track {
    gap: clamp(28px, 8vw, 42px);
    padding: 18px 24px;
    animation-duration: 20s;
  }

  .logo-track img {
    height: clamp(30px, 8vw, 38px);
  }

  .about-agency,
  .featured-work,
  .services-showcase,
  .process-section,
  .why-choose,
  .contact-page,
  .site-footer {
    padding-inline: clamp(16px, 5vw, 24px);
  }

  .about-agency {
    padding-block: clamp(72px, 14vw, 90px);
  }

  .about-agency__inner {
    gap: 32px;
  }

  .about-agency h2,
  .featured-work__heading h2,
  .services-showcase__heading h2,
  .process-heading h2,
  .why-choose__heading h2,
  .contact-form-card h1,
  .contact-info-card h2 {
    font-size: clamp(2rem, 9.6vw, 3rem);
    line-height: 1.08;
  }

  .about-agency__content > p:not(.section-kicker),
  .services-showcase__heading p:last-child,
  .service-content p,
  .why-choose__heading p,
  .contact-form-card p,
  .contact-info-card p,
  .footer-brand p {
    font-size: clamp(0.95rem, 3.9vw, 1rem);
    line-height: 1.7;
  }

  .about-agency__media,
  .service-image {
    border-radius: 22px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .about-stats__item {
    min-height: 112px;
    padding: 24px 16px;
  }

  .about-stats__item + .about-stats__item {
    border-top: 1px solid rgba(247, 205, 161, 0.15);
    border-left: 0;
  }

  .featured-work {
    padding-block: clamp(76px, 14vw, 92px);
  }

  .featured-work__container {
    padding-inline: 0;
  }

  .featured-work__heading {
    margin-bottom: 40px;
  }

  .featured-work__grid,
  .process-grid,
  .why-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .work-card__content {
    padding: 20px;
  }

  .work-card__content h3,
  .why-card h3,
  .contact-info-item h3,
  .footer-column h3 {
    font-size: clamp(1.25rem, 5vw, 1.55rem);
  }

  .work-card__content p,
  .process-card p,
  .why-card p,
  .contact-info-item a,
  .contact-info-item span,
  .footer-column a,
  .footer-column span {
    font-size: clamp(0.94rem, 3.8vw, 1rem);
    overflow-wrap: anywhere;
  }

  .services-showcase {
    padding-block: 0;
  }

  .services-showcase__container {
    padding: clamp(76px, 14vw, 90px) 0;
  }

  .service-row {
    gap: 28px;
    margin-bottom: 0;
    padding-block: 46px;
  }

  .service-content h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .service-tags {
    gap: 10px;
  }

  .service-tags span {
    min-height: 44px;
    padding: 11px 15px;
    display: inline-flex;
    align-items: center;
  }

  .process-section {
    padding-block: clamp(76px, 14vw, 92px);
  }

  .process-heading {
    margin-bottom: 52px;
  }

  .process-heading h2 br {
    display: none;
  }

  .process-icon {
    width: 88px;
    height: 88px;
    font-size: 32px;
  }

  .process-card h3 {
    margin-top: 22px;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .why-choose {
    padding-block: clamp(76px, 14vw, 92px);
    overflow: hidden;
  }

  .why-choose__heading {
    margin-bottom: 44px;
  }

  .why-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .why-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .contact-page {
    padding-block: clamp(82px, 15vw, 104px);
  }

  .contact-container {
    gap: 22px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card input,
  .contact-form-card textarea {
    min-height: 52px;
    padding: 15px 16px;
    font-size: 16px;
  }

  .contact-form-card textarea {
    min-height: 150px;
  }

  .contact-form-card button {
    min-height: 52px;
  }

  .site-footer {
    padding-block: 64px 28px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: 44px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  #scrollTopBtn {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    height: 40px;
  }

  .primary-nav {
    top: 76px;
  }

  .header-cta {
    top: 398px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(2rem, 11.5vw, 2.85rem);
  }

  .about-agency__media,
  .service-image img,
  .work-card__video-wrap {
    aspect-ratio: 4 / 3;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px 16px;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .about-agency h2,
  .featured-work__heading h2,
  .services-showcase__heading h2,
  .process-heading h2,
  .why-choose__heading h2,
  .contact-form-card h1,
  .contact-info-card h2 {
    font-size: clamp(1.86rem, 10.5vw, 2.35rem);
  }

  .service-content h3 {
    font-size: clamp(1.82rem, 9.4vw, 2.2rem);
  }
}

@media (max-width: 767px), (pointer: coarse) and (max-width: 1199px) {
  .work-card:hover,
  .service-image:hover img,
  .why-card:hover,
  .footer-btn:hover,
  .footer-column a:hover,
  .footer-social a:hover,
  .contact-form-card button:hover,
  #scrollTopBtn:hover {
    transform: none;
  }
}
