@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --color-accent: #7ec8e3;
  --color-accent-dark: #185fa5;
  --color-gold: #c8a96a;
  --color-hero-bg: #1a2035;
  --color-light-1: #e8edf5;
  --color-light-2: #d4dff0;
  --color-dark-deep: #060810;
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, 0.4);
  --color-text-dark: #1a2035;
  --color-text-dark-muted: rgba(26, 32, 53, 0.5);
  --font-display: Bebas Neue, sans-serif;
  --font-body: Space Grotesk, sans-serif;
  --duration-fast: 0.25s;
  --duration-base: 0.45s;
  --duration-slow: 0.8s;
  --duration-title: 4s;
  --stagger-title: 0.7s;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --section-padding-y: clamp(60px, 8vw, 120px);
  --section-padding-x: clamp(24px, 6vw, 96px);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: #7ec8e3;
  color: #1a2035;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a2035;
}

.t-display {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 10vw, 88px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.t-section {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.t-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.5;
}

.t-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.t-small {
  font-size: 13px;
  line-height: 1.5;
}

.t-light {
  color: #ffffff;
}

.t-light-muted {
  color: rgba(255, 255, 255, 0.4);
}

.t-dark {
  color: #1a2035;
}

.t-dark-muted {
  color: rgba(26, 32, 53, 0.5);
}

.t-accent {
  color: #7ec8e3;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 96px);
}

.grid {
  display: grid;
  gap: clamp(16px, 3vw, 32px);
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid--gallery {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
}
.grid--gallery .grid__item--featured {
  grid-row: span 2;
}
@media (max-width: 767px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
  .grid--gallery {
    grid-template-columns: 1fr;
  }
  .grid--gallery .grid__item--featured {
    grid-row: span 1;
  }
}

.section {
  position: relative;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
}

.hero {
  background: #1a2035;
}

.showreel {
  background: #e8edf5;
}

.gallery {
  background: #d4dff0;
}

.services {
  background: #e8edf5;
}

.about {
  background: #d4dff0;
}

.contact {
  background: #060810;
}

.section--fullscreen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section__media-bg video,
.section__media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section__media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 32, 53, 0.88) 0%, rgba(26, 32, 53, 0.3) 50%, rgba(26, 32, 53, 0.15) 100%);
}

.section__content {
  position: relative;
  z-index: 1;
}

.sep {
  position: relative;
  height: 8vw;
}
.sep::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  right: -2px;
}

.sep--a::before {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.sep--b::before {
  transform: skewY(3deg);
  transform-origin: top right;
}

.sep--hero-showreel {
  background: #e8edf5;
}

.sep--hero-showreel::before {
  background: #1a2035;
}

.sep--showreel-gallery {
  background: #d4dff0;
}

.sep--showreel-gallery::before {
  background: #e8edf5;
}

.sep--gallery-services {
  background: #e8edf5;
}

.sep--gallery-services::before {
  background: #d4dff0;
}

.sep--services-about {
  background: #d4dff0;
}

.sep--services-about::before {
  background: #e8edf5;
}

.sep--about-contact {
  background: #060810;
}

.sep--about-contact::before {
  background: #d4dff0;
}

.sep--line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #7ec8e3 15%, #7ec8e3 85%, transparent 100%);
  opacity: 0.65;
  z-index: 1;
}

