:root {
  --paper: #f7f4eb;
  --paper-deep: #eae6dc;
  --ink: #191816;
  --ink-soft: #5d5952;
  --line: #d2cec4;
  --red: #b82f2b;
  --red-hover: #93221f;
  --focus: #93221f;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Satoshi", Arial, sans-serif;
  --gutter: clamp(20px, 3.3vw, 64px);
  --header-height: 80px;
  --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
  --duration: 260ms;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../assets/fonts/satoshi-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../assets/fonts/satoshi-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../assets/fonts/satoshi-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.5 var(--font-body);
}
body.dialog-open {
  overflow: hidden;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
button:active:not(:disabled) {
  transform: translateY(1px);
}
::selection {
  background: var(--red);
  color: var(--paper);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: var(--header-height);
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header.on-film {
  background: transparent;
  border-color: transparent;
  color: var(--paper);
  --focus: var(--paper);
}
.on-film .brand img {
  filter: brightness(0) invert(1);
}
.site-header.on-film .nav-cta {
  color: inherit;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 290px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.site-nav a:hover::after {
  transform: scaleX(1);
}
.site-nav .nav-cta {
  gap: 22px;
  color: var(--red);
  font-weight: 700;
}
.nav-arrow {
  font-size: 23px;
  line-height: 1;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  min-height: 44px;
  padding: 8px 0;
  font-weight: 500;
  align-items: center;
  gap: 12px;
}
.menu-icon {
  width: 20px;
  height: 12px;
  border-top: 1.5px solid;
  border-bottom: 1.5px solid;
  display: inline-block;
}
.hero {
  padding: 0;
}
.hero-stage {
  position: relative;
  height: 100vh;
  height: 100svh;
  color: var(--paper);
  background: #232421;
  isolation: isolate;
  overflow: hidden;
  --focus: var(--paper);
}
.hero-poster,
.hero-video,
.hero-return-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  z-index: -3;
}
.hero-return-frame {
  z-index: -2;
  opacity: 0;
  pointer-events: none;
}
.hero-video,
.hero-return-frame {
  object-position: var(--film-x, 50%) 44%;
}
.hero-stage.has-return-frame .hero-return-frame {
  opacity: 1;
}
.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: inherit;
}
.hero-video {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.hero-stage.has-video .hero-video {
  opacity: 1;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--header-height) + 100px);
  z-index: -1;
  background: linear-gradient(#090b0ac4 0%, #090b0a99 48%, transparent 100%);
  pointer-events: none;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(12, 15, 13, 0.36) 0%,
    transparent 35%,
    rgba(12, 15, 13, 0.15) 52%,
    rgba(12, 15, 13, 0.77) 100%
  );
}
.hero-topline {
  position: absolute;
  top: calc(var(--header-height) + 20px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 1px 5px #191816;
}
.hero-content {
  position: absolute;
  bottom: 110px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
h1,
h2,
p {
  margin: 0;
}
.hero h1 {
  font: 700 clamp(84px, 10.3vw, 174px)/0.87 var(--font-display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 950px;
}
.hero h1 span {
  display: block;
}
.hero h1 .hero-color-line {
  margin-left: 0.24em;
  transform: skewX(-7deg);
  transform-origin: left bottom;
  color: #f2e4c3;
  letter-spacing: -0.035em;
}
.hero-inquiry {
  flex: 0 0 236px;
  padding-bottom: 4px;
  font-size: 15px;
  line-height: 1.5;
}
.hero-inquiry a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  margin-top: 13px;
  border-bottom: 1px solid #f7f4eb90;
  font-size: 15px;
  font-weight: 500;
}
.hero-inquiry a span {
  font-size: 24px;
  transition: transform 0.25s ease;
}
.hero-inquiry a:hover span {
  transform: translate(2px, -2px);
}
.hero-action {
  flex: 0 0 235px;
  padding-bottom: 6px;
}
.hero-action p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 23ch;
}
.hero-caption {
  position: absolute;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 18px;
  font-size: 12px;
}
.project-credit {
  display: flex;
  gap: 28px;
  align-items: center;
}
.project-credit .muted {
  color: #d0cec5;
}
.hero-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-quality select {
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #f7f4eb70;
  border-radius: 0;
  min-height: 44px;
  max-width: 85px;
  padding: 8px 4px;
  font: 500 12px var(--font-body);
  cursor: pointer;
}
.hero-quality select:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}
.hero-quality option {
  color: var(--ink);
  background: var(--paper);
}
.control {
  border: 0;
  background: none;
  padding: 8px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
}
.control:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.control svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.pause-shape {
  display: none;
}
.is-playing .hero-caption .pause-shape {
  display: block;
}
.is-playing .hero-caption .resume-shape {
  display: none;
}
.hero-status {
  position: absolute;
  bottom: 72px;
  right: var(--gutter);
  max-width: calc(100% - 40px);
  font-size: 12px;
  background: #171815bb;
}
.hero-status:not(:empty) {
  padding: 5px 9px;
}
.services-section {
  padding: clamp(30px, 3.5vw, 58px) var(--gutter) 0;
  background: var(--ink);
  color: var(--paper);
  --focus: var(--paper);
}
.services-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  padding-bottom: clamp(25px, 2.7vw, 44px);
}
.services-heading h2 {
  font: 700 clamp(48px, 5.2vw, 86px)/0.94 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.services-heading > p {
  max-width: 39ch;
  justify-self: end;
  font-size: 16px;
  line-height: 1.55;
  color: #c5c1b8;
}
.service-row {
  display: grid;
  grid-template-columns: clamp(152px, 17vw, 260px) minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #f7f4eb38;
}
.service-image {
  overflow: hidden;
  aspect-ratio: 8/5;
  background: #2d2d29;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.service-image-game img {
  object-position: 35% 50%;
}
.service-image-player img {
  object-position: 50% 0%;
}
.service-copy {
  max-width: 54ch;
}
.service-copy h3 {
  font: 700 clamp(30px, 3.1vw, 48px)/1.04 var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.012em;
  margin: 0 0 9px;
}
.service-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: #c5c1b8;
}
.service-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  padding: 8px 0;
  border-bottom: 1px solid #f7f4eb80;
  font-size: 13px;
  white-space: nowrap;
}
.service-inquiry span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
}
.service-inquiry:hover {
  color: #f2e4c3;
  border-color: currentColor;
}
.service-inquiry:hover span {
  transform: translate(2px, -2px);
}
.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #f7f4eb38;
  padding: 16px 0;
  font-size: 13px;
}
.services-footer p {
  color: #c5c1b8;
}
.services-footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.services-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.services-footer a span {
  font-size: 23px;
}
@media (hover: hover) and (pointer: fine) {
  .service-row:hover .service-image img {
    transform: scale(1.04);
  }
}
.service-row:focus-within .service-image img {
  transform: scale(1.04);
}
.contact-open-brief {
  max-width: 42ch;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #59554d;
}
.perspective {
  --media-seam: 6px;
  position: relative;
  padding: var(--media-seam) 0 0;
  background: var(--ink);
  color: var(--paper);
  --focus: var(--paper);
}
.section-intro {
  position: absolute;
  top: clamp(26px, 3vw, 50px);
  left: var(--gutter);
  z-index: 2;
  pointer-events: none;
}
.perspective h2 {
  font: 700 clamp(48px, 5.1vw, 88px)/0.94 var(--font-display);
  letter-spacing: -0.022em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px #0007;
}
.atmosphere {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--media-seam);
  margin: 0;
}
.atmosphere-film {
  margin: 0;
  min-width: 0;
  position: relative;
}
.atmosphere-screen {
  position: relative;
  height: clamp(420px, 42vw, 820px);
  overflow: hidden;
  background: #242523;
  isolation: isolate;
}
.atmosphere-screen img,
.atmosphere-screen video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.atmosphere-screen video {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.has-video .atmosphere-screen video {
  opacity: 1;
}
.atmosphere-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 65%, #080b0ba8);
  pointer-events: none;
}
.atmosphere-film:first-child .atmosphere-screen::after {
  background: linear-gradient(
    #080b0b9c,
    transparent 45%,
    transparent 65%,
    #080b0ba8
  );
}
.atmosphere-film figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  padding: 14px clamp(18px, 2vw, 32px);
  gap: 12px;
  min-height: 72px;
  font-size: 12px;
  text-shadow: 0 1px 5px #000;
}
.film-control {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 62px;
  min-height: 44px;
  border: 0;
  background: none;
  padding: 8px 0;
  font-size: 12px;
  flex-shrink: 0;
}
.film-control:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.film-control-icon {
  font-size: 11px;
}
.frames-topline {
  min-height: 56px;
  padding: 12px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}
