﻿@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-MEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/SATOSHI-BLACK.OTF") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #eaeaea;
  --paper-deep: #eaeaea;
  --paper-light: #eaeaea;
  --ink: #161616;
  --muted: #626260;
  --soft: rgba(22, 22, 22, 0.12);
  --blue: #416bff;
  --max: 1180px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: "Satoshi", ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("./img/paper.webp");
  background-size: 1600px auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.28;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h2 {
  max-width: 720px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: min(88svh, 760px);
  display: grid;
  align-items: start;
  padding: clamp(46px, 7vh, 76px) 0 clamp(34px, 5vh, 58px);
  overflow: hidden;
}

.hero::after {
  content: none;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 7vh, 72px);
  width: 1px;
  height: 78px;
  background: rgba(17, 17, 15, 0.62);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(17, 17, 15, 0.78);
  border-bottom: 1px solid rgba(17, 17, 15, 0.78);
  transform: translateX(-50%) rotate(45deg);
}

.hero-inner,
.section,
footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero-inner {
  width: min(1400px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(520px, 0.98fr) minmax(410px, 0.9fr);
  align-items: center;
  gap: clamp(86px, 9vw, 148px);
}

.hero-copy,
.social-stack {
  max-width: 100%;
}

.hero-copy {
  min-width: 0;
  transform: translateY(-16px);
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  white-space: nowrap;
  color: var(--ink);
  font-size: clamp(46px, 6.2vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-title img {
  width: clamp(164px, 19.5vw, 292px);
  filter: brightness(0);
  transform: translateY(0.23em);
}

.bio-list {
  display: grid;
  gap: 7px;
  margin-top: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bio-list p {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.bio-dim {
  color: var(--muted) !important;
  font-size: clamp(15px, 1.25vw, 17px) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.social-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  max-width: 100%;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: 13px;
  background: var(--paper-light);
  color: rgba(17, 17, 15, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  border-color: rgba(22, 22, 22, 0.42);
  background: #ffffff;
  color: var(--ink);
}

.social-row a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.social-row img {
  width: 18px;
  height: 18px;
}

.hero-media {
  position: relative;
  min-height: 605px;
  transform: translateY(-34px);
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: -6px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(22, 22, 22, 0.22), transparent 68%);
  z-index: 0;
}

.portrait-card {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: min(368px, 61%);
  border: 12px solid var(--paper-light);
  border-bottom-width: 52px;
  background: var(--paper-light);
  box-shadow: 0 20px 48px rgba(22, 22, 22, 0.18);
  transform: rotate(2.2deg);
  z-index: 1;
}

.portrait-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 118px;
  height: 34px;
  background: rgba(234, 234, 230, 0.72);
  border: 1px solid rgba(22, 22, 22, 0.06);
  box-shadow: 0 2px 6px rgba(22, 22, 22, 0.1);
  transform: translateX(-50%) rotate(-3deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 42% 20%;
}

.phone-card {
  position: absolute;
  left: 26px;
  bottom: 4px;
  z-index: 2;
  width: min(226px, 37%);
  aspect-ratio: 9 / 18.9;
  border: 10px solid #181818;
  border-radius: 42px;
  overflow: hidden;
  background: #181818;
  box-shadow: 0 22px 44px rgba(22, 22, 22, 0.26);
  transform: rotate(-4deg);
}

.phone-card-back {
  left: -48px;
  bottom: 70px;
  z-index: 1;
  width: min(198px, 33%);
  opacity: 0.92;
  transform: rotate(-12deg);
  box-shadow: 0 18px 34px rgba(22, 22, 22, 0.18);
}

.phone-card img,
.phone-card video {
  width: 118%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-7.6%);
}

.hero-media .phone-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #181818;
  transform: translateX(-50%);
}

.section {
  padding: clamp(34px, 4.4vw, 64px) 0;
}

.blush {
  width: 100%;
  max-width: none;
  padding: clamp(24px, 3vw, 42px) max(22px, calc((100vw - var(--max)) / 2));
  background: transparent;
}

.blush .section-row {
  grid-template-columns: minmax(260px, 380px) minmax(0, 680px);
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.blush .section-row h2 {
  line-height: 1.12;
}

.why-head {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.why-mark {
  height: clamp(96px, 11vw, 150px);
  width: auto;
  flex: none;
  transform: rotate(-7deg);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.check-list div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  align-items: start;
  padding: 10px 0;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(22, 22, 22, 0.28);
  border-radius: 50%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.check-list p {
  max-width: 620px;
  color: rgba(17, 17, 15, 0.72);
  font-size: 15px;
  line-height: 1.42;
}

.check-list strong {
  color: var(--ink);
}

.workflow {
  padding-top: clamp(18px, 2.2vw, 30px);
}

.workflow-head {
  display: grid;
  gap: 8px;
  max-width: var(--max);
  margin: 0 auto clamp(18px, 2.4vw, 28px);
}

.workflow-head h2 {
  max-width: 680px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 44px;
  max-width: var(--max);
  margin: 0 auto;
}

.workflow-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 84px;
  padding: 4px 0 0;
  background: transparent;
}

.workflow-card h3 {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

.workflow-card p {
  margin: 0;
  color: rgba(17, 17, 15, 0.68);
  max-width: 18ch;
  font-size: 12px;
  line-height: 1.22;
}

.section-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) 1fr;
  gap: clamp(26px, 4vw, 60px);
  align-items: start;
}

.section-row h2 {
  text-wrap: balance;
}

.side-note {
  margin-top: 12px;
  max-width: 300px;
  font-size: 16px;
}

.cover-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services .section-row {
  display: block;
  max-width: min(1160px, calc(100vw - 52px));
}

.services {
  padding-top: clamp(14px, 2vw, 28px);
}

.services h2 {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  text-align: left;
}

.cover-row article {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.cover-row img {
  width: 100%;
  aspect-ratio: 9 / 13.5;
  object-fit: cover;
}

.make-grid {
  align-items: stretch;
  gap: clamp(28px, 4.2vw, 56px);
}

.make-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 260ms ease, border-color 260ms ease;
}

.make-card:focus-visible {
  outline: 2px solid rgba(17, 17, 15, 0.72);
  outline-offset: 5px;
}

.make-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 15, 0.22);
}

.make-preview {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 9 / 12.8;
  background:
    linear-gradient(rgba(234, 234, 234, 0.9), rgba(234, 234, 234, 0.9)),
    url("./img/paper.webp") center / 900px auto repeat,
    var(--paper-deep);
  border: 1px solid rgba(17, 17, 15, 0.1);
}

.make-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 50%, rgba(17, 17, 15, 0.78) 100%);
}

