:root {
  --ink: #f7f2e9;
  --paper: #f4efe4;
  --charcoal: #101010;
  --charcoal-soft: #181818;
  --muted: #9f988d;
  --body: #27241f;
  --brand-orange: #cf5c24;
  --brand-orange-dark: #9f3f1d;
  --brand-orange-hover: #b84d20;
  --green: #315542;
  --line: rgba(247, 242, 233, 0.14);
  --dark-line: rgba(16, 16, 16, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Oswald", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, padding 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(17, 17, 17, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(245px, 45vw);
  height: 36px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  font-weight: 500;
}

.main-nav a {
  color: rgba(247, 242, 233, 0.78);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(247, 242, 233, 0.72);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--charcoal);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 90px) 96px;
  color: var(--ink);
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.42));
}

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

.hero-panel {
  max-width: 620px;
  margin-left: clamp(40px, 4vw, 60px);
  animation: heroReveal 400ms ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 900px;
  font-size: clamp(3.5rem, 9.6vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(4.5rem, 6vw, 5.5rem);
  line-height: 1;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero p {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(247, 242, 233, 0.78);
  font-size: clamp(1.25rem, 1.55vw, 1.38rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button.primary {
  color: var(--charcoal);
  background: var(--brand-orange);
}

.button.primary:hover {
  background: var(--brand-orange-hover);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(247, 242, 233, 0.76);
}

.hero .button {
  min-height: 52px;
  padding: 0 30px;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.hero .button.primary {
  color: var(--ink);
  background: var(--brand-orange-dark);
}

.hero .button.primary:hover {
  background: #843317;
  transform: translateY(-3px);
}

.hero .button.secondary:hover {
  color: var(--charcoal);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  right: 50%;
  bottom: 32px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(247, 242, 233, 0.72);
  border-bottom: 2px solid rgba(247, 242, 233, 0.72);
  transform: translateX(50%) rotate(45deg);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(50%) translateY(-3px) rotate(45deg);
  }

  50% {
    opacity: 0.86;
    transform: translateX(50%) translateY(5px) rotate(45deg);
  }
}

.showreel-section,
.trusted-section,
.about-section,
.work-section,
.services-section,
.contact-section {
  padding: clamp(64px, 9vw, 122px) clamp(20px, 6vw, 90px);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-intro.compact {
  max-width: 760px;
}

.trusted-section {
  overflow: hidden;
  color: var(--body);
  background: var(--paper);
  border-bottom: 1px solid var(--dark-line);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: calc(100% + (clamp(20px, 6vw, 90px) * 2));
  margin-inline: calc(clamp(20px, 6vw, 90px) * -1);
  padding: 6px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 96s linear infinite;
  will-change: transform;
}

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

.logo-set {
  display: flex;
  align-items: center;
  gap: clamp(78px, 8vw, 132px);
  padding-right: clamp(78px, 8vw, 132px);
}

.logo-set img {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 190px;
  max-height: 54px;
  filter: grayscale(1) brightness(0);
  object-fit: contain;
  opacity: 0.86;
}

.logo-set .logo-tall {
  max-width: 82px;
  max-height: 60px;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

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

  main > section,
  .work-item,
  .service-card,
  .about-stats > div {
    opacity: 1;
    transform: none;
  }
}

.showreel-section,
.services-section {
  color: var(--ink);
  background: var(--charcoal);
}

.showreel-section {
  padding-top: clamp(88px, 12vw, 168px);
}

.showreel-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showreel-link img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 320ms ease, filter 320ms ease;
}

.showreel-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.18);
  transition: background 320ms ease;
}

.showreel-link:hover img {
  opacity: 0.94;
  filter: brightness(1.06);
}

.showreel-link:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  border: 1px solid rgba(247, 242, 233, 0.78);
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.42);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.play-button::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
  transform: translate(-50%, -50%);
}

.about-section {
  color: var(--body);
  background: var(--paper);
}

.about-intro {
  max-width: 820px;
  margin-bottom: clamp(38px, 5.5vw, 76px);
}

.about-intro .eyebrow {
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
}

.about-intro h2 {
  font-size: clamp(2.1rem, 4vw, 4.25rem);
}

.about-story {
  display: grid;
  gap: clamp(20px, 2.7vw, 34px);
  max-width: 920px;
}

.about-story p {
  margin: 0;
  color: #534d44;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 86px);
  max-width: 1100px;
  background: var(--dark-line);
}