.sep--a.sep--line::after {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.sep--b.sep--line::after {
  transform: skewY(3deg);
  transform-origin: top right;
}

.sidenav {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 767px) {
  .sidenav {
    display: none;
  }
}

.sidenav__line {
  width: 1px;
  height: 24px;
  background: currentColor;
  opacity: 0.25;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidenav__item {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.sidenav__item:hover {
  opacity: 1;
}
.sidenav__item.is-active {
  opacity: 1;
}

.sidenav__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7ec8e3;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.sidenav__item.is-active + .sidenav__dot {
  opacity: 1;
}

.sidenav--on-dark .sidenav__line {
  background: rgba(255, 255, 255, 0.35);
}
.sidenav--on-dark .sidenav__item {
  color: #ffffff;
  opacity: 0.75;
}
.sidenav--on-dark .sidenav__item:hover, .sidenav--on-dark .sidenav__item.is-active {
  color: #ffffff;
  opacity: 1;
}
.sidenav--on-dark .sidenav__dot {
  background: #7ec8e3;
}

.sidenav--on-light .sidenav__line {
  background: rgba(26, 32, 53, 0.35);
}
.sidenav--on-light .sidenav__item {
  color: #1a2035;
  opacity: 0.75;
}
.sidenav--on-light .sidenav__item:hover, .sidenav--on-light .sidenav__item.is-active {
  color: #1a2035;
  opacity: 1;
}
.sidenav--on-light .sidenav__dot {
  background: #185fa5;
}

.scroll-top {
  position: fixed;
  bottom: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: #7ec8e3;
  border-color: #7ec8e3;
  color: #1a2035;
  transform: translateY(-3px);
}
.scroll-top:active {
  transform: scale(0.95);
}

.scroll-top svg {
  display: block;
  width: 14px;
  height: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wipeIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(126, 200, 227, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(126, 200, 227, 0.2);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title__line {
  display: block;
  overflow: visible;
}

.hero-title__letter {
  display: inline-block;
  opacity: 0;
  filter: blur(20px);
}
@media (prefers-reduced-motion: reduce) {
  .hero-title__letter {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.hero-title__letter.is-animated {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) !important;
}

.hero-title__tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(126, 200, 227, 0.6);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title__tag.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title__tag {
    opacity: 1;
  }
}

.hero-title__sub {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title__sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-title__sub {
    opacity: 1;
    transform: none;
  }
}

.hero-title__cta {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-title__cta {
    opacity: 1;
    transform: none;
  }
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

[data-reveal=up] {
  transform: translateY(32px);
}

[data-reveal=left] {
  transform: translateX(-32px);
}

[data-reveal=right] {
  transform: translateX(32px);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.6s;
}

[data-reveal-delay="7"] {
  transition-delay: 0.7s;
}

[data-reveal-delay="8"] {
  transition-delay: 0.8s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background: #7ec8e3;
  color: #1a2035;
}
.btn--primary:hover {
  background: rgb(92.476433121, 185.7070063694, 219.723566879);
}
.btn--outline {
  background: transparent;
  color: #7ec8e3;
  border: 1px solid rgba(126, 200, 227, 0.5);
}
.btn--outline:hover {
  background: rgba(126, 200, 227, 0.08);
  border-color: #7ec8e3;
}
.btn--outline-dark {
  background: transparent;
  color: #1a2035;
  border: 1px solid rgba(26, 32, 53, 0.35);
}
.btn--outline-dark:hover {
  background: rgba(26, 32, 53, 0.06);
  border-color: #1a2035;
}
.btn--pulse {
  animation: pulse 2.5s ease infinite;
}

.nav-link {
  position: relative;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.5;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover, .nav-link.is-active {
  opacity: 1;
}
.nav-link:hover::after, .nav-link.is-active::after {
  width: 100%;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item__img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-item__img {
  transform: scale(1.06);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 53, 0);
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(26, 32, 53, 0.65);
}

.service-item {
  border-left: 2px solid #7ec8e3;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item:hover {
  padding-left: 6px;
  background: rgba(126, 200, 227, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #1a2035;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 32, 53, 0.92) 0%, rgba(26, 32, 53, 0.45) 50%, rgba(26, 32, 53, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(24px, 6vw, 96px);
  max-width: 900px;
}

.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 10vw, 88px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
}

.hero__title-line {
  display: block;
  overflow: visible;
}

.hero__letter {
  display: inline-block;
  opacity: 0;
  filter: blur(20px);
}
@media (prefers-reduced-motion: reduce) {
  .hero__letter {
    opacity: 1;
    filter: none;
    transform: none !important;
  }
}

.hero__tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(126, 200, 227, 0.6);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__tag.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero__tag {
    opacity: 1;
  }
}

.hero__sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  max-width: 420px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero__sub {
    opacity: 1;
    transform: none;
  }
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero__actions {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: clamp(70px, 10vw, 100px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 3s;
}
.hero__scroll.is-visible {
  opacity: 1;
}

.hero__scroll-text {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126, 200, 227, 0.45);
  animation: scrollBounce 2s ease infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(126, 200, 227, 0.3);
  animation: scrollLine 2s ease infinite;
}

.showreel {
  position: relative;
  background: #e8edf5;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
}

.showreel__header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.showreel__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 32, 53, 0.5);
  display: block;
  margin-bottom: 10px;
}

.showreel__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a2035;
}

.showreel__video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 16/9;
  transform: scale(0.82);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  overflow: hidden;
}
.showreel__video-wrap.is-open {
  transform: scale(1);
}

.showreel__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 14%;
  background: #060810;
  z-index: 10;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.showreel__bar--top {
  top: 0;
}
.showreel__bar--bottom {
  bottom: 0;
}
.showreel__video-wrap.is-open .showreel__bar {
  height: 0;
}

.showreel__thumbnail {
  position: absolute;
  inset: 0;
  z-index: 9;
}
.showreel__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showreel__thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 53, 0.4);
}

