:root {
  --ink: #17191b;
  --paper: #f2f0eb;
  --white: #fff;
  --muted: #72767a;
  --line: #d7d4cd;
  --red: #e34b3e;
  --blue: #3d62d6;
  --acid: #d9ed55;
  --mint: #b9d8c6;
  --max: 1200px;
  --pad: clamp(20px, 4vw, 56px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

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

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

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

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(860px, 88svh);
  overflow: hidden;
  background: #101214;
  color: var(--white);
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background: url("./assets/joe-tro-portrait.jpg") 72% center / cover no-repeat;
  filter: saturate(0.78) contrast(1.05);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 13, 14, 0.97) 0%, rgba(11, 13, 14, 0.78) 48%, rgba(11, 13, 14, 0.12) 78%),
    linear-gradient(0deg, rgba(11, 13, 14, 0.58), transparent 40%);
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  min-height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.69rem;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-contact {
  padding: 9px 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 4px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  min-height: calc(min(860px, 88svh) - 82px);
  margin: 0 auto;
  padding: clamp(52px, 8vh, 100px) 0 clamp(76px, 10vh, 112px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.availability {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(217, 237, 85, 0.14);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.85rem, 6.6vw, 6.35rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions,
.film-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero-locations {
  display: flex;
  gap: 10px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-locations span {
  color: var(--red);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 32px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  place-items: center;
}

.scroll-cue span {
  width: 1px;
  height: 16px;
  background: var(--white);
}

.proof-band {
  display: grid;
  background: var(--acid);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-width: 0;
  padding: 28px var(--pad);
  border-right: 1px solid rgba(23, 25, 27, 0.18);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1.1;
}

.proof-item span {
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-intro {
  display: grid;
  margin-bottom: clamp(50px, 7vw, 86px);
  grid-template-columns: minmax(140px, 0.42fr) 1.1fr 0.75fr;
  align-items: start;
  column-gap: clamp(28px, 5vw, 76px);
}

.eyebrow,
.case-type {
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-intro h2,
.film-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-intro > p:last-child {
  margin: 6px 0 0;
  color: #55595d;
  font-size: 1rem;
  text-wrap: pretty;
}

.case-study {
  display: grid;
  min-height: 680px;
  overflow: hidden;
  border-radius: 6px;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 1.06fr);
}

.case-study + .case-study {
  margin-top: 28px;
}

.case-copy {
  display: flex;
  padding: clamp(34px, 5vw, 68px);
  flex-direction: column;
  justify-content: center;
}

.case-local-leaf {
  background: #123b2c;
  color: var(--white);
}

.case-heading {
  display: flex;
  gap: 14px;
  align-items: center;
}

.case-number {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
}

.case-local-leaf .case-type {
  color: #98d5af;
}

.case-copy h3,
.compact-copy h3 {
  margin: 20px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.case-lede {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.outcome-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.outcome-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.tool-row {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tool-row span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
}

.phone-stage {
  position: relative;
  display: flex;
  min-height: 680px;
  overflow: hidden;
  padding: 74px 34px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #d8d5c9;
  background-size: 32px 32px;
  align-items: flex-start;
  justify-content: center;
}

.phone-stage img {
  width: 34%;
  max-width: 270px;
  border: 7px solid #17191b;
  border-radius: 27px;
  box-shadow: 0 28px 52px rgba(14, 20, 17, 0.22);
}

.phone-stage img:first-child {
  z-index: 1;
  margin: 86px -27px 0 0;
  transform: rotate(-5deg);
}

.phone-stage img:nth-child(2) {
  z-index: 3;
}

.phone-stage img:nth-child(3) {
  z-index: 2;
  margin: 62px 0 0 -25px;
  transform: rotate(5deg);
}

.case-byobar {
  min-height: 620px;
  background: #202124;
  color: var(--white);
  grid-template-columns: minmax(400px, 1.05fr) minmax(0, 0.95fr);
}

.case-byobar .case-type {
  color: #f1a399;
}

.case-byobar .outcome-list li::before {
  background: var(--red);
}

.case-visual {
  position: relative;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  padding: 58px 34px 0;
  background: #e3afa7;
  align-items: flex-start;
  justify-content: center;
}

.case-visual:not(.byo-current-stage) img {
  width: 45%;
  max-width: 300px;
  border: 6px solid #18191a;
  border-radius: 25px;
  box-shadow: 0 28px 55px rgba(58, 25, 21, 0.23);
}

.case-visual:not(.byo-current-stage) img:first-child {
  z-index: 2;
  margin: 50px -20px 0 0;
  transform: rotate(-4deg);
}

.case-visual:not(.byo-current-stage) img:last-child {
  z-index: 1;
  transform: rotate(4deg);
}

.byo-current-stage {
  display: grid;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%),
    #e3afa7;
  gap: 24px;
  align-content: center;
}

.byo-current-stage img {
  position: static;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(58, 25, 21, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(58, 25, 21, 0.22);
  transform: none;
}

.byo-public-screen {
  align-self: end;
}

.byo-overview-stack {
  position: relative;
  min-height: 360px;
}

.byo-overview-stack .byo-theme-screen {
  position: absolute;
  width: 88%;
  border: 1px solid rgba(58, 25, 21, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(58, 25, 21, 0.24);
}

.byo-theme-ocean {
  top: 0;
  left: 0;
  z-index: 1;
}

.byo-theme-coast {
  top: 22px;
  left: 6%;
  z-index: 2;
}

.byo-theme-sunny {
  top: 44px;
  left: 12%;
  z-index: 3;
}

.project-pair {
  display: grid;
  margin-top: 28px;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.compact-project {
  display: grid;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  grid-template-rows: 0.95fr 1.05fr;
}

.compact-art {
  display: grid;
  min-height: 260px;
  padding: 44px;
  background: var(--blue);
  place-items: center;
}

.compact-art img {
  width: min(78%, 330px);
  filter: brightness(0) invert(1);
}

.trivia-interface {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  background: #536f86;
}

.trivia-interface img {
  position: absolute;
  width: 80%;
  max-width: none;
  border: 4px solid #1a2026;
  border-radius: 6px;
  filter: none;
  box-shadow: 0 24px 45px rgba(17, 25, 32, 0.28);
}

.trivia-interface img:first-child {
  top: 34px;
  left: 28px;
  z-index: 1;
  transform: rotate(-1.5deg);
}

.trivia-interface img:last-child {
  right: 24px;
  bottom: 28px;
  z-index: 2;
  transform: rotate(1.5deg);
}

.compact-copy {
  padding: clamp(28px, 4vw, 48px);
}

.compact-copy h3 {
  margin-top: 13px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.compact-copy p:last-child {
  margin: 20px 0 0;
  color: #585c60;
  text-wrap: pretty;
}

.worthwatcher-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    #0e9f58;
  background-size: 28px 28px;
}

.worthwatcher-visual img {
  position: absolute;
  width: 31%;
  border: 5px solid #10151d;
  border-radius: 20px;
  box-shadow: 0 25px 48px rgba(4, 51, 30, 0.3);
}

.worthwatcher-visual img:first-child {
  top: 43px;
  left: 8%;
  transform: rotate(-5deg);
}

.worthwatcher-visual img:nth-child(2) {
  top: 18px;
  left: 35%;
  z-index: 2;
}

.worthwatcher-visual img:last-child {
  top: 48px;
  right: 7%;
  transform: rotate(5deg);
}

.compact-link {
  margin-top: 22px;
}

.motion-study {
  display: grid;
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--line);
  gap: clamp(38px, 6vw, 74px);
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  align-items: start;
}

.motion-heading h3 {
  margin: 18px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 600;
  line-height: 1.06;
  text-wrap: balance;
}

.motion-heading > p:last-child {
  margin: 24px 0 0;
  color: #585c60;
  text-wrap: pretty;
}

.motion-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.motion-grid figure {
  min-width: 0;
  margin: 0;
}

.motion-grid video {
  display: block;
  width: 100%;
  border-radius: 5px;
  background: #080b12;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.motion-grid figcaption {
  display: grid;
  padding: 15px 2px 0;
  gap: 3px;
}

.motion-grid figcaption strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.92rem;
}

.motion-grid figcaption span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.range-band {
  background: var(--blue);
  color: var(--white);
}

.range-inner {
  width: min(calc(100% - (2 * var(--pad))), var(--max));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 140px) 0;
}

.range-band .section-intro {
  grid-template-columns: minmax(140px, 0.42fr) 1.85fr;
}

.range-band .eyebrow {
  color: var(--acid);
}

.range-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  grid-template-columns: repeat(4, 1fr);
}

.range-item {
  padding: 34px 28px 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.range-item + .range-item {
  padding-left: 28px;
}

.range-item:last-child {
  border-right: 0;
}

.range-item > span {
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 800;
}

.range-item h3 {
  min-height: 3.1em;
  margin: 22px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.28;
}

.range-item p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-wrap: pretty;
}

.creative-quote {
  margin: clamp(56px, 8vw, 96px) 0 0;
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.creative-quote p {
  max-width: 980px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.65rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.creative-quote cite {
  display: block;
  margin-top: 20px;
  color: var(--acid);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.film-section {
  display: grid;
  gap: clamp(40px, 8vw, 110px);
  grid-template-columns: minmax(340px, 0.9fr) 1.1fr;
  align-items: center;
}

.film-image {
  position: relative;
}

.film-image::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 46%;
  height: 54%;
  background: var(--acid);
  content: "";
}

.film-primary-image {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.crew-proof {
  position: absolute;
  right: -28px;
  bottom: 54px;
  width: min(66%, 390px);
  margin: 0;
  padding: 7px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(24, 25, 27, 0.24);
  transform: rotate(2.5deg);
}

.crew-proof img {
  width: 100%;
}

.crew-proof figcaption {
  padding: 8px 5px 3px;
  color: #55595d;
  font-size: 0.64rem;
  line-height: 1.35;
}

.image-caption {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.film-copy h2 {
  margin-top: 22px;
}

.film-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #55595d;
  text-wrap: pretty;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
}

.dark-link {
  margin: 0 0 0 8px;
}

.credentials-band {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.credentials-band div {
  padding: 34px var(--pad);
  border-right: 1px solid var(--line);
}

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

.credentials-band strong,
.credentials-band span {
  display: block;
}

.credentials-band strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.94rem;
}

.credentials-band span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.resume-section .section-intro {
  grid-template-columns: minmax(140px, 0.42fr) 1.85fr;
}

.resume-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.resume-option {
  display: flex;
  min-height: 360px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 6px;
  flex-direction: column;
}

.resume-option > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resume-option h3 {
  max-width: 530px;
  margin: 28px 0 40px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.resume-option a {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 800;
}

.resume-option a span {
  font-size: 1.2rem;
}

.resume-creative {
  background: var(--red);
  color: var(--white);
}

.resume-product {
  background: var(--mint);
}

.contact-section {
  display: grid;
  padding: clamp(82px, 10vw, 140px) max(var(--pad), calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
}

.contact-section .eyebrow {
  margin-bottom: 20px;
  color: var(--acid);
}

.contact-actions {
  display: flex;
  padding-bottom: 8px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-actions a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-actions p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
}

footer {
  display: grid;
  padding: 26px var(--pad);
  background: #0d0f10;
  color: rgba(255, 255, 255, 0.62);
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  color: var(--white);
}

@media (max-width: 950px) {
  .section-intro {
    grid-template-columns: 150px 1fr;
  }

  .section-intro > p:last-child {
    margin-top: 24px;
    grid-column: 2;
  }

  .case-study,
  .case-byobar {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .case-byobar .case-visual {
    grid-row: 2;
  }

  .film-section {
    grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  }

  .proof-band,
  .credentials-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2),
  .credentials-band div:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2),
  .credentials-band div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 25, 27, 0.18);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-backdrop {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 13, 14, 0.94), rgba(11, 13, 14, 0.45)),
      linear-gradient(0deg, rgba(11, 13, 14, 0.82), transparent 58%);
  }

  .topbar {
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 16px;
    border-radius: 0 0 6px 6px;
    background: rgba(16, 18, 20, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 11px;
  }

  .nav-contact {
    margin-top: 6px;
    text-align: center;
  }

  .hero-content {
    min-height: calc(88svh - 70px);
    padding-top: 42px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.15rem);
  }

  .hero-intro {
    max-width: 94%;
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 26px;
  }

  .hero-actions .button {
    flex: 1;
  }

  .hero-locations {
    margin-top: 24px;
    font-size: 0.62rem;
  }

  .scroll-cue {
    display: none;
  }

  .proof-item {
    padding: 22px 20px;
  }

  .section-intro,
  .range-band .section-intro,
  .resume-section .section-intro {
    display: block;
  }

  .section-intro h2 {
    margin-top: 15px;
  }

  .section-intro > p:last-child {
    margin-top: 20px;
  }

  .case-copy {
    padding: 36px 24px 42px;
  }

  .case-copy h3 {
    font-size: 2.55rem;
  }

  .phone-stage,
  .case-visual {
    min-height: 470px;
    padding: 50px 14px 0;
  }

  .phone-stage img {
    width: 39%;
    border-width: 5px;
    border-radius: 18px;
  }

  .phone-stage img:first-child {
    margin-top: 70px;
  }

  .phone-stage img:nth-child(3) {
    margin-top: 54px;
  }

  .case-visual img {
    width: 50%;
    border-width: 5px;
    border-radius: 18px;
  }

  .byo-current-stage {
    min-height: 470px;
    padding: 28px;
  }

  .byo-current-stage .byo-public-screen {
    width: 100%;
  }

  .byo-overview-stack {
    min-height: 290px;
  }

  .project-pair,
  .resume-grid {
    grid-template-columns: 1fr;
  }

  .motion-study {
    grid-template-columns: 1fr;
  }

  .compact-project {
    min-height: 500px;
  }

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

  .range-item:nth-child(2) {
    border-right: 0;
  }

  .range-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .range-item {
    padding: 26px 18px 26px 0;
  }

  .range-item + .range-item {
    padding-left: 18px;
  }

  .range-item h3 {
    min-height: 0;
  }

  .film-section {
    grid-template-columns: 1fr;
  }

  .film-image {
    width: 88%;
  }

  .crew-proof {
    right: -12%;
    bottom: 42px;
    width: 68%;
  }

  .credentials-band {
    grid-template-columns: 1fr;
  }

  .credentials-band div,
  .credentials-band div:nth-child(2) {
    padding: 24px var(--pad);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credentials-band div:last-child {
    border-bottom: 0;
  }

  .resume-option {
    min-height: 310px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-item span {
    font-size: 0.62rem;
  }

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

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

  .range-item,
  .range-item + .range-item {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  .range-item:last-child {
    border-bottom: 0;
  }

  .film-links {
    align-items: stretch;
    flex-direction: column;
  }

  .dark-link {
    margin: 8px 0 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
