:root {
  --black: #08090a;
  --soft: #121416;
  --white: #fff;
  --paper: #eceae4;
  --blue: #acd5e5;
  --line: rgba(255, 255, 255, 0.18);
  --muted: rgba(255, 255, 255, 0.62);
  --pad: clamp(1.2rem, 4.5vw, 5rem);
  --space: clamp(5rem, 10vw, 10rem);
  --max: 2100px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(92, 101, 110, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 60%, rgba(55, 62, 69, 0.22), transparent 42rem),
    linear-gradient(135deg, #17191c 0%, #0b0c0e 48%, #1b1e21 100%) fixed;
  font-family: var(--sans);
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

section {
  scroll-margin-top: 5rem;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--white);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  min-height: clamp(92px, 8vw, 132px);
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem var(--pad);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2) 72%, transparent);
  transition: background 180ms ease;
}

.site-header.is-scrolled,
.site-header.has-open-menu {
  background: rgba(8, 9, 10, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  width: clamp(155px, 13vw, 240px);
  height: auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 2.4rem);
  font-size: clamp(0.78rem, 0.45vw + 0.64rem, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
  transform: translateX(-50%);
}

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

.site-nav a:hover {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  color: #9564d8;
  text-shadow: 0 0 12px rgba(82, 35, 143, 0.72);
}

.header-socials {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-socials a {
  display: grid;
  width: clamp(2.7rem, 3.2vw, 3.35rem);
  height: clamp(2.7rem, 3.2vw, 3.35rem);
  border-radius: 0.75rem;
  place-items: center;
  color: var(--white);
  box-shadow: 0 0.45rem 1.4rem rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, filter 160ms ease;
}

.header-socials a:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 68%;
  height: 68%;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-socials .youtube {
  background: #ff0033;
}

.header-socials .instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #fcb045);
}

.header-socials .facebook {
  background: #1877f2;
}

.header-socials .facebook svg {
  fill: currentColor;
  stroke: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  background: var(--black);
}

.hero-video-low,
.hero-video-high {
  transition: opacity 320ms ease;
}

.hero-video-high {
  opacity: 0;
}

.hero.is-high-quality .hero-video-low {
  opacity: 0;
}

.hero.is-high-quality .hero-video-high {
  opacity: 1;
}

.hero-play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(2rem, 7vh, 5rem);
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transform: translateX(-50%);
  cursor: pointer;
}

.hero-play-button[hidden] {
  display: none;
}

.hero-play-button:hover,
.hero-play-button:focus-visible {
  color: #08090a;
  background: var(--white);
}

.hero-play-button span {
  font-size: 1.1em;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.06)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 55%);
}

h1,
h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 9vw, 9.5rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-section {
  padding: var(--space) clamp(0.5rem, 1.4vw, 1.75rem);
}

.home-intro {
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
  border-bottom: 1px solid var(--line);
}

.home-intro h2,
.home-intro > p:last-child {
  margin: 0;
}

