/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f7f2;
  color: #090909;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}


/* =========================================
   BRAND SYSTEM
========================================= */

:root {
  --white: #f7f7f2;
  --black: #090909;
  --blue: #1537ff;
  --lime: #b9f000;

  --line: rgba(0, 0, 0, 0.16);
  --muted: #6b6b66;
}


/* =========================================
   TOP BAR
========================================= */

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.topbar {
  height: 76px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  padding: 0 1.8vw;

  border-bottom: 1px solid var(--line);
}

.wordmark {
  justify-self: start;

  font-size: clamp(24px, 2vw, 36px);
  font-weight: 900;

  letter-spacing: -0.065em;
  line-height: 1;
}

.wordmark span {
  color: var(--lime);
}

.top-meta {
  width: 100%;

  display: flex;
  justify-content: space-between;

  font-size: 12px;
  letter-spacing: 0.015em;
}

.status-dot {
  justify-self: end;

  width: 14px;
  height: 14px;

  background: var(--lime);

  border-radius: 50%;
}


/* =========================================
   HERO
========================================= */

.hero-grid {
  min-height: 62vh;

  display: grid;
  grid-template-columns: 3.1fr 1fr;
}

.hero-title {
  display: flex;
  align-items: flex-end;

  padding: 4.5vw 3vw 3.75vw;

  border-right: 1px solid var(--line);
}