.make-main {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 320ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.make-track {
  position: absolute;
  inset: 8px 8px 70px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 8px;
  width: auto;
  height: auto;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 320ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.make-track img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: var(--paper-deep);
  border-radius: 7px;
}

.make-track img:nth-child(n + 5) {
  display: none;
}

.make-card:hover .make-main {
  opacity: 0;
  transform: scale(1.04);
}

.make-card:hover .make-track {
  opacity: 1;
  transform: scale(1);
}

.make-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 0;
  color: #fff;
}

.make-copy h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(13px, 1.05vw, 15.5px);
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.make-copy p {
  max-width: 31ch;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11.5px;
  line-height: 1.22;
  font-weight: 650;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 260ms ease, max-height 260ms ease;
}

.make-card:hover .make-copy p {
  opacity: 1;
  max-height: 42px;
  transform: translateY(0);
}

.make-watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 13px;
  border-radius: 8px;
  border: 1.5px solid rgba(17, 17, 15, 0.5);
  background: var(--paper-light);
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.make-watch:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(255, 255, 255, 0.94);
}

.make-watch::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transform: translateX(1px);
}

.modal-open {
  overflow: hidden;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.work-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.72);
  backdrop-filter: blur(10px);
}

.work-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100svh - 44px));
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(rgba(234, 234, 234, 0.92), rgba(234, 234, 234, 0.92)),
    url("./img/paper.webp") center / 1100px auto repeat,
    var(--paper);
  border: 1px solid rgba(17, 17, 15, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  padding: clamp(18px, 2.4vw, 30px);
}

.work-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 1px solid rgba(17, 17, 15, 0.22);
  background: rgba(244, 244, 241, 0.82);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.work-modal__head {
  padding-right: 82px;
  margin-bottom: 18px;
}