.showreel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(126, 200, 227, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.showreel__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(126, 200, 227, 0.12);
  border-color: #7ec8e3;
}

.showreel__play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #7ec8e3;
  margin-left: 5px;
}

.showreel__stats {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  margin-top: clamp(32px, 5vw, 56px);
}

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

.showreel__stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  color: #1a2035;
  letter-spacing: 0.04em;
}

.showreel__stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 32, 53, 0.5);
}

.gallery {
  position: relative;
  background: #d4dff0;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
}

.gallery__header {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.gallery__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 32, 53, 0.5);
  display: block;
  margin-bottom: 10px;
}

.gallery__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a2035;
}

.gallery__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.gallery__filter {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 40px;
  border: 1px solid rgba(26, 32, 53, 0.2);
  cursor: pointer;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__filter:hover, .gallery__filter.is-active {
  background: #185fa5;
  color: #ffffff;
  border-color: #185fa5;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 35vh);
  gap: clamp(6px, 1vw, 12px);
}
@media (max-width: 639px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  min-height: 0;
}
.gallery__item--featured {
  grid-row: span 2;
}
@media (max-width: 639px) {
  .gallery__item--featured {
    grid-row: span 1;
  }
}

.gallery__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__item-img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 53, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(14px, 2vw, 24px);
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__item-overlay {
  background: rgba(26, 32, 53, 0.7);
}

.gallery__item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.04em;
  color: #ffffff;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__item-title {
  transform: translateY(0);
  opacity: 1;
}

.gallery__item-cat {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8e3;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.gallery__item:hover .gallery__item-cat {
  transform: translateY(0);
  opacity: 1;
}

.services {
  position: relative;
  background: #e8edf5;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
}

.services__header {
  margin-bottom: clamp(24px, 4vw, 48px);
  max-width: 600px;
}

.services__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 32, 53, 0.5);
  display: block;
  margin-bottom: 10px;
}

.services__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a2035;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 720px;
}

.services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 4px;
  border-left: 2px solid #7ec8e3;
  background: rgba(212, 223, 240, 0.6);
  cursor: default;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding-left 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__item:hover {
  background: rgba(126, 200, 227, 0.08);
  padding-left: 28px;
  border-color: #185fa5;
}

.services__item-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #1a2035;
}

.services__item-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #185fa5;
}

.about {
  position: relative;
  background: #d4dff0;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 767px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
}
@media (max-width: 767px) {
  .about__photo-wrap {
    aspect-ratio: 16/9;
  }
}

.about__photo {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 28px);
}

.about__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 32, 53, 0.5);
}

.about__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a2035;
}

.about__quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #185fa5;
  padding-left: 16px;
  border-left: 3px solid #7ec8e3;
}

.about__text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 32, 53, 0.5);
}

.contact {
  position: relative;
  background: #060810;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
  padding-top: calc(clamp(60px, 8vw, 120px) + 14%);
}

.contact__inner {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
}

