*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #080808;
  --gray: #1a1a1a;
  --gray-mid: #2e2e2e;
  --gray-light: #7B7B7B;
  --accent: #ff0000;
  --font-display: Bebas Neue, sans-serif;
  --font-body: Barlow, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #080808;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  cursor: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

.cursor {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: normal;
}
.cursor.hover {
  width: 44px;
  height: 44px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-overlay.open {
  transform: translateX(0);
}
.menu-overlay a {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
  cursor: none;
}
.menu-overlay a:hover {
  color: #ff0000;
  letter-spacing: 0.12em;
}

.menu-close {
  position: absolute;
  top: 28px;
  right: 48px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  background: none;
  border: none;
  cursor: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.menu-close:hover {
  opacity: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  mix-blend-mode: difference;
  transition: opacity 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease, mix-blend-mode 0s;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav .logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease;
}
nav .logo.logo-hidden {
  opacity: 0;
  pointer-events: none;
}
nav .logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -47%);
  width: 214vh;
  height: 214vh;
  background: url("images/light.png") center/contain no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.menu-btn {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  background: none;
  border: none;
  cursor: none;
  position: relative;
  padding-right: 20px;
}
.menu-btn::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 4px;
  background: #ffffff;
}

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 48px 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.85;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 13vw, 155px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-squares {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-squares span {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}
.hero-squares span:hover {
  background: #ff0000;
}

.hero-desc {
  position: absolute;
  right: 5%;
  top: 64%;
  max-width: 324px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
#about {
  padding: 130px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.about-bg-text {
  position: absolute;
  top: 57%;
  left: 52%;
  transform: translate(-50%, -50%) scaleY(0.7);
  font-family: "Bebas Neue", sans-serif;
  font-size: 65rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  text-stroke: 1.5px rgba(255, 255, 255, 0.08);
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
}

.about-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-shape {
  position: absolute;
  object-fit: contain;
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-shape-1 {
  width: clamp(180px, 28vw, 340px);
  right: 21rem;
  top: 17px;
}
.about-shape-1.shape-visible {
  opacity: 0.5;
  transform: translateY(0);
}
.about-shape-1.shape-float {
  animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
  width: clamp(101px, 19vw, 260px);
  right: 21%;
  bottom: 8px;
}
.about-shape-2.shape-visible {
  opacity: 0.3;
  transform: translateY(0);
}
.about-shape-2.shape-float {
  animation: float 10s ease-in-out infinite;
  animation-delay: -4s;
}

.about-shape-3 {
  width: clamp(100px, 16vw, 138px);
  right: 38.5%;
  bottom: 26%;
}
.about-shape-3.shape-visible {
  opacity: 0.3;
  transform: translateY(0);
}
.about-shape-3.shape-float {
  animation: float 10s ease-in-out infinite;
  animation-delay: -6s;
}

.about-shape-4 {
  width: clamp(100px, 16vw, 127px);
  right: 37%;
  bottom: 13px;
}
.about-shape-4.shape-visible {
  opacity: 0.3;
  transform: translateY(0);
}
.about-shape-4.shape-float {
  animation: float 10s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-14px) rotate(2deg);
  }
  70% {
    transform: translateY(-6px) rotate(-1.5deg);
  }
}
.about-left {
  z-index: 2;
  position: relative;
}
.about-left::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 12%;
  transform: translate(-50%, -50%);
  width: 214vh;
  height: 214vh;
  background: url("images/light.png") center/contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.about-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-title span {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #ffffff;
  flex-shrink: 0;
}

.about-text {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  max-width: 100%;
}
.about-text strong {
  color: #ffffff;
  font-weight: 600;
}

.about-right {
  z-index: 2;
  width: 34rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  width: 260px;
  height: 23rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  border-radius: 1rem;
}
.about-card:hover {
  transform: translateY(-6px);
}

.card-photo {
  width: 100%;
  height: 367px;
  object-fit: cover;
  display: block;
}

#realisations {
  padding: 90px 0 0;
  overflow: hidden;
}

.realisations-header {
  padding: 0 48px;
  margin-bottom: 52px;
}

.realisations-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 10vw, 130px);
  line-height: 0.9;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.projects-scroll {
  display: flex;
  gap: 7rem;
  padding: 0 48px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  align-items: center;
  top: -8rem;
  height: 95vh;
  position: relative;
}
.projects-scroll::-webkit-scrollbar {
  display: none;
}
.projects-scroll:active {
  cursor: grabbing;
}