.frames-topline span:last-child {
  color: #c5c1b8;
}
/* A salon wall: two tall prints enclose a pair of landscapes.
   The small hover lift leaves the fitted layout and reading order intact. */
.frame-gallery {
  --frame-gap: 12px;
  --frame-rim: 6px;
  --frame-mat: 9px;
  --frame-label: 27px;
  --mount-width: calc(2 * (var(--frame-rim) + var(--frame-mat)));
  display: grid;
  gap: var(--frame-gap);
  padding: 12px;
  background: #ded8cc;
  color: var(--ink);
}
.gallery-row {
  display: grid;
  gap: var(--frame-gap);
  align-items: stretch;
}
/* Include the mounting borders and caption rails in the ratio calculation,
   so a tall portrait meets two stacked landscapes without trimming either. */
.gallery-row-opening,
.gallery-row-puzzle {
  --portrait-width: calc(
    (100% - 2 * var(--frame-gap)) * 0.32 + var(--mount-width) * 0.28 +
      (var(--frame-label) + var(--frame-gap)) * 0.24
  );
  grid-template-columns: var(--portrait-width) minmax(0, 1fr) var(
      --portrait-width
    );
  grid-template-areas: "helmet bench lineup" "helmet huddle lineup";
}
.gallery-row-opening .frame-helmet {
  grid-area: helmet;
}
.gallery-row-opening .frame-bench {
  grid-area: bench;
}
.gallery-row-opening .frame-huddle {
  grid-area: huddle;
}
.gallery-row-opening .frame-lineup {
  grid-area: lineup;
}
.gallery-row-puzzle > .frame-card:nth-child(1) {
  grid-area: helmet;
}
.gallery-row-puzzle > .frame-card:nth-child(2) {
  grid-area: bench;
}
.gallery-row-puzzle > .frame-card:nth-child(3) {
  grid-area: huddle;
}
.gallery-row-puzzle > .frame-card:nth-child(4) {
  grid-area: lineup;
}
.gallery-row-closing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.frame-card {
  margin: 0;
  min-width: 0;
  min-height: 0;
  position: relative;
  display: grid;
  box-shadow: 0 3px 5px #201c1830;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s var(--ease);
}
.frame-open,
.film-mount {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: var(--frame-mat);
  padding-bottom: calc(var(--frame-mat) + var(--frame-label));
  display: block;
  background: #f0eadf;
  border: var(--frame-rim) solid;
  border-color: #625c51 #28251f #1c1a17 #484339;
  box-shadow:
    inset 0 0 0 1px #b9af9d,
    0 0 0 1px #342f27;
  position: relative;
  text-align: left;
}
.frame-art {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #272723;
  box-shadow:
    0 0 0 1px #a99f8c,
    inset 0 1px 3px #0005;
}
.frame-helmet .frame-art,
.frame-lineup .frame-art,
.frame-portrait .frame-art {
  height: 100%;
  aspect-ratio: auto;
}
.frame-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 22%,
    #fff0 34%,
    #fff2 48%,
    #fff0 63%,
    transparent 75%
  );
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
}
.frame-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.frame-open:focus-visible {
  outline: none;
}
.frame-open:focus-visible::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--red);
  pointer-events: none;
  z-index: 3;
}
.frame-expand {
  position: absolute;
  bottom: 2px;
  right: var(--frame-mat);
  width: 30px;
  height: 32px;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  font-size: 13px;
}
.frame-card figcaption {
  position: absolute;
  left: calc(var(--frame-rim) + var(--frame-mat));
  right: calc(var(--frame-rim) + var(--frame-mat) + 34px);
  bottom: calc(var(--frame-rim) + 7px);
  pointer-events: none;
  padding: 0;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.frame-number {
  display: none;
}
/* Moving images share the same mounts as the prints. The wide film and
   portrait are proportioned to meet at their edges without cropping. */
.gallery-film-pair {
  --frame-label: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-feature {
  --frame-label: 44px;
  --portrait-width: calc(
    (100% - var(--frame-gap)) * 0.2727273 + var(--mount-width) * 0.4545454
  );
  grid-template-columns: minmax(0, 1fr) var(--portrait-width);
}
.gallery-film {
  color: var(--ink);
  --focus: var(--red);
  box-shadow: 0 3px 5px #201c1830;
}
.gallery-film .atmosphere-screen {
  height: auto;
  aspect-ratio: 16/9;
  box-shadow: 0 0 0 1px #a99f8c;
}
.gallery-film .atmosphere-screen::after {
  display: none;
}
.gallery-film figcaption {
  left: calc(var(--frame-rim) + var(--frame-mat));
  right: calc(var(--frame-rim) + var(--frame-mat));
  bottom: var(--frame-rim);
  min-height: calc(var(--frame-label) + var(--frame-mat));
  padding: 0;
  gap: 10px;
  font-size: 12px;
  text-shadow: none;
}
.gallery-film .film-control {
  min-width: 68px;
}
.gallery-feature .frame-card figcaption {
  bottom: calc(var(--frame-rim) + 18px);
}
.gallery-feature .frame-expand {
  bottom: 12px;
}
@keyframes print-glass {
  0% {
    transform: translateX(-105%);
    opacity: 0;
  }
  20% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(105%);
    opacity: 0;
  }
}
@keyframes print-open {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.988);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .frame-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 12px #201c1850;
  }
  .frame-open:hover img {
    transform: scale(1.035);
  }
  .frame-open:hover .frame-art::after {
    animation: print-glass 1.15s ease-out both;
  }
  .frame-open:hover .frame-expand {
    transform: translate(2px, -2px);
  }
}
.frame-open:focus-visible img {
  transform: scale(1.035);
}
.frame-open:focus-visible .frame-art::after {
  animation: print-glass 1.15s ease-out both;
}
@media (hover: none) {
  .frame-open:active {
    filter: brightness(0.95);
  }
}
.gallery-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.gallery-buttons button {
  height: 44px;
  width: 52px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 24px;
  transition:
    background var(--duration),
    color var(--duration);
}
.gallery-buttons button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--paper);
}
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 8vw, 130px);
  padding: clamp(36px, 4.5vw, 76px) var(--gutter);
  border-top: 6px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}