.contact__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(126, 200, 227, 0.5);
}

.contact__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__field {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px 4px 0 0;
  padding: 14px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: #ffffff;
  width: 100%;
  transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact__field::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.contact__field:focus {
  outline: none;
  border-color: #7ec8e3;
  background: rgba(126, 200, 227, 0.08);
}

textarea.contact__field {
  min-height: 120px;
  resize: vertical;
}

.contact__submit {
  align-self: flex-start;
  margin-top: 8px;
  animation: pulse 2.5s ease infinite;
}

.scroll-top {
  position: fixed;
  bottom: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 80;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: #7ec8e3;
  border-color: #7ec8e3;
  color: #1a2035;
  transform: translateY(-3px);
}
.scroll-top:active {
  transform: scale(0.95);
}

.scroll-top__arrow {
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(-45deg) translate(1px, 2px);
}

.scroll-top--on-dark {
  color: #7ec8e3;
  background: rgba(26, 32, 53, 0.55);
}

.scroll-top--on-light {
  color: #1a2035;
  background: rgba(232, 237, 245, 0.65);
}

.footer {
  background: #060810;
  border-top: 1px solid rgba(126, 200, 227, 0.08);
  padding: 20px clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8e3;
}

.footer__copy {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__link:hover {
  color: #7ec8e3;
}

@media (max-width: 767px) {
  .hero__content {
    padding: 20px;
    text-align: center;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .showreel__stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .showreel__stat-num {
    font-size: 28px;
  }
  .showreel__stat-label {
    font-size: 10px;
    text-align: center;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--featured {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery__item:not(.gallery__item--featured) {
    aspect-ratio: 4/3;
  }
  .services__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }
  .services__item-tag {
    font-size: 10px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about__photo-wrap {
    aspect-ratio: 16/9;
  }
  .contact__submit {
    width: 100%;
    justify-content: center;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .showreel__video-wrap {
    max-width: 720px;
  }
  .about {
    gap: 40px;
  }
}
.mobile-nav {
  display: none;
}
@media (max-width: 767px) {
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-nav.is-scrolled {
    background: rgba(26, 32, 53, 0.92);
    backdrop-filter: blur(8px);
  }
}

.mobile-nav__logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8e3;
  text-decoration: none;
}

.mobile-nav__burger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 91;
}

.mobile-nav__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav__burger.is-open .mobile-nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav__burger.is-open .mobile-nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-nav__burger.is-open .mobile-nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav--on-dark {
  color: #ffffff;
}

.mobile-nav--on-light {
  color: #1a2035;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 32, 53, 0.97);
  z-index: 89;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.mobile-nav__link {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 8vw, 42px);
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav__link:hover, .mobile-nav__link.is-active {
  opacity: 1;
  color: #7ec8e3;
}

.mobile-nav__footer {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-hidden {
  display: none !important;
}

.u-visible {
  visibility: visible;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-pointer {
  cursor: pointer;
}

.u-no-pointer {
  pointer-events: none;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-flex-column {
  display: flex;
  flex-direction: column;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-nowrap {
  white-space: nowrap;
}

.u-text-accent {
  color: #7ec8e3;
}

.u-text-light {
  color: #ffffff;
}

.u-text-dark {
  color: #1a2035;
}

.u-text-muted {
  color: rgba(26, 32, 53, 0.5);
}

.u-w-full {
  width: 100%;
}

.u-h-full {
  height: 100%;
}

.u-mw-content {
  max-width: 720px;
  margin-inline: auto;
}

.u-will-change-transform {
  will-change: transform;
}

.u-will-change-opacity {
  will-change: opacity;
}

@media print {
  .sidenav,
  .scroll-top,
  .hero__video,
  .hero__scroll,
  .showreel__video-wrap,
  .gallery__filters {
    display: none !important;
  }
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  [class*=section--cut],
  .hero,
  .showreel,
  .gallery,
  .services,
  .about,
  .contact {
    clip-path: none !important;
    margin-bottom: 0 !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  .container {
    max-width: 100%;
    padding: 0;
  }
}

/*# sourceMappingURL=main.css.map */