.home-intro h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.home-work .project-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-intro > p:last-child {
  max-width: 64rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.home-work {
  padding-block: clamp(2.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(104, 117, 128, 0.18), transparent 35rem),
    radial-gradient(circle at 82% 58%, rgba(60, 71, 82, 0.2), transparent 42rem),
    linear-gradient(145deg, #202429, #101214 48%, #252a30);
}

.home-work .project-header {
  margin-bottom: 0.9rem;
}

.home-work .project-header h3 {
  font-size: clamp(1.15rem, 1.45vw, 1.65rem);
}

.home-work .project-list {
  gap: clamp(0.45rem, 0.7vw, 0.8rem);
}

.home-work .project-video {
  aspect-ratio: 16 / 9;
}

.more-footage {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.more-footage a {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease;
}

.more-footage a:hover {
  border-color: var(--white);
  background: rgba(0, 0, 0, 0.48);
}

.work-section > * {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-link {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-link:hover {
  color: var(--white);
}

.page-main {
  min-height: 75svh;
  padding-top: clamp(9rem, 12vw, 13rem);
}

.page-main .work-section,
.page-main .simple-section,
.page-main .faq-section {
  border-top: 0;
}

.page-main .work-section {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(104, 117, 128, 0.18), transparent 35rem),
    radial-gradient(circle at 82% 58%, rgba(60, 71, 82, 0.2), transparent 42rem),
    linear-gradient(145deg, #202429, #101214 48%, #252a30);
}

.page-title {
  margin: 0;
}

.collection-title,
.page-main .page-title {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.page-main .work-section .project-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.45rem, 0.7vw, 0.8rem);
}

.page-main .work-section .project-header {
  margin-bottom: 0.9rem;
}

.page-main .work-section .project-header h3 {
  font-size: clamp(1.15rem, 1.45vw, 1.65rem);
}

.page-main .work-section .project-video {
  aspect-ratio: 16 / 9;
}

.standalone-section {
  min-height: 60svh;
}

.standalone-section > p:last-of-type {
  max-width: 48rem;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.7;
}

.standalone-link {
  display: inline-block;
  margin-top: 2rem;
}

.downloads-intro {
  max-width: 78rem;
  padding: clamp(3rem, 7vw, 7rem) var(--pad) clamp(4rem, 7vw, 7rem);
}

.downloads-intro > p:last-child {
  max-width: 62rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 var(--pad) clamp(7rem, 10vw, 10rem);
}

.download-options article {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(10, 11, 12, 0.38);
}

.download-options article > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.download-options h2 {
  margin-top: auto;
  font-size: clamp(1.65rem, 2.3vw, 2.5rem);
}

.download-options p {
  color: var(--muted);
  line-height: 1.65;
}

.download-options button,
.about-contact {
  align-self: flex-start;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  min-height: 760px;
}

.about-hero-image {
  min-height: 620px;
  background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2)), url("images/photo_2026-07-27_14-04-02.jpg") center / cover no-repeat;
}

.about-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem) var(--pad);
}

.about-story p:not(.eyebrow) {
  max-width: 55rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

.about-story .about-lead {
  color: var(--white);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.about-contact {
  margin-top: 2rem;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.about-capabilities p {
  margin: 0;
  padding: 1.5rem var(--pad);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.project {
  min-width: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.project-header {
  margin-bottom: 1.5rem;
}

.project-header p {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.44);
  font-size: clamp(0.72rem, 0.35vw + 0.6rem, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-header h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 2.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.project-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.project-video img,
.project-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-video img {
  transition: opacity 250ms ease, transform 450ms ease;
}

.project-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.project-video.is-previewing .project-preview {
  opacity: 1;
}

.project-video:hover img,
.project-video.is-previewing img {
  opacity: 0.78;
  transform: scale(1.015);
}

.watch-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
}

.watch-overlay .play-marker {
  display: grid;
  width: clamp(3.5rem, 6vw, 5.25rem);
  height: clamp(3.5rem, 6vw, 5.25rem);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0.5;
  transition: color 180ms ease, background 180ms ease;
}

.watch-overlay .play-marker::before {
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 0.95rem solid var(--white);
  content: "";
}

.project-video:hover .watch-overlay .play-marker {
  background: rgba(0, 0, 0, 0.62);
}

.pin-marker {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  width: clamp(1.1rem, 1.6vw, 1.45rem);
  height: auto;
  fill: rgba(0, 0, 0, 0.2);
  stroke: var(--white);
  stroke-linejoin: round;
  stroke-width: 1.5;
  opacity: 0.5;
  pointer-events: none;
}

.prints-section {
  padding: var(--space) clamp(0.5rem, 1.4vw, 1.75rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06), transparent 34rem),
    linear-gradient(135deg, #202327, #121416);
}

.prints-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.print-card {
  min-width: 0;
}

.print-card button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  text-align: left;
  background: #17191c;
  cursor: pointer;
}

.print-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  transition: transform 300ms ease;
}

.print-card button:hover img {
  transform: scale(1.015);
}

.print-card-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.print-card-copy strong {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
}

.print-card-copy small {
  color: var(--muted);
  font-size: 0.85rem;
}

.skeleton {
  min-height: 0;
  aspect-ratio: 1;
  background: linear-gradient(100deg, #151719, #202326, #151719);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  to {
    background-position: -200% 0;
  }
}

.notice {
  grid-column: 1 / -1;
  padding: 2rem 0;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: linear-gradient(135deg, #202327, #121416);
}

.simple-section {
  padding: var(--space) var(--pad);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 42%),
    #202327;
}

.simple-section > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.simple-section .eyebrow {
  color: var(--blue);
}

.simple-section h2 {
  max-width: var(--max);
}

.simple-section > p:last-child {
  margin-top: 1.5rem;
  color: var(--muted);
}

.about-image {
  min-height: 650px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28)),
    url("images/refracted-orange-light.webp") center / cover no-repeat;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space) var(--pad);
}