.about-stats div {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.about-stats span {
  display: block;
  margin-bottom: 16px;
  color: #625d54;
  font-weight: 900;
  text-transform: uppercase;
}

.about-stats strong {
  display: block;
  color: var(--body);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.contact-section p {
  color: #625d54;
  font-size: 1.08rem;
  line-height: 1.8;
}

.work-section {
  scroll-margin-top: 86px;
  color: var(--ink);
  background: var(--charcoal);
}

.work-section .section-intro {
  max-width: 950px;
}

.work-intro {
  margin-bottom: clamp(40px, 6vw, 82px);
}

.work-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(247, 242, 233, 0.72);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.work-editorial {
  display: grid;
  gap: clamp(54px, 7vw, 104px);
}

.work-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}

.work-item {
  position: relative;
  display: grid;
  gap: clamp(20px, 2.6vw, 32px);
  cursor: pointer;
}

.work-card-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 6px;
}

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #050505;
  border-radius: 6px;
}

.work-featured .work-image {
  aspect-ratio: 21 / 9;
}

.work-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.24);
  transition: background 360ms ease;
}

.work-image img {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 360ms ease, filter 360ms ease, transform 480ms ease;
}

.work-item:hover .work-image::after {
  background: rgba(0, 0, 0, 0.14);
}

.work-item:hover .work-image img {
  opacity: 0.98;
  filter: brightness(1.08);
  transform: scale(1.012);
}

.work-copy {
  display: grid;
  gap: 12px;
  max-width: 690px;
}

.work-featured .work-copy {
  max-width: 760px;
}

.work-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 28px;
  margin-bottom: 2px;
}

.work-logos img {
  width: auto;
  max-width: 132px;
  max-height: 28px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.76;
}

.work-copy h3 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.work-pair .work-copy h3 {
  font-size: clamp(1.55rem, 2.4vw, 3rem);
}

.work-client {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-copy p:not(.work-client) {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 242, 233, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.work-link {
  justify-self: start;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: color 260ms ease, transform 260ms ease;
}

.work-item:hover .work-link {
  color: var(--brand-orange);
  transform: translateY(-4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.services-intro {
  margin-bottom: clamp(48px, 6vw, 86px);
}

.services-intro .eyebrow {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.service-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  background: #191919;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--brand-orange);
  font-weight: 900;
}

.service-card p {
  color: rgba(247, 242, 233, 0.7);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: stretch;
  background: var(--paper);
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: clamp(34px, 4vw, 52px);
}

.contact-details div {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
}

.contact-details span {
  color: var(--brand-orange);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--body);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 600;
}

.contact-image-slot {
  min-height: clamp(360px, 42vw, 560px);
  background: linear-gradient(135deg, rgba(16, 16, 16, 0.98), rgba(16, 16, 16, 0.86));
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  opacity: 0.96;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) auto auto;
  align-items: start;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(34px, 5vw, 64px) clamp(20px, 6vw, 90px);
  color: rgba(247, 242, 233, 0.78);
  background: var(--charcoal);
}

.site-footer img {
  width: min(260px, 58vw);
  margin-bottom: 22px;
}

.site-footer p {
  margin: 0;
}

.footer-nav,
.footer-social {
  display: grid;
  gap: 12px;
}

.site-footer a {
  color: var(--brand-orange);
  font-weight: 900;
}

main > section,
.work-item,
.service-card,
.about-stats > div {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

main > section.is-visible,
.work-item.is-visible,
.service-card.is-visible,
.about-stats > div.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .work-featured .work-image {
    aspect-ratio: 16 / 9;
  }

  .service-grid,
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 190px;
    background-position: 58% center;
  }

  .hero-panel {
    margin-left: 24px;
  }

  .work-pair,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.4rem);
  }

  .hero p {
    max-width: 500px;
    font-size: 1.12rem;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-panel {
    margin-left: 0;
  }

  .hero .button {
    padding: 0 22px;
  }

  .logo-set {
    gap: 54px;
    padding-right: 54px;
  }

  .logo-set img {
    max-width: 160px;
    max-height: 46px;
  }

  .logo-set .logo-tall {
    max-width: 78px;
    max-height: 60px;
  }

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

  .main-nav .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .work-editorial {
    gap: 48px;
  }

  .work-image,
  .work-featured .work-image {
    aspect-ratio: 4 / 3;
  }

  .work-copy h3,
  .work-pair .work-copy h3 {
    font-size: clamp(1.7rem, 9vw, 3.15rem);
  }

  .contact-image-slot {
    min-height: 280px;
  }
}
