@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-sans-latin.2ee17598a98d.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --ink: #111210;
  --paper: #f4f2ed;
  --orange: #ff9a3c;
  --text: #f7f5ef;
  --muted: #b9b9b0;
  --line: #ffffff24;
  --header-height: 88px;
  font-family: "Instrument Sans", Helvetica, sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.05;
  font-weight: 600;
}
h1,
h2 {
  letter-spacing: -0.055em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
summary,
select {
  cursor: pointer;
}
button {
  color: inherit;
}
img,
video {
  max-width: 100%;
}
img {
  display: block;
}
svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button {
  border: 0;
}
button:disabled {
  cursor: wait;
}
a,
button,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
::selection {
  background: var(--orange);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.accent {
  color: var(--orange);
}
.muted {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 12px 20px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
#main:focus {
  outline: none;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.17em;
  font-weight: 600;
}
.section-label {
  margin-bottom: 22px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 46px;
}
.section-heading h2 {
  font-size: clamp(32px, 3.3vw, 48px);
}
.section-heading__aside {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 340px;
  padding-bottom: 3px;
}
.section-dark {
  background: var(--ink);
}
.section-light {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}
.section-light .section-label {
  color: #66675d;
}
.section-light .section-heading__aside {
  color: #606159;
}
.section-light .accent {
  color: #b84c0b;
}
.section-light :focus-visible {
  outline-color: #a7440b;
}
/* A single, stable header keeps the same navigation available at every scroll position. */
.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 30;
  background: #111210f5;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  letter-spacing: 0.045em;
  font-weight: 700;
  font-size: 18px;
  flex: none;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center 53%;
  border-radius: 50%;
}
.brand__small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 13px;
  position: relative;
  padding: 12px 0;
  color: #ddded5;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}
.header-explore {
  border: 1px solid #696b61;
  border-radius: 3px;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 9px 16px;
  font-size: 13px;
}
.header-explore:hover {
  background: var(--paper);
  color: var(--ink);
}
.header-explore svg {
  width: 15px;
  height: 15px;
}
.mobile-menu {
  display: none;
}
/* The existing production photograph remains the hero, with a readable text field. */
.hero {
  isolation: isolate;
  position: relative;
  min-height: 690px;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: flex;
  flex-direction: column;
  background: #1b1915;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(9, 11, 10, 0.93),
      rgba(9, 11, 10, 0.6) 40%,
      rgba(9, 11, 10, 0.05) 80%
    ),
    linear-gradient(0deg, rgba(9, 11, 10, 0.72), transparent 45%);
}
.hero__inner {
  padding-top: 70px;
  padding-bottom: 60px;
  flex: 1;
}
.hero .eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #e1e1d8;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.hero h1 {
  font-size: clamp(66px, 8.2vw, 118px);
  line-height: 0.98;
  margin-top: 28px;
  font-weight: 600;
  max-width: 760px;
}
.hero__tagline {
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.025em;
  margin-top: 25px;
  color: #e5e4dd;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button--orange {
  background: var(--orange);
  color: var(--ink);
}
.button--orange:hover {
  background: #ffb467;
}
.button--outline {
  border: 1px solid #c1c1b780;
  color: #fff;
  background: #11121066;
}
.button--outline:hover {
  background: #ffffff18;
}
.button__meta {
  color: #d2d2c8;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.play-icon {
  fill: currentColor;
  stroke-width: 0;
  width: 16px;
  height: 16px;
}
.hero__footer {
  border-top: 1px solid #ffffff35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding-block: 19px;
  color: #dddcd4;
}
.hero__footer a {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 26px;
}
.hero__footer a span {
  font-size: 18px;
}
.mobile-break {
  display: none;
}
/* Native playback stays usable before or without JavaScript. */
.film {
  padding: 90px 0 78px;
}
.film-frame {
  position: relative;
  isolation: isolate;
  background: #000;
  border: 1px solid #33342f;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}
.film-frame video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  background: #000;
  object-fit: contain;
}
.film-play {
  position: absolute;
  inset: 0 0 44px;
  width: 100%;
  background: linear-gradient(0deg, #0008, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  z-index: 1;
}
.film-play__circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  transition: transform 0.2s;
}
.film-play__circle svg {
  fill: currentColor;
  stroke: none;
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.film-play:hover .film-play__circle {
  transform: scale(1.08);
}
.film-play__time {
  margin-left: 15px;
  opacity: 0.8;
}
.film-play:focus-visible {
  outline-offset: -6px;
}
.film-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 65px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.film-bar p {
  color: #bfc0b6;
}
.film-tools {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: none;
}
.film-tools a {
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quality-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfc0b6;
}
.quality-control select {
  background: #1e201b;
  color: var(--text);
  border: 1px solid #5b5e52;
  border-radius: 3px;
  font-size: 12px;
  padding: 8px;
  max-width: 180px;
}
.film-help {
  font-size: 13px;
  color: #e6c9a5;
  padding: 14px 0;
}
.film-help button {
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 12px;
}
.film-frame:fullscreen {
  border: 0;
  border-radius: 0;
}
.about {
  padding: 60px 0 110px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 100px;
  align-items: center;
}
.brand-art {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  position: relative;
  background: #060706;
  border: 1px solid #282a24;
  border-radius: 3px;
  padding: 30px;
}
.brand-art img {
  width: 216px;
  height: 320px;
  object-fit: contain;
}
.brand-art__still {
  display: none;
}
.brand-art[data-paused] .brand-art__animation {
  display: none;
}
.brand-art[data-paused] .brand-art__still {
  display: block;
}
.motion-toggle {
  background: none;
  border-bottom: 1px solid #777b6c;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 8px 5px;
  margin-top: 12px;
  min-height: 34px;
  color: #d0d0c7;
}
.about-copy h2 {
  font-size: clamp(40px, 4.7vw, 64px);
  margin-bottom: 28px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  color: #bfc0b6;
  margin-top: 18px;
  max-width: 590px;
}
.about-copy .about-intro {
  color: #efefe7 !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}
.about-more {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 10px;
}
.about-more summary {
  list-style: none;
  font-size: 13px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about-more summary::-webkit-details-marker {
  display: none;
}
.about-more summary span {
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
}
.about-more[open] summary span {
  transform: rotate(45deg);
}
.about-more p {
  font-size: 14px;
  color: #bfc0b6;
  line-height: 1.9;
  padding: 12px 0;
}
.projects {
  padding: 96px 0 88px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  background: #fffefa;
  border: 1px solid #deddd5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.project-card__image {
  height: 208px;
  display: grid;
  place-items: center;
  background: #ebe9e2;
  position: relative;
  padding: 28px 40px 16px;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 160px;
}
.project-card__number {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #75766c;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.project-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 23px;
}
.project-card h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.project-card__domain {
  display: block;
  font-size: 12px;
  color: #635e53;
  margin-top: 6px;
  text-decoration: underline;
  text-decoration-color: #a8a498;
  text-underline-offset: 4px;
}
.project-card__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d5d3ca;
  border-radius: 50%;
  flex: none;
}
.project-card__arrow svg {
  width: 15px;
  height: 15px;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: #bc8c59;
  box-shadow: 0 14px 28px #2d2b1e0d;
}
.project-card:hover .project-card__arrow {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.actors {
  padding: 34px 0 96px;
}
.actors .shell {
  border-top: 1px solid #d6d5cc;
  padding-top: 76px;
}
.actor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.actor-card {
  min-width: 0;
}
.actor-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  background: #e6e3da;
  border-radius: 3px;
}
.actor-card figcaption {
  font-size: 16px;
  line-height: 1.35;
  padding: 16px 0 6px;
  letter-spacing: -0.015em;
}
.actors-more {
  display: flex;
  flex-direction: column;
}
.actors-more summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: fit-content;
  min-height: 50px;
  margin: 32px auto 0;
  padding: 12px 25px;
  border: 1px solid #86887a;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
}
.actors-more summary::-webkit-details-marker {
  display: none;
}
.actors-more summary:hover {
  background: var(--ink);
  color: var(--paper);
}
.actors-more .actor-grid {
  margin-top: 32px;
}
.actors-more__open {
  display: none;
}
.actors-more[open] .actors-more__open {
  display: inline;
}
.actors-more[open] .actors-more__closed {
  display: none;
}
.actors-more[open] .expand-icon {
  transform: rotate(45deg);
}
.expand-icon {
  font-size: 20px;
  line-height: 1;
}
.site-footer {
  padding: 48px 0 28px;
  background: var(--ink);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top > a {
  font-size: 12px;
  padding: 10px 0;
}
.footer-top > a span {
  margin-left: 22px;
}
.footer-statement {
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  padding: 40px 0 50px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #b1b3a7;
  font-size: 11px;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  padding: 10px 0;
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid #777b6c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 20;
  box-shadow: 0 3px 10px #0003;
}
@media (min-width: 1600px) {
  .hero__image img {
    object-position: center 45%;
  }
  .hero__inner {
    padding-top: 80px;
  }
}
@media (max-width: 1023px) {
  .shell {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 24px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero h1 {
    font-size: 86px;
  }
  .hero__inner {
    padding-top: 60px;
  }
  .hero {
    min-height: 660px;
  }
  .about-layout {
    gap: 48px;
  }
  .section-heading__aside {
    max-width: 270px;
  }
  .project-grid {
    gap: 18px;
  }
  .project-card__image {
    height: 185px;
    padding: 28px;
  }
  .project-card__body {
    padding: 20px 16px;
  }
  .project-card h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 74px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    backdrop-filter: none;
    background: var(--ink);
  }
  .header-inner {
    justify-content: space-between;
    gap: 16px;
  }
  .brand {
    font-size: 16px;
    gap: 10px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  .brand__small {
    font-size: 8px;
  }
  .desktop-nav,
  .header-explore {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu > summary {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 12px;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .menu-lines {
    display: block;
    width: 22px;
    height: 12px;
    border-block: 1px solid currentColor;
  }
  .mobile-menu[open] .menu-lines {
    height: 1px;
    border-bottom: 0;
    transform: rotate(45deg);
  }
  .mobile-menu[open] .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    border-top: 1px solid;
    transform: rotate(90deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    background: var(--ink);
    border-bottom: 1px solid #56594d;
    box-shadow: 0 24px 30px #0005;
    display: grid;
  }
  .mobile-menu nav a {
    min-height: 52px;
    padding: 12px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a:last-child {
    border: 0;
  }
  .mobile-menu nav a[aria-current] {
    color: var(--orange);
  }
  .hero {
    min-height: 640px;
    min-height: min(760px, calc(100svh - var(--header-height)));
    min-height: max(600px, calc(100svh - var(--header-height)));
  }
  .hero__image img {
    object-position: center 35%;
  }
  .hero::before {
    background:
      linear-gradient(90deg, #080a0999, #080a0933),
      linear-gradient(0deg, #080a09eb, transparent 80%);
  }
  .hero__inner {
    padding-top: 50px;
    padding-bottom: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(56px, 13.8vw, 100px);
    margin-top: 28px;
    line-height: 1;
  }
  .hero__tagline {
    font-size: 21px;
    margin-top: 22px;
    max-width: 320px;
  }
  .mobile-break {
    display: block;
  }
  .hero__actions {
    margin-top: 28px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .button {
    font-size: 13px;
    min-height: 50px;
    padding: 14px 18px;
  }
  .hero__footer {
    font-size: 8px;
    gap: 8px;
    padding-block: 14px;
  }
  .hero__footer a {
    gap: 13px;
  }
  .hero__footer a span {
    font-size: 16px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .section-label {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .section-heading__aside {
    font-size: 13px;
    max-width: 100%;
    margin-top: 18px;
  }
  .film {
    padding: 56px 0 42px;
  }
  .film-play {
    gap: 10px;
    bottom: 42px;
    font-size: 9px;
  }
  .film-play__circle {
    width: 48px;
    height: 48px;
  }
  .film-play__circle svg {
    width: 20px;
    height: 20px;
  }
  .film-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 13px 0;
  }
  .film-tools {
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .film-tools a {
    font-size: 11px;
  }
  .quality-control {
    font-size: 11px;
  }
  .quality-control select {
    padding: 9px 5px;
    font-size: 11px;
    max-width: 165px;
  }
  .film-help {
    font-size: 12px;
  }
  .about {
    padding: 30px 0 60px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .brand-art {
    min-height: 330px;
    padding: 18px;
    order: 1;
  }
  .brand-art img {
    width: 175px;
    height: 260px;
  }
  .about-copy {
    order: 0;
  }
  .about-copy h2 {
    font-size: 46px;
  }
  .about-copy .about-intro {
    font-size: 16px !important;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .about-more p {
    font-size: 13px;
  }
  .projects {
    padding: 58px 0;
  }
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .project-card__image {
    height: 143px;
    padding: 22px 14px 12px;
  }
  .project-card__image img {
    max-height: 110px;
  }
  .project-card__number {
    top: 9px;
    left: 10px;
    font-size: 9px;
  }
  .project-card__body {
    padding: 14px 11px;
    gap: 5px;
    align-items: flex-start;
  }
  .project-card h3 {
    font-size: clamp(13px, 3.5vw, 19px);
    overflow-wrap: anywhere;
  }
  .project-card__domain {
    font-size: clamp(10px, 2.7vw, 13px);
    margin-top: 8px;
    overflow-wrap: anywhere;
  }
  .project-card__arrow {
    width: 21px;
    height: 21px;
    border: 0;
  }
  .project-card__arrow svg {
    width: 13px;
    height: 13px;
  }
  .actors {
    padding: 0 0 60px;
  }
  .actors .shell {
    padding-top: 50px;
  }
  .actor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }
  .actor-card figcaption {
    font-size: 13px;
    padding: 12px 0 4px;
  }
  .actors-more summary {
    font-size: 12px;
    min-height: 48px;
  }
  .site-footer {
    padding: 30px 0 24px;
  }
  .footer-top .eyebrow {
    font-size: 9px;
  }
  .footer-statement {
    font-size: 40px;
    padding: 28px 0 34px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 10px;
  }
  .footer-bottom nav {
    gap: 24px;
  }
  .back-to-top {
    bottom: 16px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 359px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero__tagline {
    font-size: 19px;
  }
  .hero__footer {
    letter-spacing: 0.07em;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .project-card__body {
    padding: 13px 9px;
  }
  .project-card__arrow {
    display: none;
  }
  .project-card__image {
    height: 130px;
  }
  .film-tools {
    flex-wrap: wrap;
  }
  .footer-statement {
    font-size: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .brand-art__animation {
    display: none;
  }
  .brand-art__still {
    display: block;
  }
  .motion-toggle {
    display: none !important;
  }
}
