@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/IBMPlexMono-Bold.ttf") format("truetype");
}

:root {
  --bg: #000000;
  --text: #e4ddd7;
  --muted: rgba(228, 221, 215, 0.68);
  --line: rgba(228, 221, 215, 0.2);
  --accent: #ff7900;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.38' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23grain)' opacity='0.62'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  mix-blend-mode: screen;
  content: "";
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.96);
  transition: opacity 480ms ease, visibility 480ms ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-wrap {
  width: min(420px, 80vw);
}

.loading-wrap p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.loading-track {
  width: 100%;
  height: 3px;
  background: rgba(228, 221, 215, 0.2);
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: var(--accent);
  transition: width 140ms linear;
}

.loading-number {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 12;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2.8vw, 36px);
  transition: background 260ms ease, border-color 260ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(228, 221, 215, 0.16);
  backdrop-filter: blur(3px);
}

.header-logo {
  width: clamp(74px, 8vw, 122px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quote-link,
.language-toggle {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 0;
}

.page-shell {
  position: relative;
  z-index: 4;
}

.hero-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 16vh 5vw 18vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
}

.hero-reel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) brightness(0.88);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.56)
  );
  content: "";
}

.hero-logo-wrap {
  margin: 0;
}

.hero-logo {
  width: min(74vw, 920px);
  height: auto;
}

.brand-strip {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: var(--accent);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: strip-roll 18s linear infinite;
}

.strip-track span {
  padding: 10px clamp(18px, 2.6vw, 34px);
  color: #000;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-stage {
  min-height: 100svh;
  background: #000;
}

.about-grid {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1fr 1fr;
}

.about-pattern {
  background: #000 url("assets/pattern.png") center / cover no-repeat;
  opacity: 0.34;
}

.about-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 52px);
  transform: translateX(20vw);
  opacity: 0.28;
  transition: transform 420ms ease, opacity 420ms ease;
}

.about-copy.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.about-copy p {
  margin: 0 0 1.2em;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.about-copy h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.keyword {
  color: var(--accent);
  font-weight: 700;
}

.services-stage {
  padding: 10vh clamp(18px, 2.8vw, 36px) 10vh;
  border-top: 1px solid var(--line);
  background: #000;
}

.services-stage h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  min-height: 72px;
}

.service-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
}

.service-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.icon-film {
  border: 2px solid var(--accent);
}

.icon-film::before {
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  background: var(--accent);
}

.icon-campaign::before {
  inset: 2px 9px 2px 2px;
  border: 2px solid var(--accent);
  border-right: 0;
}

.icon-campaign::after {
  top: 5px;
  right: 1px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--accent);
}

.icon-digital::before {
  inset: 2px;
  border: 2px solid var(--accent);
}

.icon-digital::after {
  left: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.icon-direction::before {
  left: 9px;
  top: 0;
  width: 2px;
  height: 20px;
  background: var(--accent);
}

.icon-direction::after {
  left: 0;
  top: 9px;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.contact-bar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 16px clamp(18px, 2.8vw, 36px) 22px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.9);
}

.social-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
}

.social-links a,
.mail-link {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-links {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.contact-links p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.fish-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 14;
  width: 52px;
  height: 36px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.fish-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 121, 0, 0.4));
}

.fish-cursor.is-visible {
  opacity: 1;
}

.quote-page {
  min-height: 100svh;
  background: #000;
  color: var(--text);
}

.quote-shell {
  width: min(640px, 92vw);
  margin: 0 auto;
  padding: 10vh 0;
}

.quote-back {
  color: var(--muted);
  text-decoration: none;
}

.quote-shell h1 {
  margin: 18px 0 26px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  padding: 12px;
  color: var(--text);
  background: rgba(228, 221, 215, 0.04);
  border: 1px solid rgba(228, 221, 215, 0.24);
  font: inherit;
}

.quote-form button {
  width: fit-content;
  padding: 10px 18px;
  color: #000;
  background: var(--text);
  border: 0;
  font: inherit;
  text-transform: uppercase;
}

@keyframes strip-roll {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .hero-logo {
    width: min(88vw, 760px);
  }

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

  .about-pattern {
    min-height: 34svh;
  }

  .about-copy {
    transform: translateX(0);
    opacity: 1;
  }

  .contact-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-links {
    justify-items: start;
  }

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

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

@media (pointer: coarse) {
  .fish-cursor {
    display: none;
  }
}
