:root {
  --black: #080808;
  --ink: #151413;
  --cream: #ded9d0;
  --cream-light: #f2eee6;
  --orange: #ff3b16;
  --red: #e80f0f;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --dark-line: rgba(255, 255, 255, 0.13);
  --light-line: rgba(21, 20, 19, 0.1);
  --radius: 4px;
  color-scheme: dark;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  background: var(--white);
  color: var(--black);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -56px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(22px, 1fr) minmax(0, 1180px) minmax(22px, 1fr);
}

.page-grid > * {
  grid-column: 2;
}

.site-header {
  align-items: center;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-logo {
  background: var(--cream-light);
  border: 2px solid var(--white);
  height: 38px;
  object-fit: cover;
  width: 68px;
}

.brand-name {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

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

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 18px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 0;
  width: 40px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 3px;
  margin: 7px auto;
  transition: transform 180ms ease;
  width: 25px;
}

.hero {
  background: var(--orange);
  min-height: 100svh;
  overflow: clip;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent 82%, var(--black));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-media {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  mix-blend-mode: multiply;
  opacity: 0.82;
  position: absolute;
  right: 0;
  top: 80px;
  width: min(860px, 78vw);
  z-index: 1;
}

.hero-media video,
.hero-media img {
  filter: grayscale(1) contrast(1.28);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: 110px clamp(18px, 4vw, 58px) clamp(34px, 5vw, 64px);
  position: relative;
  z-index: 2;
}

.hero-script {
  color: rgba(0, 0, 0, 0.78);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.2rem, 10vw, 9rem);
  font-style: italic;
  line-height: 0.9;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-brandline {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(5rem, 19vw, 17rem);
  font-weight: 700;
  left: 50%;
  letter-spacing: 0;
  line-height: 0.78;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 25%;
  white-space: nowrap;
  width: 140vw;
  z-index: 1;
}

.hero-lower {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  position: relative;
  z-index: 3;
}

.availability {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 18px;
}

.availability span {
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 59, 22, 0.16);
  height: 10px;
  width: 10px;
}

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