.contact-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-section h2 {
  font: 700 clamp(48px, 6.2vw, 104px)/0.95 var(--font-display);
  letter-spacing: -0.018em;
  text-transform: uppercase;
}
.contact-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 500;
}
.contact-services li {
  border-top: 1px solid var(--line);
  padding-top: 9px;
}
.contact-inquiry {
  align-self: center;
  max-width: 520px;
}
.contact-inquiry h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.contact-inquiry > p {
  font-size: 15px;
  line-height: 1.65;
  color: #59554d;
}
.contact-method {
  margin-top: 24px;
}
.contact-instagram {
  min-height: 56px;
  padding: 13px 18px;
  background: var(--red);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.contact-instagram:hover {
  background: #822722;
}
.contact-instagram span:last-child {
  font-size: 27px;
  line-height: 1;
}
.contact-tiktok {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.contact-tiktok:hover {
  color: var(--red);
}
.contact-handle {
  margin-top: 8px;
  font-size: 13px;
  color: #59554d;
}
.contact-pending {
  padding: 15px 0;
  border-block: 1px solid var(--line);
  font-size: 15px;
}
.contact-inquiry .contact-future {
  margin-top: 20px;
  font-size: 12px;
  color: #696359;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px var(--gutter);
  border-top: 6px solid var(--ink);
}
.footer-wordmark {
  width: 260px;
  max-width: 55%;
  height: auto;
}
.footer-return {
  min-height: 44px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  white-space: nowrap;
}
.footer-return:hover {
  color: var(--red);
}
dialog {
  border: 0;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
  --focus: var(--paper);
}
dialog::backdrop {
  background: rgba(12, 12, 11, 0.91);
}
.viewer {
  width: min(1180px, 94vw);
  max-width: none;
  max-height: 94svh;
  overflow: auto;
}
.viewer[open] {
  animation: print-open 0.28s var(--ease) both;
}
.viewer-bar {
  min-height: 66px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.viewer-bar h2 {
  font-size: 14px;
  font-weight: 500;
}
.close-button {
  background: none;
  border: 1px solid #777268;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.close-button:hover {
  background: var(--paper);
  color: var(--ink);
}
.viewer-image {
  width: 100%;
  height: min(72svh, 800px);
  object-fit: contain;
}
.viewer-foot {
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #c6c0b4;
}
.viewer-foot .gallery-buttons button {
  border-color: #777268;
  color: var(--paper);
}
.viewer-foot .gallery-buttons button:hover:not(:disabled) {
  background: var(--paper);
  color: var(--ink);
}
@media (max-width: 1000px) {
  .service-row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 12px 26px;
    padding: 22px 0;
  }
  .service-image {
    grid-row: 1/3;
    height: 148px;
    aspect-ratio: auto;
    min-height: 0;
  }
  .service-copy {
    grid-column: 2;
  }
  .service-inquiry {
    grid-column: 2;
    justify-self: start;
    margin-top: 1px;
    gap: 24px;
    min-height: 44px;
  }
  .services-heading > p {
    font-size: 15px;
  }
  .hero-inquiry {
    flex-basis: 204px;
    font-size: 13px;
  }
  .hero-inquiry a {
    font-size: 14px;
  }
  .site-nav {
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(84px, 11.2vw, 132px);
  }
  .hero-action {
    flex-basis: 195px;
  }
  .hero-action p {
    font-size: 14px;
  }
  .gallery-row-opening,
  .gallery-row-puzzle {
    --portrait-width: calc(
      (100% - var(--frame-gap)) * 0.3076923 + var(--mount-width) * 0.3846154
    );
    grid-template-columns: var(--portrait-width) minmax(0, 1fr) var(
        --portrait-width
      );
    grid-template-areas: "helmet bench bench" "huddle huddle lineup";
  }
  .gallery-row-closing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .frame-cheer {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  .services-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 26px;
  }
  .services-heading > p {
    justify-self: start;
    max-width: 42ch;
    font-size: 14px;
  }
  .services-heading h2 {
    font-size: clamp(46px, 9.6vw, 66px);
  }
  .service-row {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 11px 18px;
    padding: 20px 0;
    align-items: start;
  }
  .service-image {
    grid-row: 1;
    min-height: 0;
    height: 126px;
    aspect-ratio: auto;
  }
  .service-copy h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .service-copy p {
    font-size: 14px;
    line-height: 1.55;
  }
  .service-inquiry {
    grid-column: 2;
    font-size: 13px;
    min-height: 44px;
    white-space: normal;
    width: 100%;
    margin: 0;
  }
  .services-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 18px 0;
    font-size: 12px;
  }
  .services-footer a {
    gap: 30px;
  }
  .contact-open-brief {
    margin-top: 18px;
    font-size: 14px;
  }
  :root {
    --header-height: 70px;
  }
  .brand img {
    width: clamp(184px, calc(100vw - 144px), 246px);
  }
  .header-inner {
    gap: 12px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px var(--gutter) 30px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: normal;
    font-size: 20px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
  }
  .on-film .site-nav {
    color: var(--ink);
    --focus: var(--red);
  }
  .on-film .site-nav .nav-cta {
    color: var(--red);
  }
  .hero-topline {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .hero-poster {
    object-position: 52% center;
  }
  .hero-video,
  .hero-return-frame {
    object-position: var(--film-x, 50%) center;
  }
  .hero-content {
    bottom: 114px;
    display: block;
  }
  .hero h1 {
    font-size: clamp(61px, 15.6vw, 106px);
    line-height: 0.89;
    max-width: 560px;
  }
  .hero h1 span {
    white-space: nowrap;
  }
  .hero h1 .hero-color-line {
    margin-left: 0.12em;
  }
  .hero-inquiry {
    margin-top: 24px;
    max-width: 245px;
    padding: 0;
    font-size: 13px;
  }
  .hero-inquiry a {
    margin-top: 8px;
    font-size: 14px;
    min-height: 44px;
  }
  .hero-action {
    margin-top: 22px;
    padding: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  .hero-action p {
    margin: 0;
    font-size: 13px;
    max-width: 19ch;
  }
  .hero-caption {
    gap: 10px;
    align-items: flex-end;
  }
  .project-credit {
    gap: 6px;
    display: block;
    font-size: 12px;
    max-width: 160px;
  }
  .project-credit span {
    display: block;
  }
  .project-credit .muted {
    display: none;
  }
  .hero-tools {
    gap: 15px;
  }
  .control {
    font-size: 12px;
  }
  .hero-quality select {
    font-size: 12px;
  }
  .perspective {
    --media-seam: 4px;
  }
  .section-intro {
    top: 26px;
  }
  .perspective h2 {
    font-size: clamp(46px, 9vw, 64px);
  }
  .atmosphere {
    grid-template-columns: 1fr;
  }
  .atmosphere > .atmosphere-film .atmosphere-screen {
    height: auto;
    aspect-ratio: 1;
  }
  .atmosphere > .atmosphere-film:nth-child(2) .atmosphere-screen {
    aspect-ratio: 4/3;
  }
  .atmosphere > .atmosphere-film figcaption {
    padding: 8px 20px;
    min-height: 60px;
    font-size: 11px;
  }
  .frames-topline {
    font-size: 11px;
    min-height: 58px;
  }
  .frames-topline span:last-child {
    text-align: right;
    max-width: 135px;
  }
  .frame-gallery {
    --frame-gap: 8px;
    --frame-rim: 4px;
    --frame-mat: 7px;
    padding: 8px;
  }
  .frame-card figcaption {
    font-size: 11px;
  }
  .site-footer {
    padding-block: 16px;
    border-top-width: 4px;
  }
  .footer-return {
    font-size: 11px;
    gap: 10px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 34px;
    border-top-width: 4px;
  }
  .contact-section h2 {
    font-size: clamp(48px, 11vw, 70px);
  }
  .contact-eyebrow {
    margin-bottom: 14px;
  }
  .contact-services {
    margin-top: 22px;
    font-size: 13px;
  }
  .contact-inquiry {
    max-width: none;
  }
  .contact-inquiry > p {
    font-size: 14px;
  }
  .contact-inquiry .contact-future {
    font-size: 12px;
  }
  .viewer-bar {
    padding: 12px 16px;
    min-height: 62px;
  }
  .viewer-bar h2 {
    font-size: 12px;
    max-width: 65%;
  }
  .viewer-foot {
    padding: 14px 16px;
  }
  .viewer-image {
    height: 65svh;
  }
  .close-button {
    padding: 8px 10px;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .gallery-row-opening,
  .gallery-row-closing,
  .gallery-row-puzzle,
  .gallery-film-pair,
  .gallery-feature {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .gallery-row-opening .frame-card,
  .gallery-row-puzzle > .frame-card:nth-child(n),
  .frame-cheer {
    grid-area: auto;
  }
  .frame-helmet .frame-art,
  .frame-lineup .frame-art,
  .frame-portrait .frame-art {
    height: auto;
    aspect-ratio: 2/3;
  }
  .gallery-film .atmosphere-screen {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 370px) {
  .header-inner {
    gap: 8px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-tools {
    gap: 11px;
  }
  .hero-topline {
    font-size: 9px;
  }
  .project-credit .muted {
    display: none;
  }
}
@media (max-width: 370px) {
  .service-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px 14px;
  }
  .service-copy h3 {
    font-size: 27px;
  }
  .service-image {
    height: 110px;
  }
}
@media (max-height: 600px) and (min-width: 721px) {
  :root {
    --header-height: 64px;
  }
  .hero-topline {
    top: 80px;
    font-size: 10px;
  }
  .hero-content {
    bottom: 84px;
  }
  .hero h1 {
    font-size: clamp(50px, 17vh, 94px);
  }
  .hero-action p {
    font-size: 12px;
    margin: 0;
  }
  .hero-action {
    flex-basis: 200px;
    padding-bottom: 0;
  }
  .hero-caption {
    bottom: 14px;
  }
}
@media (max-height: 500px) and (max-width: 720px) and (orientation: landscape) {
  .hero-inquiry {
    flex: 0 0 185px;
    margin: 0;
    font-size: 11px;
  }
  .hero-inquiry a {
    font-size: 12px;
    min-height: 40px;
    margin-top: 2px;
  }
  :root {
    --header-height: 56px;
  }
  .brand img {
    width: 235px;
  }
  .hero-topline {
    top: 72px;
    font-size: 9px;
  }
  .hero-topline span:last-child {
    max-width: none;
  }
  .hero-content {
    display: flex;
    align-items: flex-end;
    bottom: 75px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(42px, 15vh, 68px);
  }
  .hero-action {
    flex: 0 0 175px;
    margin: 0;
    padding: 0;
    min-height: 44px;
  }
  .hero-action p {
    font-size: 11px;
  }
  .hero-caption {
    bottom: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .frame-card:hover,
  .frame-open:hover img,
  .frame-open:focus-visible img,
  .frame-open:hover .frame-expand,
  .service-row:hover .service-image img,
  .service-row:focus-within .service-image img,
  .service-inquiry:hover span {
    transform: none;
  }
}