.hero-title h1 {
  margin: 0;

  max-width: 1050px;

  font-size: clamp(58px, 7.2vw, 138px);
  line-height: 0.82;

  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-line {
  display: block;
}

.hero-title .hero-plus {
  color: var(--blue);
}

.hero-title .lime {
  color: var(--lime);
}

.hero-index {
  position: absolute;
  top: auto;
  right: calc(24.4vw + clamp(20px, 1.5vw, 30px));
  bottom: clamp(88px, 9vh, 116px);
  z-index: 2;

  width: clamp(190px, 15vw, 270px);

  display: grid;
  gap: clamp(12px, 1.25vw, 20px);
}

.hero-index a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(42px, 4vw, 72px);
  align-items: center;
  gap: 14px;

  color: var(--muted);

  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-index a span {
  transform: translateX(0);
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-index a i {
  width: 74%;
  height: 1px;

  display: block;

  background: var(--line);
  transform: scaleX(1);
  transform-origin: left center;
  transition:
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-index a:hover span,
.hero-index a:focus-visible span {
  color: var(--blue);
  transform: translateX(-7px);
}

.hero-index a:hover i,
.hero-index a:focus-visible i,
.hero-index a.is-active i {
  background: var(--blue);
  transform: scaleX(1.32);
}

.hero-index a.is-active span {
  color: var(--blue);
}

.hero-index a:focus-visible {
  outline-color: var(--blue);
}

@media (min-width: 1025px) and (max-width: 1599px) {
  .hero-index {
    right: 17.8vw;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .hero-grid {
    min-height: clamp(400px, 48svh, 500px);
    grid-template-columns: minmax(0, 2.4fr) minmax(220px, 1fr);
  }

  .hero-title {
    align-items: center;
    padding-top: clamp(34px, 5vw, 54px);
    padding-bottom: clamp(34px, 5vw, 54px);
  }

  .hero-title h1 {
    font-size: clamp(72px, 8vw, 96px);
    max-width: none;
  }

  .hero-designer {
    display: block;
  }

  .hero-index {
    display: none;
  }

  .hero-side {
    justify-content: center;
  }
}

.hero-side {
  position: relative;
  min-height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 3vw 3.5vw 3.75vw 3vw;

  overflow: hidden;

  font-size: 12px;
  line-height: 1.45;
}

.hero-side::before {
  content: "";

  position: absolute;
  top: -11vw;
  right: -13vw;

  width: 31vw;
  aspect-ratio: 1 / 1;

  border-radius: 50%;
  background: var(--blue);
}

.hero-side p {
  position: relative;
  z-index: 1;

  margin: 0;
}

.hero-side > p:first-child {
  width: min(100%, 230px);

  padding-top: 15px;

  border-top: 1px solid var(--black);

  font-weight: 700;
  letter-spacing: 0.015em;
}

.hero-side .location {
  width: min(100%, 230px);
  margin-top: 30px;

  color: var(--blue);

  font-weight: 700;
}

.scroll-line {
  position: absolute;

  right: 1.5vw;
  bottom: 1.5vw;

  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 11px;

  writing-mode: vertical-rl;
}


/* =========================================
   SECTION HEADER
========================================= */

.section-header {
  min-height: 68px;

  display: grid;
  grid-template-columns: 80px 1fr auto;

  align-items: center;

  padding: 0 3vw;

  border-bottom: 1px solid var(--line);

  font-size: 12px;
  letter-spacing: 0.02em;
}

.section-header span:first-child {
  color: var(--blue);
  font-weight: 700;
}

.section-header span:nth-child(2) {
  font-size: 14px;
  font-weight: 700;
}


/* =========================================
   VIDEO SYSTEM
========================================= */

.video-frame {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: var(--black);
}

.video-placeholder {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  background: var(--white);

  font-size: 12px;
  letter-spacing: 0.07em;

  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-frame:hover .video-placeholder {
  transform: scale(1.018);
}

.showreel-video {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: 0;
  transition: opacity 180ms ease;
}

.video-placeholder.has-started .showreel-video {
  opacity: 1;
}

.showreel-poster {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: block;

  background: var(--white);

  object-fit: cover;
  filter: brightness(0.7);

  opacity: 1;
  pointer-events: none;

  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-placeholder.has-started .showreel-poster {
  opacity: 0;
}

.showreel-placeholder-label {
  position: relative;
  z-index: 3;

  transition: opacity 160ms ease;
}

.video-placeholder.has-started .showreel-placeholder-label {
  opacity: 0;
}

.showreel-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;

  opacity: 0;
  pointer-events: none;

  transition: opacity 160ms ease;
}

.video-placeholder.is-loading .showreel-loading,
.video-placeholder.has-error .showreel-error {
  opacity: 1;
}

.showreel-cursor {
  --cursor-x: 50%;
  --cursor-y: 50%;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;

  width: 70px;
  height: 70px;

  display: none;
  place-items: center;

  border-radius: 50%;

  background: var(--lime);
  color: var(--black);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;

  opacity: 0;
  pointer-events: none;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%)
    scale(0.86);

  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showreel-cursor.is-visible {
  opacity: 1;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%)
    scale(1);
}

.showreel-cursor.is-pressed {
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%)
    scale(0.94);
}

@media (hover: hover) and (pointer: fine) {
  .showreel-cursor {
    display: grid;
  }

  .video-placeholder.cursor-active,
  .video-placeholder.cursor-active * {
    cursor: none !important;
  }
}

.play-button {
  position: absolute;

  right: 18px;
  bottom: 18px;
  z-index: 5;

  border: 0;

  padding: 10px 14px;

  background: var(--lime);
  color: var(--black);

  border-radius: 999px;

  cursor: pointer;

  font-size: 11px;
  font-weight: 700;

  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.play-button:hover {
  transform: translate(-2px, -2px);
  background: #c8ff16;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

.play-button:active {
  transform: translate(0, 0) scale(0.97);
}


/* =========================================
   SHOWREEL
========================================= */

.showreel {
  padding-bottom: 7.5vw;

  border-bottom: 1px solid var(--line);
}

.showreel .section-header {
  margin-bottom: 3.5vw;

  border-top: 1px solid var(--line);
}

.showreel-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 1fr);
  gap: clamp(44px, 4vw, 72px);

  padding: 0 3vw;
}

.hero-video {
  width: 100%;

  margin: 0;

  aspect-ratio: 16 / 9;
}

.showreel-profile {
  width: 100%;
  max-width: 620px;
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  justify-self: start;

  padding: 2px 0 0;
}

.showreel-about h2 {
  margin: 0 0 18px;

  font-size: clamp(36px, 3.15vw, 54px);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.showreel-about h2 span {
  color: var(--lime);
}

.showreel-about p {
  max-width: 420px;
  margin: 0;

  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.42;
  letter-spacing: -0.015em;
}

.credentials-card {
  --card-x: 0px;
  --card-y: 0px;

  margin-top: clamp(30px, 3vw, 46px);

  border: 1px solid rgba(9, 9, 9, 0.5);

  background: var(--white);
  overflow: hidden;
}

.credentials-card-inner {
  transform: translate3d(var(--card-x), var(--card-y), 0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.credentials-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;

  padding: clamp(20px, 2vw, 28px);
}

.credentials-kicker {
  margin: 0 0 14px;

  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.credentials-header h3 {
  margin: 0 0 9px;

  font-size: clamp(22px, 2vw, 31px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.credentials-header h3 span {
  color: var(--lime);
}

.credentials-role {
  margin: 0;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.upwork-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding-bottom: 4px;

  border-bottom: 1px solid var(--blue);

  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.upwork-link span {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.credential-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin: 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-stat {
  position: relative;

  min-width: 0;
  padding: clamp(17px, 1.6vw, 23px);

  border-right: 1px solid var(--line);
  overflow: hidden;
}

.credential-stat:last-child {
  border-right: 0;
}

.credential-stat dd {
  margin: 0 0 8px;

  color: var(--blue);

  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.055em;

  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.credential-stat dt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.stat-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 2px;

  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;

  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.credential-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin: 0;
  padding: 0;

  list-style: none;
}

.credential-details li {
  min-width: 0;
  padding: 15px 12px;

  border-right: 1px solid var(--line);

  color: var(--blue);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  white-space: nowrap;
}

.credential-details li:last-child {
  border-right: 0;
}

.credential-check {
  display: inline-grid;
  place-items: center;

  width: 15px;
  height: 15px;
  margin-right: 4px;

  border: 1px solid var(--blue);
  border-radius: 50%;

  font-size: 8px;
}

.reveal-ready .credentials-card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 380ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .credentials-card.credentials-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .credentials-header,
.reveal-ready .credential-stat,
.reveal-ready .credential-details {
  opacity: 0;
  transform: translateY(7px);
}

.reveal-ready .credentials-card.credentials-visible .credentials-header,
.reveal-ready .credentials-card.credentials-visible .credential-stat,
.reveal-ready .credentials-card.credentials-visible .credential-details {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 300ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .credentials-card.credentials-visible .credentials-header {
  transition-delay: 60ms;
}

.reveal-ready .credentials-card.credentials-visible .credential-stat:nth-child(1) {
  transition-delay: 150ms;
}

.reveal-ready .credentials-card.credentials-visible .credential-stat:nth-child(2) {
  transition-delay: 230ms;
}

.reveal-ready .credentials-card.credentials-visible .credential-stat:nth-child(3) {
  transition-delay: 310ms;
}

.reveal-ready .credentials-card.credentials-visible .credential-details {
  transition-delay: 410ms;
}

@media (hover: hover) and (pointer: fine) {
  .upwork-link:hover span {
    transform: translate(2px, -2px);
  }

  .credential-stat:hover dd {
    transform: translateY(-2px) scale(1.015);
  }

  .credential-stat:hover .stat-line,
  .credential-stat-success:hover .stat-line {
    transform: scaleX(1);
  }
}

@media (hover: none), (pointer: coarse) {
  .credentials-card:active .credentials-card-inner {
    transform: scale(0.995);
  }
}

.selected-clients {
  width: 100%;
  margin-top: clamp(28px, 2.6vw, 40px);
}

.clients-heading {
  display: grid;
  grid-template-columns: auto minmax(28px, 1fr);
  align-items: center;
  gap: 18px;
}

.clients-heading h3 {
  margin: 0;

  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.clients-heading > span {
  height: 1px;

  background: var(--line);
  transform: scaleX(1);
  transform-origin: left;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;

  margin: 0;
  padding: 22px 0 18px;

  list-style: none;
}

.client-logo {
  --logo-width: 82px;
  --logo-height: 28px;

  position: relative;

  min-width: 0;
  min-height: 42px;

  display: grid;
  place-items: center;

  padding: 7px clamp(7px, 0.9vw, 12px);
}

.client-logo::after {
  content: "";

  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;

  height: 1px;

  background: var(--blue);
  opacity: 0;
  transform: scaleX(0);

  transition:
    opacity 200ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.client-logo img {
  width: min(100%, var(--logo-width));
  max-width: var(--logo-width);
  height: var(--logo-height);

  display: block;

  object-fit: contain;

  filter: grayscale(1) brightness(0);
  opacity: 0.64;

  transition:
    filter 220ms ease,
    opacity 200ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.client-logo--ift {
  --logo-width: 42px;
  --logo-height: 38px;
}

.client-logo--tech {
  --logo-width: 68px;
  --logo-height: 36px;
}

.client-logo--gettr {
  --logo-width: 76px;
  --logo-height: 32px;
}

.client-logo--deviate {
  --logo-width: 86px;
  --logo-height: 22px;
}

.client-logo--codeveloper {
  --logo-width: 90px;
  --logo-height: 25px;
}

.client-logo--claim {
  --logo-width: 84px;
  --logo-height: 27px;
}

.clients-note {
  margin: 0;

  color: var(--muted);

  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.reveal-ready .selected-clients .clients-heading h3,
.reveal-ready .selected-clients .client-logo,
.reveal-ready .selected-clients .clients-note {
  opacity: 0;
  transform: translateY(7px);
}

.reveal-ready .selected-clients .clients-heading > span {
  transform: scaleX(0);
}

.reveal-ready .selected-clients.is-revealed .clients-heading h3,
.reveal-ready .selected-clients.is-revealed .client-logo,
.reveal-ready .selected-clients.is-revealed .clients-note {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .selected-clients.is-revealed .clients-heading > span {
  transform: scaleX(1);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 70ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(1) {
  transition-delay: 110ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(2) {
  transition-delay: 150ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(3) {
  transition-delay: 190ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(4) {
  transition-delay: 230ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(5) {
  transition-delay: 270ms;
}

.reveal-ready .selected-clients.is-revealed .client-logo:nth-child(6) {
  transition-delay: 310ms;
}

.reveal-ready .selected-clients.is-revealed .clients-note {
  transition-delay: 370ms;
}

@media (hover: hover) and (pointer: fine) {
  .client-logo:hover img {
    opacity: 1;
    transform: translateY(-2px) scale(1.025);
  }

  .client-logo--color-safe:hover img {
    filter: none;
  }

  .client-logo:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.reveal-ready .showreel .hero-video {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 800ms cubic-bezier(0.22, 1, 0.36, 1) 100ms;
}

.reveal-ready .showreel.is-revealed .hero-video {
  clip-path: inset(0);
}

@media (max-width: 1024px) {
  .showreel-content {
    grid-template-columns: 1fr;
  }

  .hero-video,
  .showreel-profile {
    width: min(760px, 72vw);
  }

  .showreel-profile {
    max-width: 620px;
  }

  .showreel-profile {
    margin-top: 48px;
  }

}


/* =========================================
   SKILLS / CAPABILITIES
========================================= */

.skills {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(42px, 6vw, 110px);

  padding: clamp(42px, 5vw, 76px) 3vw;

  border-bottom: 1px solid var(--line);
}

.skills h2 {
  margin: 0;

  font-size: clamp(46px, 5.6vw, 92px);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.skills h2 span {
  color: var(--lime);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 13px;

  border: 1px solid rgba(9, 9, 9, 0.32);
  border-radius: 3px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  cursor: default;

  transition:
    color 200ms ease,
    border-color 200ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skill-tag::after {
  content: "";

  width: 5px;
  height: 5px;

  flex: 0 0 auto;

  border-radius: 50%;
  background: var(--blue);

  opacity: 0;
  transform: scale(0.5);

  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skill-tag-featured,
.skill-tag:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.skill-tag-featured::after,
.skill-tag:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .skill-tag:hover {
    color: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
  }

  .skill-tag:hover::after {
    opacity: 1;
    transform: scale(1);
  }
}


/* =========================================
   WORK INTRO
========================================= */

.work {
  padding: 0 3vw;
}

.section-title {
  min-height: 34vh;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 6vw 0 2vw;
}

.section-title p {
  margin: 0 0 12px;

  font-size: 12px;
  font-weight: 700;
}

.section-title h2 {
  margin: 0;

  font-size: clamp(72px, 11vw, 190px);
  line-height: 0.78;

  letter-spacing: -0.085em;
}

.section-title h2 span {
  color: var(--lime);
}


/* =========================================
   PROJECTS
========================================= */

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

  gap: clamp(64px, 7vw, 118px) clamp(28px, 4vw, 72px);
}

.work:not(.final-work) .projects-grid {
  padding-bottom: clamp(84px, 9vw, 156px);
}

.project-card {
  min-width: 0;
  padding: 0;

  display: grid;
  grid-template-rows: auto 1fr;
}

.project-card .video-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.project-card-copy {
  padding: 16px 0 24px;

  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-card-index {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 24px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-card-index span:first-child {
  color: var(--blue);
}

.project-card-copy h3 {
  max-width: 34ch;
  margin: 0 0 7px;

  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.project-card-copy .project-client {
  margin: 0;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.project-description {
  max-width: 58ch;
  margin: 16px 0 18px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.5;
}

.project-tags {
  margin: auto 0 0;
  padding: 18px 0 0;

  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  list-style: none;
}

.project-tag {
  padding: 6px 10px;

  border: 1px solid var(--blue);
  border-radius: 3px;

  background: transparent;
  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================
   VOOMY — SELECTED CAMPAIGN
========================================= */

.voomy-campaign {
  min-width: 0;
  grid-column: 1 / -1;

  margin: clamp(64px, 6.5vw, 112px) 0 clamp(64px, 7vw, 120px);
  padding-bottom: clamp(52px, 4vw, 64px);

  border-bottom: 1px solid var(--line);
}

.voomy-campaign-label {
  margin-bottom: clamp(28px, 2.4vw, 38px);
}

.voomy-campaign-label p {
  margin: 0;

  color: var(--blue);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.voomy-campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.18fr) 1px minmax(320px, 1fr);
  grid-template-areas: "media divider info";
  align-items: stretch;
  column-gap: clamp(28px, 2.25vw, 40px);
}

.voomy-campaign-layout::before {
  content: "";
  grid-area: divider;

  width: 1px;
  min-height: 100%;

  background: var(--line);
}

.voomy-media-bento {
  min-width: 0;
  grid-area: media;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.79fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.1vw, 16px);
}

.voomy-media-item {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.voomy-media-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.voomy-media-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.voomy-media-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.voomy-media-item:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.voomy-media-item .video-frame {
  width: 100%;
  height: auto;
}

.voomy-media-item--vertical .video-frame {
  aspect-ratio: 9 / 16;
}

.voomy-media-item--square .video-frame {
  aspect-ratio: 1;
}

.voomy-media-item .project-media,
.voomy-media-item .video-frame {
  overflow: hidden;
  border-radius: 12px;
}

.voomy-media-caption {
  padding-top: 10px;
}

.voomy-media-number {
  display: block;

  color: var(--blue);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.voomy-media-caption h3 {
  margin: 5px 0 3px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.voomy-media-caption p {
  margin: 0;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.voomy-campaign-info {
  min-width: 0;
  grid-area: info;

  display: flex;
  flex-direction: column;

  padding-top: clamp(12px, 1.4vw, 22px);
}

.voomy-logo {
  width: min(100%, 360px);
  height: auto;

  display: block;

  object-fit: contain;
  object-position: left center;
}

.voomy-campaign-meta {
  margin-top: clamp(26px, 2.4vw, 36px);
  padding: 0;

  display: flex;
  justify-content: space-between;
  gap: 24px;

}

.voomy-campaign-meta p {
  margin: 0;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.voomy-campaign-meta p:last-child {
  color: var(--blue);
}

.voomy-campaign-description {
  max-width: 46ch;
  margin: clamp(28px, 2.5vw, 36px) 0 0;
  padding-bottom: clamp(26px, 2.3vw, 34px);

  border-bottom: 1px solid var(--line);
  color: var(--muted);

  font-size: 15px;
  line-height: 1.6;
}

.voomy-campaign-tags {
  margin-top: clamp(24px, 2.1vw, 32px);
  padding-top: 0;

  display: grid;
  grid-template-columns: max-content max-content;
  gap: 7px;
}

.voomy-campaign-tags .project-tag {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  border-color: var(--black);
  color: var(--black);
}

.voomy-website-link {
  width: fit-content;
  margin-top: clamp(30px, 2.6vw, 40px);
  padding: 0 0 10px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  border-bottom: 1px solid var(--blue);
  color: var(--blue);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;

  transition: color 200ms ease;
}

.voomy-website-link span {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.voomy-product-wrap {
  position: relative;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: flex-end;

  align-self: center;
  margin-top: clamp(30px, 2.8vw, 42px);
}

.voomy-product-render {
  position: relative;
  z-index: 1;

  width: clamp(320px, 85%, 470px);
  max-width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .voomy-website-link:hover span {
    transform: translate(3px, -3px);
  }
}

.reveal-ready .voomy-campaign .voomy-campaign-label p,
.reveal-ready .voomy-campaign .voomy-campaign-info,
.reveal-ready .voomy-campaign .voomy-media-item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 460ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .voomy-campaign.is-revealed .voomy-campaign-label p,
.reveal-ready .voomy-campaign.is-revealed .voomy-campaign-info,
.reveal-ready .voomy-campaign.is-revealed .voomy-media-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .voomy-campaign.is-revealed .voomy-media-item:nth-child(2) {
  transition-delay: 60ms;
}

.reveal-ready .voomy-campaign.is-revealed .voomy-media-item:nth-child(3) {
  transition-delay: 110ms;
}

.reveal-ready .voomy-campaign.is-revealed .voomy-media-item:nth-child(4) {
  transition-delay: 160ms;
}

.reveal-ready .voomy-campaign.is-revealed .voomy-campaign-info {
  transition-delay: 120ms;
}

.final-work {
  padding-top: clamp(70px, 7vw, 120px);
  padding-bottom: clamp(80px, 9vw, 150px);
}

.project-placeholder-frame {
  border: 1px solid var(--line);

  background: rgba(16, 16, 16, 0.025);
}

.project-placeholder-media {
  width: 100%;
  height: 100%;

  display: grid;
  place-content: center;
  gap: 10px;

  color: var(--muted);
  text-align: center;
}

.project-placeholder-media span {
  color: var(--blue);

  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.project-placeholder-media p,
.project-placeholder-status {
  margin: 0;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card-copy--placeholder {
  color: var(--muted);
}

.project-card-copy--placeholder .project-card-index {
  margin-bottom: 18px;
}

.project-card-copy--placeholder h3 {
  margin-bottom: 8px;
}

@media (min-width: 1280px) {
  .work:not(.final-work) .section-title {
    min-height: 30vh;
  }

  .projects-grid {
    width: 88vw;
    max-width: 1680px;

    margin-right: auto;
    margin-left: auto;

    gap: 24px clamp(40px, 3vw, 64px);
  }

  .project-card .video-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .project-card-copy {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 18px;

    box-sizing: border-box;
  }

  .project-card-index {
    margin-bottom: 12px;

    font-size: 11px;
  }

  .project-card-copy h3 {
    min-height: 38px;
    margin-bottom: 4px;

    font-size: 16px;
  }

  .project-card-copy .project-client {
    min-height: 16px;

    font-size: 12px;
    line-height: 1.3;
  }

  .project-description {
    max-width: 58ch;
    margin-top: 10px;
    margin-bottom: 12px;

    min-height: 38px;

    display: block;
    overflow: visible;

    font-size: 13px;
    line-height: 1.45;
  }

  .project-tags {
    padding-top: 6px;
  }

  .project-card-copy--placeholder .project-card-index {
    margin-bottom: 12px;
  }
}

.project-media {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
  background: var(--white);

  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-video,
.project-poster {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
  object-position: center;
}

.project-video {
  z-index: 1;

  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-poster {
  z-index: 2;

  background: var(--white);

  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-poster.is-loaded {
  opacity: 1;
}

.project-media.is-playing .project-video {
  opacity: 1;
}

.project-media.is-playing .project-poster,
.project-media.is-playing .project-poster.is-loaded {
  opacity: 0;
}

.project-video-status {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 3;

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;

  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.project-media.has-error .project-video-status {
  opacity: 1;
}

.project-cursor {
  --project-cursor-x: 50%;
  --project-cursor-y: 50%;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;

  width: 56px;
  height: 56px;

  display: none;
  place-items: center;

  border-radius: 50%;
  background: var(--lime);
  color: var(--black);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;

  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--project-cursor-x), var(--project-cursor-y), 0)
    translate(-50%, -50%) scale(0.88);
  transition:
    opacity 160ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-cursor.is-visible {
  opacity: 1;
  transform: translate3d(var(--project-cursor-x), var(--project-cursor-y), 0)
    translate(-50%, -50%) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .project-cursor {
    display: grid;
  }

  [data-project-preview].project-cursor-active,
  [data-project-preview].project-cursor-active * {
    cursor: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .video-frame:hover .project-media {
    transform: scale(1.018);
  }
}

@media (min-width: 1280px) and (hover: hover) and (pointer: fine) {
  [data-project-preview] {
    transform: scale(1);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  [data-project-preview]:hover {
    transform: scale(1.006);
  }

  [data-project-preview]:hover .project-media {
    transform: scale(1.012);
  }
}


/* =========================================
   REELS SECTION
========================================= */

.reels {
  padding: 4vw 0 5vw;

  overflow: hidden;

  background: var(--blue);
  color: white;
}

.reels-heading {
  display: grid;
  grid-template-columns: 1fr 2fr auto;

  align-items: end;

  padding: 0 3vw 3.5vw;
}

.reels-heading > div span,
.reels-heading > div p,
.reels-controls > span {
  margin: 0;

  font-size: 12px;
}

.reels-heading > div span,
.reels-controls > span {
  font-weight: 700;
}

.reels-heading h2 {
  margin: 0;

  font-size: clamp(72px, 10vw, 180px);
  line-height: 0.78;

  letter-spacing: -0.08em;
}

.reels-heading h2 span {
  color: var(--lime);
}

.reels-controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

.reels-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reels-arrows button {
  border: 0;

  padding: 2px 3px;

  background: transparent;
  color: white;

  cursor: pointer;

  font-size: 18px;
  line-height: 1;

  transition: opacity 180ms ease, transform 180ms ease;
}

.reels-arrows button:hover:not(:disabled) {
  transform: translateX(-2px);
}

.reels-arrows button:last-child:hover:not(:disabled) {
  transform: translateX(2px);
}

.reels-arrows button:disabled {
  cursor: default;
  opacity: 0.28;
}

.reels-arrows button:focus-visible {
  outline-color: var(--lime);
}

.reels-track {
  width: min(calc(100% - 12vw), 1420px);

  display: flex;
  gap: clamp(18px, 1.75vw, 28px);

  margin: 0 auto;
  padding: 0;

  overflow-x: auto;

  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  user-select: none;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.reels-track::after {
  content: "";
  flex: 0 0 3vw;
}

.reels-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reels-track::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 auto;

  width: clamp(220px, 19vw, 320px);
  scroll-snap-align: start;
}

.vertical-video {
  position: relative;

  width: 100%;

  aspect-ratio: 9 / 16;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: var(--black);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
}

.vertical-video .project-media {
  border-radius: inherit;
}

.vertical-video > span {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 900;

  color: transparent;

  -webkit-text-stroke: 1px white;

  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vertical-video:hover > span {
  transform: scale(1.035);
}

.reel-meta {
  margin-top: 11px;
}

.reel-meta span {
  display: block;

  color: var(--lime);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.reel-meta p {
  margin: 5px 0 0;

  color: var(--white);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}


/* =========================================
   FINAL WORK
========================================= */

.final-work {
  padding-top: 7vw;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 6vw 3vw 2vw;

  background: var(--black);
  color: white;
}

.footer-wordmark {
  font-size: clamp(72px, 12vw, 220px);

  font-weight: 900;
  line-height: 0.8;

  letter-spacing: -0.085em;
}

.footer-wordmark span {
  color: var(--lime);
}

.footer-meta {
  margin-top: 5vw;
  padding-top: 18px;

  display: grid;
  grid-template-columns: 1fr 1fr auto;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  font-size: 11px;
}


/* =========================================
   REVEALS
========================================= */

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 2.4fr 1fr;
  }

  .hero-video {
    width: 72vw;
  }

  .projects-grid {
    gap: 64px 3vw;
  }

  .voomy-campaign-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "media";
    gap: 38px;
  }

  .voomy-campaign-layout::before {
    display: none;
  }

  .voomy-campaign-info {
    max-width: 680px;

    padding-top: 0;
  }

  .voomy-logo {
    width: min(54%, 320px);
  }

  .voomy-campaign-meta {
    margin-top: 24px;
  }

  .voomy-campaign-description {
    max-width: 60ch;
  }

  .voomy-campaign-tags {
    margin-top: 22px;
  }

  .voomy-product-wrap {
    display: none;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .hero-index {
    display: none;
  }

  .hero-designer {
    display: inline;
  }

  .topbar {
    height: 66px;

    grid-template-columns: 1fr auto;

    padding: 0 18px;
  }

  .top-meta {
    display: none;
  }

  .status-dot {
    width: 12px;
    height: 12px;
  }

  .wordmark {
    font-size: 25px;
  }


  .hero-grid {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .hero-title {
    min-height: auto;

    align-items: flex-end;

    padding: clamp(36px, 7svh, 58px) 18px clamp(24px, 4svh, 32px);

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-title h1 {
    font-size: 15vw;
    line-height: 0.84;
  }

  .hero-side {
    min-height: clamp(155px, 21svh, 185px);

    padding: 20px 18px clamp(38px, 5.5svh, 50px);
  }

  .hero-side::before {
    top: -105px;
    right: -75px;

    width: 220px;
  }

  .hero-side > p:first-child,
  .hero-side .location {
    width: 210px;
  }

  .hero-side .location {
    margin-top: 18px;
  }

  .scroll-line {
    display: none;
  }


  .section-header {
    grid-template-columns: 45px 1fr auto;

    padding: 0 18px;

    font-size: 10px;
  }

  .section-header span:nth-child(2) {
    font-size: 12px;
  }


  .showreel {
    padding-bottom: 70px;
  }

  .showreel .section-header {
    margin-bottom: 22px;
  }

  .hero-video {
    width: 100%;

    margin: 0;
  }

  .showreel-content {
    padding: 0 18px;
  }

  .showreel-profile {
    width: 100%;

    margin-top: 44px;
  }

  .showreel-about h2 {
    font-size: 38px;
  }

  .showreel-about p {
    max-width: 340px;

    font-size: 16px;
  }

  .credentials-card {
    margin-top: 32px;
  }

  .credentials-header {
    grid-template-columns: 1fr;
    gap: 20px;

    padding: 22px 18px;
  }

  .credentials-header h3 {
    font-size: 27px;
  }

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

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

  .credential-stat {
    padding: 19px 16px;
  }

  .credential-stat:nth-child(2) {
    border-right: 0;
  }

  .credential-stat:last-child {
    grid-column: 1 / -1;

    border-top: 1px solid var(--line);
  }

  .credential-stat dd {
    font-size: 31px;
  }

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

  .credential-details li:nth-child(2) {
    border-right: 0;
  }

  .credential-details li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .selected-clients {
    margin-top: 32px;
  }

  .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 12px;

    padding: 20px 0 16px;
  }

  .client-logo {
    min-height: 48px;

    padding: 8px 10px;
  }

  .client-logo img {
    max-width: var(--logo-width);
    height: var(--logo-height);
  }

  .clients-note {
    max-width: 320px;

    font-size: 11px;
  }


  .skills {
    grid-template-columns: 1fr;
    gap: 30px;

    padding: 46px 18px 50px;
  }

  .skills h2 {
    font-size: 48px;
  }

  .skills-list {
    gap: 9px 8px;
  }

  .skill-tag {
    padding: 11px 13px;

    font-size: 13px;
  }


  .work {
    padding: 0 18px;
  }

  .section-title {
    min-height: 230px;

    padding-bottom: 22px;
  }

  .section-title h2 {
    font-size: 25vw;
  }


  .projects-grid {
    grid-template-columns: 1fr;

    gap: 64px;
  }

  .voomy-campaign {
    margin: 20px 0 16px;
    padding-bottom: 48px;
  }

  .voomy-campaign-label {
    margin-bottom: 34px;
  }

  .voomy-campaign-label p {
    font-size: 10px;
  }

  .voomy-campaign-layout {
    gap: 30px;
  }

  .voomy-logo {
    width: min(68%, 260px);
  }

  .voomy-campaign-meta {
    align-items: flex-start;

    margin-top: 22px;
  }

  .voomy-campaign-meta p {
    max-width: 26ch;

    font-size: 10px;
  }

  .voomy-campaign-description {
    margin-top: 20px;
    padding-bottom: 22px;

    font-size: 13px;
    line-height: 1.5;
  }

  .voomy-campaign-tags {
    margin-top: 18px;
    padding-top: 0;

    display: flex;
    flex-wrap: wrap;
  }

  .voomy-website-link {
    margin-top: 22px;
  }

  .voomy-media-bento {
    width: 100%;

    display: flex;
    gap: 12px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .voomy-media-bento::-webkit-scrollbar {
    display: none;
  }

  .voomy-media-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .voomy-media-item--vertical {
    width: min(64vw, 270px);
  }

  .voomy-media-item--square {
    width: min(72vw, 310px);
  }

  .project-card-index {
    margin-bottom: 20px;
  }

  .project-card-copy h3 {
    max-width: none;

    font-size: 17px;
  }

  .project-description {
    max-width: none;

    font-size: 13px;
  }

  .final-work {
    padding-top: 64px;
    padding-bottom: 80px;
  }


  .reels {
    padding: 50px 0 60px;
  }

  .reels-heading {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 0 18px 34px;
  }

  .reels-heading h2 {
    font-size: 24vw;
  }

  .reels-track {
    width: calc(100% - 36px);

    gap: 14px;

    margin: 0 auto;
    padding: 0;

    cursor: auto;
  }

  .reels-track::after {
    flex-basis: 4px;
  }

  .reel-card {
    width: 58vw;
  }

  .reel-meta p {
    font-size: 10px;
  }


  .final-work {
    padding-top: 70px;
  }


  footer {
    padding: 60px 18px 24px;
  }

  .footer-wordmark {
    font-size: 22vw;
  }

  .footer-meta {
    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 50px;
  }

}

@media (width: 768px) {
  .hero-grid {
    min-height: 400px;
    grid-template-columns: minmax(0, 2.4fr) minmax(220px, 1fr);
  }

  .hero-title {
    align-items: center;
    padding: 34px 3vw;

    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-title h1 {
    max-width: none;

    font-size: 68px;
    line-height: 0.82;
  }

  .hero-title .hero-line:first-child {
    white-space: nowrap;
  }

  .hero-designer {
    display: block;
  }

  .hero-side {
    min-height: 100%;
    justify-content: center;

    padding: 3vw 3.5vw 3.75vw 3vw;
  }

  .hero-side::before {
    top: -11vw;
    right: -13vw;

    width: 31vw;
  }

  .hero-side > p:first-child,
  .hero-side .location {
    width: min(100%, 230px);
  }

  .scroll-line {
    display: flex;
  }
}


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

  .video-placeholder,
  .showreel-video,
  .showreel-poster,
  .showreel-placeholder-label,
  .showreel-status,
  .showreel-cursor,
  .project-media,
  .project-video,
  .project-poster,
  .project-video-status,
  .project-cursor,
  .voomy-campaign-label p,
  .voomy-campaign-info,
  .voomy-media-item,
  .voomy-website-link,
  .voomy-website-link span,
  .vertical-video > span,
  .play-button,
  .reels-arrows button,
  .skill-tag,
  .skill-tag::after,
  .credentials-card,
  .credentials-card-inner,
  .credentials-header,
  .credential-stat,
  .credential-stat dd,
  .credential-details,
  .stat-line,
  .upwork-link span,
  .clients-heading h3,
  .clients-heading > span,
  .client-logo,
  .client-logo::after,
  .client-logo img,
  .clients-note,
  .reveal-ready [data-reveal] {
    transition: none;
  }

  .video-frame:hover .video-placeholder,
  .video-frame:hover .project-media,
  .vertical-video:hover > span,
  .play-button:hover,
  .play-button:active,
  .reels-arrows button:hover,
  .skill-tag:hover,
  .skill-tag:focus-visible,
  .credentials-card:active .credentials-card-inner,
  .credential-stat:hover dd,
  .client-logo:hover img,
  .reveal-ready .voomy-campaign .voomy-campaign-label p,
  .reveal-ready .voomy-campaign .voomy-campaign-info,
  .reveal-ready .voomy-campaign .voomy-media-item,
  .reveal-ready [data-reveal] {
    transform: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
  }

  .reveal-ready .voomy-campaign .voomy-campaign-label p,
  .reveal-ready .voomy-campaign .voomy-campaign-info,
  .reveal-ready .voomy-campaign .voomy-media-item {
    opacity: 1;
  }

  .reveal-ready .showreel .hero-video {
    clip-path: inset(0);
  }

  .reveal-ready .credentials-card,
  .reveal-ready .credentials-header,
  .reveal-ready .credential-stat,
  .reveal-ready .credential-details,
  .reveal-ready .selected-clients .clients-heading h3,
  .reveal-ready .selected-clients .client-logo,
  .reveal-ready .selected-clients .clients-note {
    opacity: 1;
    transform: none;
  }

  .reveal-ready .selected-clients .clients-heading > span {
    transform: scaleX(1);
  }
}