.project-card {
  flex: 0 0 52%;
  background: transparent;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: none;
  position: relative;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 3;
}
.project-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 102%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  z-index: 3;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.project-card:hover .project-thumb {
  transform: scale(1.05);
}
.project-card:hover .project-thumb-overlay {
  background: rgba(0, 0, 0, 0.45);
}
.project-card:hover .play-btn {
  transform: scale(1);
}

.connector-svg {
  top: -70px !important;
}

.end-location {
  top: 5rem;
  position: relative;
}

.project-thumb-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 53vh;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-left: 3px;
}

.project-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.project-meta {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-dash {
  width: 35px;
  height: 4px;
  background: #ffffff;
  flex-shrink: 0;
}

.project-dash-info {
  width: 15px;
  height: 2px;
  background: #ffffff;
  flex-shrink: 0;
}

.project-title-card,
.project-client {
  font-size: 1.3rem;
  font-weight: lighter;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.project-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff0000;
  border: 1px solid rgba(200, 169, 110, 0.35);
  padding: 4px 9px;
}

.arrow-btn {
  display: none;
}

.watch-btn {
  width: 46px;
  height: 46px;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #080808;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: none;
  transition: background 0.3s ease, transform 0.2s ease;
  position: relative;
  top: -2rem;
}
.watch-btn:hover {
  background: #ff0000;
  transform: scale(1.08);
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  outline: none;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
  position: absolute;
  top: 28px;
  right: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.video-modal-close:hover {
  opacity: 1;
}

.spheres-row {
  display: flex;
  align-items: flex-end;
  padding: 60px 48px 50px;
  gap: 0;
  position: relative;
  top: 6rem;
}

.boule-img {
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: lighten;
}

.plaque-img {
  object-fit: contain;
  flex-shrink: 0;
}

.plaque {
  width: 250px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%) scale(1.5);
  z-index: 2;
}

.plaque2 {
  top: 25%;
  left: 13rem;
}

.plaque3 {
  top: -1%;
  left: 27rem;
  z-index: 4;
}

.sphere {
  width: 175px;
  height: 249px;
  position: relative;
  left: -2rem;
  top: -1rem;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
}

.sphere-2 {
  width: 201px;
  height: 249px;
  position: relative;
  top: -7.2rem;
  left: 2.5rem;
}

.sphere-3 {
  width: 175px;
  height: 249px;
  position: relative;
  top: -12.5rem;
  left: 4rem;
  z-index: 4;
}

.sphere-4 {
  width: 69px;
  height: 76px;
  position: relative;
  left: 7rem;
  top: -21rem;
}

.sphere-5 {
  width: 46px;
  height: 76px;
  position: relative;
  left: 9rem;
  top: -24rem;
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #ffffff;
  color: #080808;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 9000;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

#contact {
  padding: 110px 48px 90px;
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.9;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.contact-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #ff0000;
  margin: 18px auto 0;
}

.contact-intro {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  max-width: 100%;
  text-align: center;
}
.contact-intro strong {
  color: #ffffff;
  font-weight: 600;
}

.contact-info {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  max-width: 100%;
}
.contact-info strong {
  color: #ffffff;
  font-weight: 600;
}
.contact-info a {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 60px;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: none;
}
.social-icon:hover {
  background: #ff0000;
  transform: translateY(-3px);
}

.contact-form {
  max-width: 77%;
  margin: 0 auto;
}

.form-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.form-row.cols-1 {
  grid-template-columns: 1fr;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #080808;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  outline: none;
  resize: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #080808;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: #ffffff;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}
.form-group textarea {
  text-transform: none;
  height: 145px;
}

.msg-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.captcha-group .captcha-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-group .captcha-question {
  min-width: 110px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 12px;
  user-select: none;
}
.captcha-group input {
  flex: 1;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 22px;
  gap: 24px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
}
.form-consent input[type=checkbox] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #ff0000;
  cursor: none;
}
.form-consent label {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: #ffffff;
  cursor: none;
}
.form-consent label strong {
  color: #080808;
  font-weight: 600;
}

.submit-btn {
  background: #ffffff;
  color: #080808;
  border: none;
  padding: 17px 44px;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
}
.submit-btn:hover {
  background: #ff0000;
  transform: translateY(-2px);
}
.submit-btn:active {
  transform: translateY(0);
}

.legal-page-body {
  background: #080808;
  color: #ffffff;
}

.legal-page {
  width: min(980px, 92%);
  margin: 48px auto 64px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 22px;
  line-height: 1.7;
}
.legal-page h1,
.legal-page h2,
.legal-page h3 {
  margin: 0 0 14px;
  line-height: 1.25;
}
.legal-page h1 {
  letter-spacing: 0.5px;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: #ffffff;
}
.legal-page .subtitle {
  color: #ffffff;
  margin: 0 0 26px;
  font-size: 1rem;
}
.legal-page section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.legal-page h2 {
  color: #ffffff;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  margin-bottom: 10px;
}
.legal-page p {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 400;
}
.legal-page ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.legal-page li {
  margin-bottom: 6px;
}
.legal-page a {
  color: #ff0000;
}

.legal-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

footer {
  background-color: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 48px 0;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.22em;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s ease;
  cursor: none;
}
.footer-logo:hover {
  color: #ff0000;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff0000;
}

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.38);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: none;
}
.footer-social-icon:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #080808;
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
  cursor: none;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff0000;
  transition: width 0.3s ease;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-nav a:hover::after {
  width: 100%;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-heading {
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-list li svg {
  flex-shrink: 0;
  color: #ff0000;
  opacity: 0.8;
}
.footer-contact-list li a,
.footer-contact-list li span {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: none;
}
.footer-contact-list li a:hover {
  color: #ffffff;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.45);
  color: #ff0000;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: none;
  align-self: flex-start;
}
.footer-cta:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #080808;
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(200, 169, 110, 0.25) 50%, rgba(255, 255, 255, 0.08) 80%, transparent);
  position: relative;
  z-index: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 28px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  justify-content: unset;
}
.footer-legal a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: none;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.footer-legal span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
}