h1 {
  color: var(--black);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(5.2rem, 15vw, 14rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  margin-bottom: 0;
}

h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(3.4rem, 8.5vw, 9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  margin-bottom: 26px;
  text-transform: uppercase;
}

h2 span {
  color: var(--red);
}

h3 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 10px;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-side {
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-side p {
  color: var(--black);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.86;
  margin-bottom: 0;
}

.button {
  align-items: center;
  border: 0;
  display: inline-flex;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  justify-content: center;
  letter-spacing: 0;
  margin-top: 26px;
  min-height: 52px;
  padding: 0 20px;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: var(--black);
  color: var(--white);
}

.secondary {
  border: 1px solid currentColor;
}

.section-label,
.eyebrow,
.work-card span {
  color: var(--red);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.24rem;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.intro {
  background:
    linear-gradient(var(--light-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--light-line) 1px, transparent 1px),
    var(--cream);
  background-size: 110px 110px;
  color: var(--black);
  padding: clamp(82px, 10vw, 140px) 0 clamp(46px, 7vw, 84px);
}

.intro-copy {
  max-width: 980px;
}

.intro-copy p {
  color: rgba(21, 20, 19, 0.74);
  max-width: 590px;
}

.intro-services {
  display: grid;
  gap: 12px;
  margin-left: auto;
  margin-top: -90px;
  max-width: 420px;
}

.intro-services div {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 54px 1fr;
}

.intro-services div::before {
  background: var(--black);
  content: "";
  height: 1px;
  grid-column: 2;
  grid-row: 1;
  margin-right: 120px;
}

.intro-services span,
.intro-services b {
  color: var(--black);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.36rem;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.stats-row {
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(44px, 7vw, 90px);
  padding-top: 36px;
}

.stats-row strong {
  color: var(--black);
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.8;
}

.stats-row span {
  color: var(--black);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.showcase,
.process,
.experience {
  background: var(--black);
  color: var(--white);
}

.section-head {
  padding: clamp(78px, 10vw, 136px) 0 30px;
}

.section-head h2 {
  max-width: 1100px;
}

.section-head p {
  max-width: 440px;
}

.work-list {
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px clamp(22px, 4vw, 56px) clamp(76px, 10vw, 130px);
}

.work-row {
  align-items: center;
  border-top: 1px solid var(--dark-line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(150px, 34vw) minmax(0, 1fr) 64px;
  min-height: 230px;
  overflow: hidden;
}

.work-row:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.work-row > span {
  color: var(--white);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(8rem, 21vw, 18rem);
  line-height: 0.78;
}

.work-row p {
  max-width: 500px;
}

.work-row a {
  align-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 2rem;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.process {
  position: relative;
}

.process-bg {
  opacity: 0.08;
  position: absolute;
  right: -8vw;
  top: 4vw;
  width: min(760px, 84vw);
}

.process-steps {
  grid-template-columns: minmax(22px, 1fr) minmax(0, 1180px) minmax(22px, 1fr);
  padding-bottom: clamp(70px, 10vw, 126px);
}

.process-steps article {
  align-items: end;
  border-top: 1px solid var(--dark-line);
  display: grid;
  gap: 26px;
  grid-column: 2 !important;
  grid-template-columns: 190px minmax(210px, 0.8fr) minmax(0, 1fr);
  min-height: 175px;
  padding: 26px 0;
}

.process-steps article:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.process-steps span {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.78;
}

.process-steps h3 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.services {
  background:
    linear-gradient(var(--light-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--light-line) 1px, transparent 1px),
    var(--cream-light);
  background-size: 110px 110px;
  color: var(--black);
  padding: clamp(78px, 10vw, 138px) 0;
}

.service-list {
  max-width: 1120px;
}

.service-grid {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.service-grid article {
  align-items: center;
  background: rgba(21, 20, 19, 0.05);
  border: 1px solid rgba(21, 20, 19, 0.1);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  padding: clamp(18px, 3vw, 30px);
}

.service-grid h3 {
  color: var(--black);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

.service-grid p {
  color: rgba(21, 20, 19, 0.7);
  max-width: 480px;
}

.about {
  background: var(--black);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  min-height: 760px;
}

.about-media {
  align-self: center;
  border: 10px solid var(--white);
  margin: clamp(28px, 5vw, 70px);
  overflow: hidden;
  transform: rotate(-2deg);
}

.about-media video {
  filter: grayscale(1) contrast(1.1);
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  width: 100%;
}

.about-copy {
  align-self: center;
  padding: clamp(30px, 6vw, 86px);
}

.about-copy h2 {
  color: var(--white);
}

.experience {
  padding: clamp(76px, 10vw, 136px) 0;
}

.experience-copy {
  max-width: 1120px;
}

.logo-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 38px 0;
}

.logo-strip a,
.logo-fallback {
  align-items: center;
  background: var(--white);
  color: var(--black);
  display: flex;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
}

.logo-strip img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.logo-fallback {
  justify-content: center;
  text-align: center;
}

.experience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.experience-grid article {
  border: 1px solid var(--dark-line);
  padding: 26px;
}

.experience-grid h3 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.contact {
  background: var(--orange);
  color: var(--black);
  padding: clamp(76px, 10vw, 140px) 0;
}

.contact-card {
  max-width: 1040px;
}

.contact-card h2 {
  color: var(--black);
}

.contact-card p {
  color: rgba(0, 0, 0, 0.74);
  max-width: 620px;
}

.contact-details {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
}

.contact-details span,
.contact-details a {
  color: var(--black);
  font-weight: 900;
}

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

.site-footer {
  align-items: center;
  background: var(--black);
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 56px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    align-items: stretch;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--dark-line);
    flex-direction: column;
    font-size: 1.8rem;
    gap: 10px;
    inset: 0 0 0 auto;
    justify-content: center;
    padding: 34px;
    position: fixed;
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: min(380px, 86vw);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
    z-index: 22;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-media {
    width: 100vw;
  }

  .hero-lower,
  .service-grid article,
  .about,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .intro-services {
    margin-left: 0;
    margin-top: 34px;
  }

  .work-row,
  .process-steps article {
    grid-template-columns: 1fr;
  }

  .work-row {
    min-height: auto;
    padding: 32px 0;
  }

  .process-steps article {
    align-items: start;
  }

  .about-media {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .brand-name {
    display: none;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-brandline {
    font-size: clamp(4rem, 25vw, 8rem);
    top: 22%;
  }

  h1 {
    font-size: clamp(4.8rem, 23vw, 8rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .hero-side p {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .stats-row,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