.about-copy p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.6;
}

.about-copy p:last-child {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(7rem, 14vw, 14rem) var(--pad);
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: var(--space) var(--pad);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.055), transparent 35rem),
    linear-gradient(145deg, #1d2024, #111315);
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  position: relative;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  cursor: pointer;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  font-family: var(--sans);
  font-size: 1.2rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  max-width: 58ch;
  margin: -0.4rem 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.1vw, 1.3rem);
  line-height: 1.65;
}

.contact-section h2 {
  max-width: 10ch;
  margin-inline: auto;
}

.contact-email {
  display: inline-block;
  margin-top: 2.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--blue);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.contact-dialog {
  width: min(680px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--line);
  color: var(--white);
  background: #151719;
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
}

.contact-dialog-inner {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.contact-dialog h2 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.25rem);
}

.contact-intro {
  margin: 1rem 0 2rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-dialog form,
.contact-dialog label {
  display: grid;
}

.contact-dialog form {
  gap: 1.15rem;
}

.contact-dialog label {
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-dialog input,
.contact-dialog textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  background: #0c0d0e;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-dialog textarea {
  resize: vertical;
}

.contact-submit {
  justify-self: start;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--white);
  color: var(--black);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.55;
}

.contact-dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
}

.contact-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--blue);
  line-height: 1.5;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  padding-inline: var(--pad);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.contact-page-intro > p:last-of-type {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.direct-email {
  display: inline-flex;
  margin-top: 2.5rem;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--blue);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
}

.direct-email span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  background: rgba(10, 11, 12, 0.42);
}

.contact-page-form,
.contact-page-form label {
  display: grid;
}

.contact-page-form {
  gap: 1.15rem;
}

.contact-page-form label {
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  background: #0c0d0e;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-page-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem var(--pad);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: clamp(1rem, 3vw, 3rem);
  overflow: auto;
  border: 0;
  color: var(--white);
  background: rgba(15, 17, 19, 0.18);
  backdrop-filter: blur(2px);
}

.media-dialog::backdrop {
  background: rgba(8, 9, 10, 0.66);
}

.dialog-shell {
  position: relative;
  width: min(1200px, 100%);
  margin: auto;
  overflow: hidden;
  background: #101214;
}

.dialog-shell > video {
  width: 100%;
  max-height: 78svh;
  background: #000;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  font-size: 1.4rem;
  cursor: pointer;
}