.footer-made {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
  a, button, input, textarea, label {
    cursor: auto;
  }
  nav {
    padding: 20px 24px;
    mix-blend-mode: normal;
    background: transparent;
    justify-content: flex-end;
  }
  nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
  }
  .logo {
    display: none;
  }
  .menu-btn {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    padding-right: 14px;
  }
  .menu-btn::after {
    right: -1.8rem;
    width: 36px;
    height: 3px;
  }
  .menu-close {
    right: 24px;
    top: 20px;
    font-size: 1.2rem;
  }
  #hero {
    padding: 110px 24px 80px;
    min-height: 100svh;
    justify-content: flex-start;
  }
  .hero-video {
    object-fit: revert;
    width: 221%;
    height: 121%;
    top: -4rem;
    left: -40.5rem;
  }
  .hero-title {
    font-size: clamp(58px, 18vw, 139px);
    line-height: 0.9;
    position: relative;
    top: 2rem;
  }
  .hero-squares {
    display: none;
  }
  .hero-desc {
    right: 4%;
    top: 76%;
    max-width: 74%;
    font-size: 1.9rem;
    text-align: end;
  }
  .scroll-indicator {
    bottom: 24px;
  }
  #about {
    grid-template-columns: 1fr;
    padding: 60px 56px 207px;
    gap: 36px;
  }
  .about-bg-text {
    font-size: 44rem;
    left: 50%;
    top: 87%;
    z-index: 3;
  }
  .about-left::before {
    display: none;
  }
  .about-title {
    font-size: clamp(52px, 10vw, 130px);
    margin-bottom: 20px;
  }
  .about-title span {
    display: none;
  }
  .about-text {
    font-size: 1.7rem;
    line-height: 1.75;
  }
  .about-right {
    width: 100%;
    justify-content: flex-start;
  }
  .about-card {
    width: 100%;
    height: 57vh;
    border-radius: 0.75rem;
  }
  .card-photo {
    height: -webkit-fill-available;
  }
  .about-shape-1 {
    width: clamp(120px, 40vw, 235px);
    right: -78px;
    top: 3%;
  }
  .about-shape-2 {
    top: 21%;
    left: 91%;
  }
  .about-shape-3 {
    top: 23%;
    left: 81%;
    width: 8%;
  }
  .about-shape-4 {
    top: 38%;
    left: 85%;
    width: 19%;
  }
  .projects-scroll {
    height: 76vh;
  }
  .project-card {
    flex: 0 0 77%;
  }
  .project-title-card, .project-client {
    font-size: 1.5rem;
  }
  .connector-svg {
    top: -52px !important;
  }
  .watch-btn {
    width: 83px;
    height: 68px;
  }
  .watch-btn svg {
    width: 33;
    height: 33;
  }
  #contact {
    padding: 60px 56px 60px;
  }
  .contact-title {
    font-size: clamp(40px, 14vw, 68px);
  }
  .contact-intro {
    font-size: 13px;
    margin: 24px auto 32px;
    padding: 0 4px;
  }
  .contact-info {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .social-icons {
    margin-bottom: 36px;
  }
  .contact-form {
    max-width: 100%;
  }
  .form-row.cols-2 {
    grid-template-columns: 1fr;
  }
  .captcha-group .captcha-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .captcha-group .captcha-question {
    width: 100%;
    min-width: 0;
  }
  .form-footer {
    flex-direction: column;
    gap: 16px;
  }
  .form-consent label {
    color: #080808;
    font-size: 11px;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    cursor: auto;
  }
  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
  .video-modal video {
    max-width: 95vw;
    max-height: 60vh;
  }
  .video-modal-close {
    top: 16px;
    right: 16px;
  }
}
@media (max-width: 640px) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
  a, button, input, textarea, label {
    cursor: auto;
  }
  nav {
    padding: 20px 20px;
    mix-blend-mode: normal;
    background: transparent;
    justify-content: flex-end;
  }
  nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
  }
  .logo {
    display: none;
  }
  .menu-btn {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    padding-right: 14px;
  }
  .menu-btn::after {
    right: -1.8rem;
    width: 36px;
    height: 3px;
  }
  .menu-close {
    right: 20px;
    top: 20px;
    font-size: 1.2rem;
  }
  #hero {
    padding: 110px 20px 80px;
    min-height: 100svh;
    justify-content: flex-start;
  }
  .hero-video {
    object-fit: revert;
    width: 232%;
    height: 121%;
    top: -4rem;
    left: -16.5rem;
  }
  .hero-title {
    font-size: clamp(58px, 18vw, 80px);
    line-height: 0.9;
    position: relative;
    top: 2rem;
  }
  .hero-squares {
    display: none;
  }
  .hero-desc {
    right: 4%;
    top: 66%;
    max-width: 315px;
    font-size: 1.2rem;
    text-align: end;
  }
  .scroll-indicator {
    bottom: 24px;
  }
  #about {
    grid-template-columns: 1fr;
    padding: 60px 20px 103px;
    gap: 36px;
  }
  .about-bg-text {
    font-size: 19rem;
    left: 50%;
    top: 91%;
    z-index: 3;
  }
  .about-left::before {
    display: none;
  }
  .about-title {
    font-size: clamp(40px, 14vw, 64px);
    margin-bottom: 20px;
  }
  .about-title span {
    display: none;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.75;
  }
  .about-right {
    width: 100%;
    justify-content: flex-start;
  }
  .about-card {
    width: 100%;
    height: 388px;
    border-radius: 0.75rem;
  }
  .card-photo {
    height: -webkit-fill-available;
  }
  .about-shape-1 {
    width: clamp(120px, 40vw, 180px);
    right: -78px;
    top: 7%;
  }
  .about-shape-2 {
    top: 22%;
    left: 91%;
  }
  .about-shape-3 {
    top: 27%;
    left: 73%;
    width: 19%;
  }
  .about-shape-4 {
    top: 38%;
    left: 85%;
    width: 19%;
  }
  #realisations {
    padding: 8rem 0 5rem;
  }
  .realisations-header {
    padding: 0 20px;
    margin-bottom: 62px;
  }
  .realisations-title {
    font-size: clamp(40px, 14vw, 64px);
    line-height: 0.9;
  }
  .projects-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 20px 20px;
    height: auto;
    min-height: unset;
    top: 0;
    overflow: hidden;
    cursor: default;
    align-items: stretch;
  }
  .project-card {
    flex: none;
    width: 100%;
  }
  .project-card::before, .project-card::after {
    display: none;
  }
  .project-card.card-hidden-mobile {
    display: none;
  }
  .end-location,
  .top-location {
    top: 0;
    position: relative;
  }
  .project-thumb-wrap {
    height: 52vw;
    min-height: 190px;
  }
  .project-title-card,
  .project-client {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }
  .project-dash {
    width: 28px;
  }
  .project-dash-info {
    width: 12px;
  }
  .project-meta {
    padding: 12px 4px;
  }
  .project-meta .watch-btn {
    top: 0;
    position: static;
    width: 40px;
    height: 40px;
  }
  .arrow-btn {
    display: none;
  }
  .connector-svg {
    display: none;
  }
  .mobile-carousel-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.2rem 20px 0.5rem;
  }
  .mobile-arrow-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: none;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: auto;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
  }
  .mobile-arrow-btn:hover:not(:disabled) {
    background: #ffffff;
    color: #080808;
    transform: scale(1.08);
  }
  .mobile-arrow-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }
  .mobile-page-indicator {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    min-width: 40px;
    text-align: center;
  }
  .spheres-row {
    padding: 30px 20px 20px;
    top: 56px;
    gap: 0;
    overflow: unset;
    height: 160px;
    justify-content: center;
  }
  .spheres-row::before {
    content: "";
    position: absolute;
    top: 31%;
    right: -11px;
    transform: translateY(-50%);
    width: 579px;
    height: 579px;
    background: url("images/light.png") center/contain no-repeat;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
  }
  .plaque {
    width: 110px;
    height: 120px;
    left: -1.5rem;
    transform: translateY(-50%) scale(1.2);
  }
  .plaque2 {
    left: 3rem;
    top: 30%;
    z-index: 3;
  }
  .plaque3 {
    left: 7.5rem;
    top: 9%;
    z-index: 4;
  }
  .sphere {
    width: 65px;
    height: 110px;
    left: -3.5rem;
    top: -0.5rem;
  }
  .sphere-2 {
    width: 65px;
    height: 110px;
    top: -2.5rem;
    left: -3rem;
  }
  .sphere-3 {
    width: 65px;
    height: 110px;
    top: -4.5rem;
    left: -2.5rem;
  }
  .sphere-4 {
    width: 32px;
    height: 36px;
    left: -1.5rem;
    top: -9rem;
  }
  .sphere-5 {
    width: 22px;
    height: 36px;
    left: 0rem;
    top: -10.5rem;
  }
  #contact {
    padding: 60px 20px 60px;
  }
  .contact-title {
    font-size: clamp(40px, 14vw, 68px);
  }
  .contact-intro {
    font-size: 13px;
    margin: 24px auto 32px;
    padding: 0 4px;
  }
  .contact-info {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .social-icons {
    margin-bottom: 36px;
  }
  .contact-form {
    max-width: 100%;
  }
  .form-row.cols-2 {
    grid-template-columns: 1fr;
  }
  .captcha-group .captcha-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .captcha-group .captcha-question {
    width: 100%;
    min-width: 0;
  }
  .form-footer {
    flex-direction: column;
    gap: 16px;
  }
  .form-consent label {
    color: #ffffff;
    font-size: 11px;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
  footer {
    padding: 52px 20px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-logo {
    font-size: 22px;
  }
  .footer-nav,
  .footer-contact-col {
    gap: 14px;
  }
  .footer-cta {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0 24px;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-made {
    font-size: 10px;
  }
  .footer-social-icon {
    cursor: auto;
  }
  .footer-logo,
  .footer-cta,
  .footer-nav a,
  .footer-contact-list a,
  .footer-legal a {
    cursor: auto;
  }
  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
  .video-modal video {
    max-width: 95vw;
    max-height: 60vh;
  }
  .video-modal-close {
    top: 16px;
    right: 16px;
  }
}
@media (max-width: 768px) {
  .hero-desc {
    font-size: 1.4rem;
  }
  .hero-video {
    left: -30.5rem;
  }
  .legal-page {
    padding: 40px 42px;
  }
}
@media (max-width: 447px) {
  .hero-title {
    top: 3rem;
  }
  .hero-desc {
    font-size: 1rem;
    padding-top: 3rem;
  }
  .hero-video {
    left: -17.5rem;
  }
}
@media (max-width: 375px) {
  .hero-title {
    top: -2rem;
  }
  .hero-desc {
    font-size: 0.9rem;
    padding-top: 1rem;
  }
  .hero-video {
    left: -16.5rem;
  }
}
@media (max-width: 344px) {
  .hero-title {
    top: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
    padding-top: 1rem;
  }
  .hero-video {
    left: -14.5rem;
  }
}

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