:root {
  --ink: #090909;
  --paper: #efe9df;
  --muted: #a8aaa5;
  --line: rgba(239, 233, 223, .18);
  --ember: #ff5b1a;
  --ember-deep: #c93014;
  --mint: #9fcfc5;
  --yellow: #f0d331;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--paper);
  background: transparent;
  mix-blend-mode: difference;
  pointer-events: none;
  transition: opacity .25s ease;
}

.site-header.is-scrolled {
  opacity: .92;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span:last-child {
  padding-top: 1px;
}

.brand span:last-child,
.nav-links a {
  color: rgba(255, 249, 235, .96);
  text-shadow: 0 1px 10px rgba(255, 255, 255, .24), 0 8px 22px rgba(0, 0, 0, .52);
  opacity: .96;
}

.brand-mark {
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--paper) 0 55%, transparent 55%);
  border: 1px solid rgba(239, 233, 223, .6);
}

.brand,
.nav-links a {
  pointer-events: auto;
}

.nav-links a {
  position: relative;
  padding: 8px 0 10px;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--ember);
  transform: scaleX(.32);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:first-child::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: 92svh;
  padding: 88px 0 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 91, 26, .16), transparent 24%),
    linear-gradient(215deg, rgba(159, 207, 197, .08), transparent 32%),
    #0d0d0c;
}

.hero-frame {
  position: relative;
  min-height: calc(92svh - 88px);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--ember);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .48);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 91, 26, .16), transparent 32%),
    linear-gradient(90deg, rgba(9, 9, 9, .68) 0%, rgba(9, 9, 9, .24) 42%, rgba(255, 91, 26, .2) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, .34), rgba(9, 9, 9, .18) 48%, rgba(9, 9, 9, .46));
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.08) contrast(1.02);
  transform: translate3d(0, var(--hero-drift, 0), 0) scale(var(--hero-zoom, 1));
  transform-origin: center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(26px, 5vw, 72px);
}

.kicker,
.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: hero-rise .8s ease .08s both;
}

.availability {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.availability span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #39ff88;
  box-shadow: 0 0 0 5px rgba(57, 255, 136, .13), 0 0 18px rgba(57, 255, 136, .72);
}

.hero .kicker {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: .12em;
}

.hero h1 {
  align-self: center;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 86px);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(86px, 16vw, 252px);
  line-height: .82;
  letter-spacing: 0;
  color: var(--paper);
  text-transform: uppercase;
  animation: hero-title-in 1s cubic-bezier(.2, .8, .2, 1) .18s both;
}

.hero h1 span:last-child {
  animation: hero-title-slide .95s cubic-bezier(.2, .8, .2, 1) .24s both;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 860px) auto;
  align-items: end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  width: min(1240px, 100%);
  margin-inline: auto;
  animation: hero-rise .9s ease .42s both;
}