.dialog-copy {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.dialog-copy h2,
.print-dialog-copy h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.dialog-copy p {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
}

.custom-frame-link {
  display: inline-flex;
  min-height: 3.5rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.35rem;
  border: 2px solid var(--white);
  align-items: center;
  justify-content: center;
  color: #08090a;
  background: var(--white);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-frame-link::after {
  margin-left: 0.75rem;
  content: "→";
  font-size: 1.25em;
}

.custom-frame-link:hover,
.custom-frame-link:focus-visible {
  color: var(--white);
  background: #69449c;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .custom-frame-link {
    width: 100%;
    min-height: 3.75rem;
    padding-inline: 1rem;
    text-align: center;
  }
}

.related-prints {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footage-order-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem auto;
  gap: .75rem;
  align-items: end;
  margin-top: .25rem;
  padding: 1rem;
  border: 1px solid #9564d8;
  background: rgba(105, 68, 156, .14);
}

.footage-order-admin[hidden] {
  display: none;
}

.footage-order-admin strong {
  display: block;
  color: #fff;
  font-size: .82rem;
}

.footage-order-admin p {
  margin: .2rem 0 0;
  font-size: .72rem;
}

.footage-order-admin label {
  display: grid;
  gap: .3rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.footage-order-admin input,
.footage-order-admin button {
  min-height: 2.7rem;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(0, 0, 0, .3);
}

.footage-order-admin button {
  border-color: #9564d8;
  background: #69449c;
  font-weight: 800;
  cursor: pointer;
}

.footage-order-admin [role="status"] {
  grid-column: 1 / -1;
  color: var(--blue);
}

@media (max-width: 700px) {
  .footage-order-admin {
    grid-template-columns: 1fr;
  }

  .footage-order-admin [role="status"] {
    grid-column: auto;
  }
}

.related-prints > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-prints > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 360px));
  gap: 0.75rem;
  justify-content: start;
  margin-top: 0.75rem;
}

.related-prints button {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  padding: 0;
  border: 0;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.related-prints img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
}

.related-prints button span {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  text-align: center;
}

.print-dialog {
  color: var(--black);
}

.print-builder-dialog-shell {
  width: min(1500px, 100%);
  min-height: calc(100svh - clamp(2rem, 6vw, 6rem));
  background: #111315;
}

.print-builder-dialog-shell iframe {
  display: block;
  width: 100%;
  min-height: calc(100svh - clamp(2rem, 6vw, 6rem));
  border: 0;
  background: #111315;
}

.print-back {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(8, 9, 10, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-close-dark {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.85);
}

.print-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
}

.print-dialog-copy > p {
  color: rgba(0, 0, 0, 0.62);
}

.shop-button {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 0;
  color: var(--white);
  background: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100vw - 2rem);
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1250px) {
  .site-header {
    min-height: 112px;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    padding-block: 0.45rem 0.65rem;
  }

  .brand img {
    width: clamp(140px, 38vw, 185px);
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    order: 3;
    visibility: visible;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem clamp(0.7rem, 2vw, 1.5rem);
    opacity: 1;
    background: transparent;
    font-family: var(--sans);
    font-size: clamp(0.62rem, 1.4vw, 0.78rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
    transition: none;
  }

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

  .about-section,
  .faq-section,
  .home-intro {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 65vw;
  }

  .project-layout {
    grid-template-columns: 1fr;
  }

  .header-socials {
    position: relative;
    right: auto;
    gap: 0.4rem;
  }

  .header-socials a {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.55rem;
  }

}

@media (max-width: 900px) {
  .home-work .project-list,
  .page-main .work-section .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-options,
  .about-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  :root {
    --pad: 1.1rem;
    --space: 5rem;
  }

  .site-header {
    min-height: 108px;
  }

  .site-nav {
    gap: 0.35rem 0.72rem;
    padding: 0;
    overflow: visible;
    font-size: clamp(0.58rem, 2.65vw, 0.72rem);
    line-height: 1.2;
  }

  .site-nav a {
    min-height: 1.35rem;
  }

  .brand img {
    width: clamp(135px, 40vw, 170px);
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  .skeleton {
    min-height: 0;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .home-work .project-list {
    grid-template-columns: 1fr;
  }

  .page-main .work-section .project-list,
  .about-capabilities {
    grid-template-columns: 1fr;
  }

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

  .contact-email {
    font-size: 1rem;
  }

  .media-dialog {
    padding: 0;
  }

  .dialog-shell {
    min-height: 100%;
  }

  .print-builder-dialog-shell,
  .print-builder-dialog-shell iframe {
    min-height: 100svh;
  }

}

@media (max-width: 360px) {
  .brand img {
    width: 115px;
  }

  .header-socials {
    gap: 0.25rem;
  }

  .header-socials a {
    width: 2rem;
    height: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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