.work-modal__eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-modal__head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.98;
}

.work-modal__body {
  display: grid;
  grid-template-columns: minmax(390px, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  min-height: 500px;
}

.work-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  overflow: visible;
  padding-right: 4px;
}

.work-video-card {
  appearance: none;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(244, 244, 241, 0.72);
  border-radius: 16px;
  padding: 6px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.work-video-card:hover,
.work-video-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 15, 0.42);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
}

.work-video-card[aria-disabled="true"] {
  opacity: 0.62;
}

.work-video-card img {
  width: 100%;
  aspect-ratio: 9 / 13.2;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 0;
}

.work-modal__viewer {
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  background: #11110f;
}

.work-modal__viewer p {
  max-width: 28ch;
  color: rgba(244, 241, 234, 0.7);
  text-align: center;
}

.work-modal__viewer iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  background: #11110f;
}

.compact-brands {
  padding-top: 30px;
}

.brand-panel {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(22, 22, 22, 0.2);
  background: rgba(244, 244, 241, 0.58);
  padding: clamp(18px, 3vw, 34px);
}

.brand-panel h2 {
  white-space: nowrap;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.brand-grid div {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 12px;
  background: var(--paper-light);
  padding: 12px;
}

.brand-grid img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.brand-grid .brand-puma img {
  height: 32px;
  max-width: 118px;
}

.testimonials .section-row {
  display: block;
  max-width: min(1160px, calc(100vw - 52px));
}

.testimonials h2 {
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  text-align: left;
  white-space: nowrap;
}

.quote-deck {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px 4px 16px;
}

.quote-card {
  position: relative;
  flex: 0 0 clamp(150px, 13vw, 190px);
  height: 250px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 15px 15px 13px;
  background: var(--paper-light);
  border: 1px solid rgba(17, 17, 15, 0.12);
  box-shadow: 0 14px 30px rgba(22, 22, 22, 0.09);
  --quote-rotate: 0deg;
  --quote-y: 0px;
  --quote-hover-rotate: -3deg;
  transform: rotate(var(--quote-rotate)) translateY(var(--quote-y));
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, filter 260ms ease, opacity 260ms ease, z-index 0ms linear;
  z-index: 1;
}

.quote-card + .quote-card {
  margin-left: clamp(-88px, -6vw, -66px);
}

.quote-card:nth-child(5n + 1) {
  --quote-rotate: -2.2deg;
  --quote-y: 6px;
  --quote-hover-rotate: -6deg;
}

.quote-card:nth-child(5n + 2) {
  --quote-rotate: 1.6deg;
  --quote-y: 16px;
  --quote-hover-rotate: 5deg;
}

.quote-card:nth-child(5n + 3) {
  --quote-rotate: -1.8deg;
  --quote-y: -6px;
  --quote-hover-rotate: -5deg;
}

.quote-card:nth-child(5n + 4) {
  --quote-rotate: 2deg;
  --quote-y: 12px;
  --quote-hover-rotate: 6deg;
}

.quote-card:nth-child(5n + 5) {
  --quote-rotate: -1.4deg;
  --quote-y: 2px;
  --quote-hover-rotate: -4deg;
}

.quote-deck:has(.quote-card:hover) .quote-card:not(:hover) {
  opacity: 0.66;
  filter: blur(1.2px) saturate(0.85);
  transform: rotate(var(--quote-rotate)) translateY(calc(var(--quote-y) + 10px)) scale(0.95);
  box-shadow: 0 8px 16px rgba(22, 22, 22, 0.06);
  z-index: 0;
}

.quote-deck .quote-card:hover {
  opacity: 1;
  filter: none;
  transform: rotate(var(--quote-hover-rotate)) translateY(-26px) scale(1.08);
  box-shadow: 0 28px 50px rgba(22, 22, 22, 0.22);
  z-index: 20;
}

.quote-card::before {
  content: "\201C";
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 0.6;
}

.quote-card blockquote {
  flex: 1;
  color: rgba(17, 17, 15, 0.78);
  font-size: 12.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quote-card figcaption {
  display: grid;
  gap: 1px;
  border-top: 1px solid rgba(17, 17, 15, 0.1);
  padding-top: 10px;
}

.quote-card strong {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 800;
}

.quote-card span {
  color: var(--muted);
  font-size: 11.5px;
}

.results-block {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.results-head {
  grid-template-columns: 1fr;
}

.results-head h2 {
  white-space: nowrap;
}

.results-grid {
  display: block;
}

.result-proof {
  display: block;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  background: rgba(250, 249, 244, 0.88);
  box-shadow: 0 20px 45px rgba(17, 17, 15, 0.12);
}

.result-proof img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.photo-story .section-row {
  display: block;
}

.photo-story .side-note {
  margin-top: 8px;
  max-width: 340px;
}

.photo-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-top: clamp(28px, 4vw, 46px);
  padding: 10px 0 18px;
}

.shot {
  position: relative;
  flex: 0 0 clamp(145px, 14.2vw, 208px);
  --shot-rotate: 0deg;
  --shot-y: 0px;
  --shot-hover-rotate: -5deg;
  background: var(--paper-light);
  border: 7px solid var(--paper-light);
  box-shadow: 0 12px 24px rgba(22, 22, 22, 0.08);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, filter 260ms ease, opacity 260ms ease, z-index 0ms linear;
  z-index: 1;
}

.shot img,
.shot .ph {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
}

.shot figcaption {
  padding: 9px 2px 3px;
  text-align: center;
  color: rgba(17, 17, 15, 0.56);
  font-size: 13.5px;
  font-weight: 700;
}

.shot + .shot {
  margin-left: clamp(-28px, -2.5vw, -14px);
}

.shot:nth-child(1) {
  --shot-rotate: -4.6deg;
  --shot-y: 8px;
  --shot-hover-rotate: -9deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
}

.shot:nth-child(2) {
  --shot-rotate: 3.4deg;
  --shot-y: 22px;
  --shot-hover-rotate: 8deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
}

.shot:nth-child(3) {
  --shot-rotate: -3.2deg;
  --shot-y: -12px;
  --shot-hover-rotate: -8deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
  z-index: 2;
}

.shot:nth-child(4) {
  --shot-rotate: 4deg;
  --shot-y: 12px;
  --shot-hover-rotate: 9deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
}

.shot:nth-child(5) {
  --shot-rotate: -3.6deg;
  --shot-y: 4px;
  --shot-hover-rotate: -9deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
}

.shot:nth-child(6) {
  --shot-rotate: 4.4deg;
  --shot-y: 15px;
  --shot-hover-rotate: 9deg;
  transform: rotate(var(--shot-rotate)) translateY(var(--shot-y));
}

.photo-grid:has(.shot:hover) .shot:not(:hover) {
  opacity: 0.68;
  filter: blur(1.3px) saturate(0.85);
  transform: rotate(var(--shot-rotate)) translateY(calc(var(--shot-y) + 12px)) scale(0.94);
  box-shadow: 0 8px 18px rgba(22, 22, 22, 0.06);
  z-index: 0;
}

.photo-grid .shot:hover {
  opacity: 1;
  filter: none;
  transform: rotate(var(--shot-hover-rotate)) translateY(-42px) scale(1.22);
  box-shadow: 0 34px 60px rgba(22, 22, 22, 0.24);
  z-index: 20;
}

.shot .ph {
  display: grid;
  place-items: center;
  border: 2px dashed rgba(17, 17, 15, 0.22);
  background: rgba(234, 234, 230, 0.55);
  color: rgba(17, 17, 15, 0.38);
  font-size: 13px;
  font-weight: 700;
}

.shot.empty figcaption {
  color: rgba(17, 17, 15, 0.34);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: rgba(17, 17, 15, 0.56);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-inner,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 78px;
  }

  .hero-media {
    min-height: 590px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

}

@media (max-width: 680px) {
  .hero-inner,
  .section,
  footer {
    width: min(100% - 34px, var(--max));
  }

  .hero-inner {
    width: min(100% - 22px, var(--max));
  }

  .hero {
    min-height: auto;
    padding: 18px 0 54px;
    align-items: flex-start;
  }

  .hero-scroll-cue {
    bottom: 14px;
    height: 34px;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-copy {
    transform: none;
  }

  .hero-title {
    justify-content: center;
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1;
    text-align: center;
  }

  .hero-title img {
    width: clamp(122px, 35vw, 148px);
  }

  .bio-list {
    max-width: 350px;
    margin-inline: auto;
    margin-top: 18px;
    text-align: center;
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.36;
    gap: 5px;
  }

  .bio-dim {
    font-size: 13.5px;
  }

  .social-stack {
    width: 100%;
    max-width: 342px;
    margin-inline: auto;
    margin-top: 20px;
    gap: 10px;
  }

  .social-row-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: stretch;
    gap: 10px;
  }

  .social-row-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
    gap: 10px;
  }

  .social-row a {
    min-height: 40px;
    min-width: 0;
    padding-inline: 9px;
    justify-content: center;
    overflow: hidden;
    font-size: 12.5px;
    border-radius: 11px;
  }

  .social-row img {
    width: 16px;
    height: 16px;
  }

  .hero-media {
    min-height: 330px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-card {
    width: min(38vw, 142px);
    left: 8px;
    bottom: 8px;
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-card img,
  .phone-card video {
    width: 132%;
    transform: translateX(-12.2%);
  }

  .phone-card-back {
    left: -18px;
    bottom: 54px;
    width: min(34vw, 126px);
  }

  .portrait-card {
    right: 2px;
    bottom: 22px;
    width: min(58vw, 218px);
    border-width: 8px;
    border-bottom-width: 34px;
    border-radius: 2px;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.04;
    text-align: center;
  }

  p {
    font-size: 15px;
    line-height: 1.5;
  }

  section,
  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .blush {
    padding: 34px 11px;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-head {
    justify-content: center;
    text-align: center;
  }

  .why-mark {
    display: none;
  }

  .check-list div {
    gap: 10px;
    align-items: flex-start;
  }

  .check-list p {
    font-size: 14px;
  }

  .workflow-head {
    text-align: left;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workflow-card {
    min-height: auto;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.26);
    border: 1px solid rgba(17, 17, 15, 0.1);
    border-radius: 12px;
  }

  .workflow-card:not(:last-child)::after {
    display: none;
  }

  .workflow-card p {
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .services-head,
  .compact-brands .section-row,
  .results-head,
  .testimonials .section-row {
    text-align: center;
  }

  .services .section-row,
  .testimonials .section-row {
    max-width: 100%;
  }

  .services h2,
  .testimonials h2 {
    text-align: center;
    white-space: normal;
  }

  .make-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 342px);
    max-width: 100%;
    margin-inline: auto;
  }

  .cover-row.make-grid {
    width: min(100%, 342px);
    max-width: 100%;
    margin-inline: auto;
  }

  .make-card {
    padding: 7px;
  }

  .make-card:hover {
    transform: none;
  }

  .make-preview {
    aspect-ratio: 4 / 4.25;
  }

  .make-main {
    opacity: 0.28;
  }

  .make-track {
    opacity: 1;
    transform: scale(1);
    inset: 8px 8px 62px;
    gap: 7px;
  }

  .make-card:hover .make-main {
    opacity: 0.34;
    transform: none;
  }

  .make-card:hover .make-track {
    transform: scale(1);
  }

  .make-copy {
    left: 14px;
    right: 14px;
    bottom: 24px;
  }

  .make-copy h3 {
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
  }

  .make-copy p {
    display: none;
  }

  .make-watch {
    margin-top: 10px;
    padding: 7px 11px;
    font-size: 11.5px;
  }

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

  .brand-panel {
    border-radius: 14px;
    padding: 16px;
  }

  .cover-row {
    grid-template-columns: 1fr;
  }

  .quote-deck {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 0;
    gap: 14px;
  }

  .quote-card {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    --quote-rotate: 0deg;
    --quote-y: 0px;
    transform: none !important;
  }

  .quote-card blockquote {
    -webkit-line-clamp: 4;
  }

  .quote-card + .quote-card {
    margin-left: 0;
  }

  .results-block {
    width: 100%;
    margin-inline: 0;
  }

  .result-proof {
    padding: 5px;
    overflow: hidden;
  }

  .photo-grid {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 20px;
  }

  .shot {
    flex-basis: min(70vw, 232px);
    scroll-snap-align: center;
    --shot-rotate: 0deg;
    --shot-y: 0px;
    transform: rotate(var(--shot-rotate)) translateY(var(--shot-y)) !important;
  }

  .shot + .shot {
    margin-left: -18px;
  }

  .shot:hover {
    transform: rotate(-3deg) translateY(-14px) scale(1.06) !important;
  }

  .photo-grid:has(.shot:hover) .shot:not(:hover) {
    opacity: 0.72;
    filter: blur(1px) saturate(0.88);
    transform: translateY(8px) scale(0.94) !important;
  }

  .photo-grid:has(.shot:hover) .shot:hover {
    opacity: 1;
    filter: none;
    transform: rotate(-3deg) translateY(-14px) scale(1.06) !important;
  }

  .work-modal {
    padding: 0;
    align-items: end;
  }

  .work-modal__panel {
    width: 100%;
    max-height: 94svh;
    border-radius: 18px 18px 0 0;
    padding: 16px 11px 11px;
  }

  .work-modal__close {
    top: 14px;
    right: 12px;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 12px;
  }

  .work-modal__head {
    padding-right: 70px;
    margin-bottom: 10px;
  }

  .work-modal__eyebrow {
    display: none;
  }

  .work-modal__head h2 {
    font-size: 25px;
    line-height: 1;
    text-align: center;
  }

  .work-modal__body {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: calc(94svh - 72px);
    overflow: auto;
    gap: 10px;
  }

  .work-modal__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0;
  }

  .work-video-card {
    padding: 4px;
    border-radius: 10px;
  }

  .work-video-card:hover,
  .work-video-card:focus-visible {
    transform: none;
  }

  .work-video-card img {
    aspect-ratio: 9 / 13;
    border-radius: 7px;
  }

  .work-modal__viewer {
    min-height: min(58svh, 510px);
    border-radius: 12px;
  }

  .work-modal__viewer iframe {
    min-height: min(58svh, 510px);
  }

  footer {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section,
  footer {
    width: min(100% - 32px, var(--max));
  }

  .hero-inner {
    width: min(100% - 18px, var(--max));
  }

  .hero-title {
    gap: 8px;
  }

  .hero-title img {
    width: clamp(112px, 34vw, 136px);
    transform: translateY(2px);
  }

  .bio-list {
    max-width: 318px;
    font-size: 16px;
  }

  .social-stack {
    max-width: 315px;
    gap: 8px;
  }

  .social-row-primary,
  .social-row-secondary {
    gap: 8px;
  }

  .social-row a {
    min-height: 38px;
    font-size: 12px;
  }

  .hero-media {
    min-height: 292px;
    max-width: 330px;
  }

  .phone-card {
    width: min(36vw, 126px);
    left: 12px;
  }

  .phone-card-back {
    left: -12px;
    bottom: 48px;
    width: min(32vw, 112px);
  }

  .phone-notch {
    top: 8px;
    width: 50px;
    height: 13px;
  }

  .portrait-card {
    width: min(56vw, 196px);
    right: 8px;
    bottom: 18px;
    border-bottom-width: 30px;
  }

  .hero-media::after {
    left: 7%;
    right: 6%;
    bottom: 0;
    height: 24px;
  }

  .section-row,
  .services-head {
    align-items: start;
  }

  .brand-grid {
    gap: 8px;
  }

  .brand-grid div {
    min-height: 54px;
    padding: 10px;
  }

  .results-block {
    padding-inline: 0;
  }

  .result-proof {
    border-radius: 12px;
  }

  .photo-story {
    padding-bottom: 42px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 29px;
  }

  .social-stack {
    max-width: 250px;
  }

  .social-row-primary,
  .social-row-secondary {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 268px;
  }

  .phone-card {
    width: 122px;
    left: 4px;
  }

  .phone-card-back {
    left: -10px;
    bottom: 44px;
    width: 108px;
  }

  .portrait-card {
    width: 178px;
    right: 0;
  }

  .make-copy h3 {
    font-size: 18px;
  }

  .make-copy p {
    font-size: 12px;
  }

  .work-modal__viewer {
    min-height: 440px;
  }

  .work-modal__viewer iframe {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .make-card:hover .make-track {
    animation: none !important;
  }
}