.hero-copy p,
.about-text p,
.contact-note {
  margin: 0;
  color: rgba(239, 233, 223, .92);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.hero-copy .experience-line {
  margin-top: 10px;
  max-width: 820px;
  color: rgba(255, 255, 255, .65);
  font-size: clamp(14px, 1.05vw, 16px);
}

.text-link {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(239, 233, 223, .8);
  background: rgba(9, 9, 9, .32);
  backdrop-filter: blur(12px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.text-link:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.preview-strip {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: stretch;
  padding: 20px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.preview-strip > p {
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-item {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  background: #171715;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.preview-item span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 11px 12px;
  background: rgba(9, 9, 9, .92);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: normal;
}

.preview-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.artwork-link {
  cursor: zoom-in;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease var(--reveal-delay, 0ms), transform .55s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

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

@keyframes hero-breathe {
  from {
    transform: translate3d(-1.2%, var(--hero-drift, 0), 0) scale(calc(var(--hero-zoom, 1) + .006));
  }

  to {
    transform: translate3d(1.2%, var(--hero-drift, 0), 0) scale(calc(var(--hero-zoom, 1) + .025));
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.985);
  }

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

@keyframes hero-title-slide {
  from {
    opacity: 0;
    transform: translateX(42px);
  }

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

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.intro-band p {
  margin: 0;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(9, 9, 9, .16);
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.intro-band p:last-child {
  border-right: 0;
}

.toolkit-band {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  padding: 28px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #10100f;
}

.toolkit-band p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
}

.toolkit-group {
  min-height: 128px;
  padding-left: 16px;
  border-left: 1px solid rgba(239, 233, 223, .18);
}

.toolkit-group h3 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.toolkit-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.toolkit-group li {
  color: rgba(239, 233, 223, .78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: clamp(72px, 9vw, 134px) clamp(18px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 880px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 72px);
}

.section h2 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(40px, 7vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #151514;
  border: 1px solid rgba(239, 233, 223, .16);
}

.project-card.featured {
  grid-row: auto;
  min-height: 0;
}

.project-card a,
.project-card img {
  display: block;
  height: 100%;
}

.project-card img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.project-card.featured img {
  object-position: center top;
}

.portrait-card img,
.product-card img {
  object-position: center 38%;
}

.process-card img {
  object-position: center;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.project-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 5px;
  padding: 14px;
  background: rgba(9, 9, 9, .72);
  backdrop-filter: blur(16px);
}

.project-info p,
.project-info h3,
.project-info span {
  margin: 0;
}

.project-info p,
.project-info span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(239, 233, 223, .72);
}

.project-info h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: .95;
  text-transform: uppercase;
}

.lightbox {
  width: min(1320px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 1px solid rgba(239, 233, 223, .18);
  background: #080807;
  color: var(--paper);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(10px);
}

.lightbox-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  min-height: min(820px, calc(100svh - 28px));
  max-height: calc(100svh - 28px);
  min-width: 0;
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 91, 26, .08), transparent 38%),
    #050505;
}

.gallery-image,
.gallery-video {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 28px);
  object-fit: contain;
}

.gallery-video {
  background: #050505;
}

.lightbox-details {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr);
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 58px 20px 20px;
  border-left: 1px solid rgba(239, 233, 223, .12);
  background: #10100f;
  overflow-y: auto;
  overflow-x: hidden;
}

.lightbox-details h3,
.lightbox-details p {
  margin: 0;
}

.lightbox-details h3 {
  max-width: 100%;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: .92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-count {
  color: var(--ember);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-description {
  color: rgba(239, 233, 223, .72);
  font-size: 14px;
  line-height: 1.55;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.gallery-tags span {
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(239, 233, 223, .18);
  color: rgba(239, 233, 223, .78);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  padding-top: 8px;
}

.gallery-thumb {
  position: relative;
  min-height: 92px;
  padding: 0;
  border: 1px solid rgba(239, 233, 223, .14);
  background: #070707;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
}

.thumb-kind {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  background: rgba(9, 9, 9, .74);
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-thumb:hover img,
.gallery-thumb.is-active img {
  transform: scale(1.04);
}

.gallery-thumb.is-active {
  border-color: var(--ember);
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(239, 233, 223, .28);
  background: rgba(9, 9, 9, .62);
  color: var(--paper);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-nav:hover {
  background: var(--paper);
  color: var(--ink);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(239, 233, 223, .34);
  background: rgba(9, 9, 9, .72);
  color: var(--paper);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close:hover {
  background: var(--paper);
  color: var(--ink);
}

.indie-section {
  background:
    linear-gradient(180deg, rgba(159, 207, 197, .06), transparent 46%),
    #0d0d0c;
  border-top: 1px solid var(--line);
}

.indie-lead {
  margin: -34px 0 clamp(28px, 4vw, 54px);
  padding-left: min(292px, 23vw);
}

.indie-lead p {
  margin: 0;
  max-width: 620px;
  color: rgba(239, 233, 223, .72);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.indie-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(14px, 2vw, 24px);
}

.indie-card {
  min-height: 420px;
  overflow: hidden;
  background: #151514;
  border: 1px solid rgba(239, 233, 223, .16);
}

.indie-card:first-child,
.indie-card:nth-child(2) {
  min-height: 520px;
}

.indie-card a {
  position: relative;
  display: block;
  height: 100%;
}

.indie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
  transition: transform .5s ease, filter .5s ease;
}

.indie-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.08);
}

.indie-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(9, 9, 9, .76);
  backdrop-filter: blur(16px);
}

.indie-card p,
.indie-card h3,
.indie-card span {
  margin: 0;
}

.indie-card p,
.indie-card span {
  color: rgba(239, 233, 223, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.indie-card h3 {
  font-size: clamp(25px, 2.6vw, 42px);
  line-height: .96;
  text-transform: uppercase;
}

.shorts-section {
  background:
    linear-gradient(180deg, rgba(255, 91, 26, .06), transparent 42%),
    #0a0a09;
  border-top: 1px solid var(--line);
}

.shorts-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: -34px 0 clamp(28px, 4vw, 54px);
  padding-left: min(292px, 23vw);
}

.shorts-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(239, 233, 223, .72);
}

.shorts-copy a {
  flex: 0 0 auto;
  border: 1px solid rgba(239, 233, 223, .34);
  padding: 12px 16px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shorts-copy a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
}

.shorts-card {
  background: #050505;
  border: 1px solid rgba(239, 233, 223, .12);
  border-radius: 6px;
  overflow: hidden;
}

.shorts-card a {
  position: relative;
  display: block;
  height: 100%;
  color: var(--paper);
}

.shorts-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform .28s ease, opacity .28s ease;
}

.shorts-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shorts-card:hover img {
  opacity: .86;
  transform: scale(1.04);
}

.feedback-section {
  padding: clamp(58px, 7vw, 104px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.feedback-heading {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 760px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 0 clamp(18px, 4vw, 64px) clamp(28px, 4vw, 52px);
}

.feedback-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 88px);
  line-height: .92;
  text-transform: uppercase;
}

.feedback-marquee {
  width: 100%;
  overflow: hidden;
  padding-inline: clamp(18px, 4vw, 64px);
}

.feedback-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: feedback-scroll 110s linear infinite;
}

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

.feedback-card {
  width: min(390px, 82vw);
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(239, 233, 223, .18);
  background: rgba(239, 233, 223, .06);
}

.rating {
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.rating span {
  color: var(--paper);
  margin-left: 8px;
}

.feedback-card p {
  margin: 18px 0;
  color: var(--paper);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.35;
}

.feedback-card > span {
  color: rgba(239, 233, 223, .66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes feedback-scroll {
  from {
    transform: translateX(0);
  }

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

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(30px, 8vw, 118px);
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}

.about-section .eyebrow,
.about-section .about-text p {
  color: var(--ink);
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-text {
  display: grid;
  gap: 18px;
}

.process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ember);
  color: var(--ink);
}

.process-band div {
  min-height: 190px;
  padding: clamp(20px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(9, 9, 9, .18);
}

.process-band div:last-child {
  border-right: 0;
}

.process-band span {
  font-size: 13px;
  font-weight: 900;
}

.process-band p {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.contact-section {
  min-height: 70svh;
  display: grid;
  align-content: center;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255, 91, 26, .08), transparent 55%),
    var(--ink);
}

.contact-link {
  width: fit-content;
  font-size: clamp(30px, 7vw, 108px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ember);
  overflow-wrap: anywhere;
}

.contact-link:hover {
  color: var(--paper);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a {
  border: 1px solid rgba(239, 233, 223, .34);
  padding: 10px 14px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.contact-note {
  max-width: 440px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding: 86px 0 0;
  }

  .hero-overlay {
    padding: 24px;
  }

  .hero h1 {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-size: clamp(84px, 25vw, 180px);
  }

  .hero-copy,
  .section-heading,
  .feedback-heading,
  .toolkit-band,
  .about-section,
  .indie-grid {
    grid-template-columns: 1fr;
  }

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

  .indie-lead {
    margin-top: -20px;
    padding-left: 0;
  }

  .text-link {
    justify-self: start;
  }

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

  .intro-band,
  .process-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .indie-card,
  .indie-card:first-child {
    min-height: 480px;
  }

  .lightbox-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 58svh) auto;
    overflow: auto;
  }

  .gallery-image,
  .gallery-video {
    max-height: 58svh;
  }

  .lightbox-details {
    border-left: 0;
    border-top: 1px solid rgba(239, 233, 223, .12);
    overflow: visible;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shorts-copy {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -18px;
    padding-left: 0;
  }

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

@media (max-width: 560px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
    gap: 10px;
    padding: 18px 16px;
  }

  .hero {
    min-height: 84svh;
  }

  .brand {
    gap: 8px;
    font-size: 11px;
  }

  .brand-mark {
    width: 30px;
    height: 16px;
  }

  .nav-links {
    width: min(100%, 260px);
    justify-content: space-between;
    font-size: 11px;
    gap: 12px;
    flex: 0 0 auto;
  }

  .hero-frame {
    min-height: calc(84svh - 86px);
    border-radius: 0;
  }

  .hero-overlay {
    padding: 64px 24px 24px;
  }

  .kicker {
    max-width: 220px;
    line-height: 1.2;
  }

  .hero-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(74px, 23vw, 136px);
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy p {
    max-width: 32ch;
  }

  .hero-copy .experience-line {
    max-width: 34ch;
  }

  .preview-strip {
    grid-template-columns: 1fr;
  }

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

  .preview-item {
    min-height: 150px;
  }

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

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

  .intro-band,
  .process-band {
    grid-template-columns: 1fr;
  }

  .intro-band p,
  .process-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(9, 9, 9, .16);
  }

  .section {
    padding-inline: 16px;
  }

  .indie-card,
  .indie-card:first-child {
    min-height: 390px;
  }

  .project-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
  }

  .lightbox-shell {
    grid-template-rows: minmax(260px, 48svh) auto;
    max-height: calc(100svh - 16px);
  }

  .gallery-image,
  .gallery-video {
    max-height: 48svh;
  }

  .lightbox-details {
    gap: 12px;
    padding: 56px 14px 14px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-thumb {
    min-height: 72px;
  }

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

  .gallery-nav {
    top: auto;
    bottom: 12px;
    min-height: 40px;
    transform: none;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }
}

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

  .hero-art {
    transform: none !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .feedback-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
