:root {
  color-scheme: dark;
  --bg: #030405;
  --ink: #f7f8f4;
  --muted: #a8b1ae;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.06);
  --cyan: #00d5ff;
  --mint: #66efba;
  --gold: #ffe34b;
  --mx: 50vw;
  --my: 50vh;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28rem),
    radial-gradient(circle at var(--mx) var(--my), rgba(0, 213, 255, 0.12), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 72%, transparent);
  opacity: 0.18;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--gold));
  box-shadow: 0 0 28px rgba(102, 239, 186, 0.56);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.cursor-light {
  position: fixed;
  z-index: 1;
  width: 34rem;
  height: 34rem;
  left: var(--mx);
  top: var(--my);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 239, 186, 0.14), transparent 62%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(3, 4, 5, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.brand img {
  width: 132px;
  opacity: 0.92;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

nav a:hover,
nav a:focus-visible {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(102, 239, 186, 0.44);
  border-radius: 999px;
  background: rgba(102, 239, 186, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 116px 20px 72px;
  text-align: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -2%;
  z-index: -3;
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.72), rgba(3, 4, 5, 0.14) 32%, rgba(3, 4, 5, 0.12) 68%, rgba(3, 4, 5, 0.66)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.34), rgba(3, 4, 5, 0.02) 42%, rgba(3, 4, 5, 0.64) 100%);
}

.hero-watermark {
  position: absolute;
  top: 62%;
  left: 50%;
  z-index: -1;
  width: min(500px, 58vw);
  opacity: 0.07;
  translate: -50% -50%;
  filter: drop-shadow(0 0 26px rgba(0, 213, 255, 0.22));
}

.hero-copy {
  width: min(860px, 100%);
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.72);
}

.hero-status {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 5.8vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  letter-spacing: 0;
}

.hero-text {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.hero-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  color: #fff;
  font-size: 1rem;
}

.hero-actions,
.contact-actions,
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.socials button {
  --shine-x: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--shine-x) 0%, rgba(255, 255, 255, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.socials button:hover {
  border-color: rgba(255, 255, 255, 0.44);
}

.button-primary {
  background:
    linear-gradient(90deg, rgba(0, 213, 255, 0.95), rgba(102, 239, 186, 0.95), rgba(255, 227, 75, 0.95));
  color: #020405;
  border-color: transparent;
}

.section {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 136px) clamp(18px, 4vw, 34px);
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.intro p:last-child,
.feature-card p,
.cinema-panel p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.scope-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding-top: 0;
}

.scope-board > div:first-child p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scope-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 213, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.scope-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 239, 186, 0.36);
  background:
    linear-gradient(135deg, rgba(0, 213, 255, 0.17), rgba(255, 227, 75, 0.045)),
    rgba(255, 255, 255, 0.065);
}

.scope-grid span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card,
.contact {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
}

.feature-card::after,
.contact::after,
.work-item::after,
.catalog-item::after,
.bento-card::after,
.process-grid article::after,
.faq-list details::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 213, 255, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover::after,
.contact:hover::after,
.work-item:hover::after,
.catalog-item:hover::after,
.bento-card:hover::after,
.process-grid article:hover::after,
.faq-list details:hover::after {
  opacity: 1;
}

.bento-section {
  padding-top: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, 25vw);
  gap: 12px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101214;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
}

.bento-card-wide {
  grid-column: span 2;
}

.bento-card-tall {
  grid-column: span 2;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 700ms ease;
}

.bento-card:hover img {
  transform: scale(1.045);
}

.bento-card > div {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.bento-card p:last-child {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-section {
  padding-top: 0;
}

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

.process-grid article,
.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.035);
}

.process-grid article {
  min-height: 240px;
  padding: clamp(22px, 4vw, 34px);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 950;
}

.process-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 560px;
}

.feature-card:nth-child(even) {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.feature-card:nth-child(even) img {
  order: 2;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(28px, 6vw, 72px);
}

.cinema-panel {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(82px, 10vw, 140px) clamp(20px, 6vw, 86px);
  isolation: isolate;
}

.cinema-panel img {
  position: absolute;
  inset: -4%;
  z-index: -2;
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.cinema-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 4, 5, 0.18), rgba(3, 4, 5, 0.88));
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(18px, 5vw, 64px);
  overflow: hidden;
  padding: 28px clamp(18px, 5vw, 56px);
  border-block: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(1.8rem, 5vw, 5.4rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.proof-strip span {
  animation: text-float 9s ease-in-out infinite alternate;
}

.proof-strip span:nth-child(even) {
  color: rgba(102, 239, 186, 0.5);
  animation-direction: alternate-reverse;
}

.panel-copy {
  max-width: 760px;
}

.panel-copy p:last-child {
  margin-top: 20px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.showcase-slider {
  position: relative;
  min-height: clamp(420px, 56vw, 720px);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07090a;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 950ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.03);
}

.showcase-slide.is-active img {
  animation: slow-push 7.6s ease both;
}

.showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.showcase-copy {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 58px);
  max-width: 720px;
}

.showcase-copy h3 {
  font-size: clamp(2.1rem, 5.2vw, 5.4rem);
  line-height: 0.95;
}

.catalog-heading {
  max-width: 900px;
  margin: clamp(72px, 10vw, 126px) 0 28px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 24vw);
  gap: 12px;
}

.work-item,
.catalog-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101214;
  transform-style: preserve-3d;
}

.work-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item.tall {
  grid-row: span 2;
}

.work-item.tall img {
  object-position: center top;
}

.work-item img,
.catalog-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.work-item img {
  height: 100%;
}

.work-item:hover img,
.catalog-item:hover img {
  transform: scale(1.045);
}

.catalog-grid {
  columns: 4 230px;
  column-gap: 12px;
}

.catalog-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
}

.motion-library {
  margin-top: clamp(70px, 10vw, 120px);
}

.motion-library-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.media-bands {
  display: grid;
  gap: 18px;
}

.media-band {
  overflow: hidden;
}

.media-band h3 {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.media-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: rail-scroll 42s linear infinite;
}

.media-track.reverse {
  animation-direction: reverse;
}

.media-band:hover .media-track {
  animation-play-state: paused;
}

.media-thumb {
  width: clamp(190px, 24vw, 320px);
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101214;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
  margin-top: clamp(78px, 10vw, 126px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 24%, rgba(0, 213, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.video-preview-block h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.video-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.video-preview {
  position: relative;
  width: clamp(140px, 16vw, 210px);
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d0f;
}

.video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050607;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  z-index: 1;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--mint);
  font-size: 1.4rem;
}

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

.faq-list p {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto clamp(38px, 8vw, 96px);
  padding: clamp(42px, 7vw, 76px) clamp(20px, 5vw, 58px);
}

.contact h2 {
  max-width: 800px;
}

.contact p {
  max-width: 680px;
  margin-top: 18px;
}

.contact-actions {
  justify-content: flex-end;
}

.socials button {
  cursor: default;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer > div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

footer img {
  width: 150px;
  opacity: 0.82;
}

footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
}

.reveal.in-view {
  animation: reveal-up 720ms ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

@keyframes slow-push {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.09);
  }
}

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

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

@keyframes text-float {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-22px);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    max-width: 210px;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
  }

  .intro,
  .scope-board,
  .feature-card,
  .feature-card:nth-child(even),
  .contact,
  .video-preview-block,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .bento-card-wide,
  .bento-card-tall {
    grid-column: span 2;
  }

  .feature-card:nth-child(even) img {
    order: 0;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 42vw);
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .showcase-slider {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 106px;
  }

  nav {
    gap: 8px 13px;
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 98px 18px 46px;
  }

  .hero-watermark {
    width: 96vw;
  }

  .button,
  .socials button {
    width: 100%;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, 78vw);
  }

  .work-item.large,
  .work-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, 78vw);
  }

  .bento-card-wide,
  .bento-card-tall {
    grid-column: auto;
  }

  .media-track {
    animation-duration: 34s;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}
