:root {
  --ink: #0c0c0b;
  --charcoal: #171615;
  --paper: #f6f1e8;
  --paper-2: #fffaf0;
  --muted: #6f6860;
  --line: rgba(12, 12, 11, 0.15);
  --red: #df7049;
  --red-dark: #8f4932;
  --mint: #85dfb8;
  --yellow: #f2c553;
  --amber: #f3a85e;
  --steel: #d8ded8;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

body.is-loaded .hero h1,
body.is-loaded .hero-copy,
body.is-loaded .hero-actions,
body.is-loaded .signal-panel {
  animation: rise-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-loaded .hero-copy {
  animation-delay: 90ms;
}

body.is-loaded .hero-actions {
  animation-delay: 160ms;
}

body.is-loaded .signal-panel {
  animation-delay: 220ms;
}

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

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  isolation: isolate;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 44px);
  color: var(--white);
  transform: translateZ(0);
  transition: color 160ms ease;
  will-change: color;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
  transition: opacity 160ms ease;
  will-change: opacity;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
}

.site-header.is-scrolled::before,
.site-header.is-open::before {
  opacity: 1;
}

.brand {
  display: grid;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand span {
  font-size: 1.62rem;
}

.brand small {
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -50%) translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, -50%) translateY(4px);
}

.hero {
  position: relative;
  min-height: min(82svh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.04) 56%);
}

.hero-media,
.hero-motion,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/bam-hero-poster.jpg?v=fast") center / cover;
}

.hero-motion {
  display: block;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
  transform: scale(1.035) translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
  transition: transform 220ms ease-out;
}

.hero-media video {
  opacity: 0;
  transition: opacity 420ms ease, transform 220ms ease-out;
}

.hero-media video.is-ready {
  opacity: 1;
}

@media (min-width: 621px) {
  .hero-motion {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 104px clamp(18px, 4vw, 44px) 38px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.52;
}

.hero .eyebrow::before,
.loop .eyebrow::before,
.contact .eyebrow::before,
.proof .section-kicker::before,
.clients .section-kicker::before {
  background: var(--mint);
  opacity: 1;
}

.hero h1,
.thesis h2,
.loop h2,
.content-proof h2,
.section-head h2,
.proof h2,
.clients h2,
.contact h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 0.9;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.8rem, 8.5vw, 7.35rem);
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #f08a5d);
  box-shadow: 0 12px 34px rgba(223, 112, 73, 0.28);
}

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

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

.signal-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  width: min(318px, 28vw);
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.signal-panel:hover {
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-5px);
}

.signal-panel > p {
  margin: 0;
  padding: 15px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-panel div {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  background: rgba(6, 6, 6, 0.52);
}

.signal-panel strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 0.86;
}

.signal-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 10px;
  color: var(--ink);
  background: linear-gradient(90deg, #edb94f, var(--yellow) 42%, #f0d26d);
  border-bottom: 1px solid rgba(12, 12, 11, 0.18);
  box-shadow: 0 16px 42px rgba(12, 12, 11, 0.12);
}

.ticker::before,
.ticker::after {
  display: none;
}

.ticker-track {
  width: min(100%, var(--max));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.ticker span {
  flex: 0 0 auto;
  border: 1px solid rgba(12, 12, 11, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

[data-reveal] {
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

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

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) clamp(18px, 4vw, 44px);
}

.thesis,
.services {
  position: relative;
  isolation: isolate;
}

.thesis::before,
.services::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  pointer-events: none;
}

.thesis::before {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 54%, #efe5d3 100%);
  border-bottom: 1px solid rgba(12, 12, 11, 0.12);
}

.services::before {
  background:
    linear-gradient(180deg, #fff8ea 0%, var(--paper) 56%, #eadfc9 100%);
  border-top: 1px solid rgba(12, 12, 11, 0.1);
  border-bottom: 1px solid rgba(12, 12, 11, 0.1);
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: stretch;
}

.thesis h2,
.content-proof h2,
.section-head h2,
.proof h2,
.clients h2,
.contact h2 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.thesis h2 {
  line-height: 1.08;
}

.thesis-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.52;
}

.thesis-copy {
  min-height: clamp(300px, 27vw, 390px);
  display: grid;
  align-content: space-between;
  gap: 30px;
  border: 1px solid rgba(12, 12, 11, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(133, 223, 184, 0.16), rgba(223, 112, 73, 0.08) 46%, rgba(255, 255, 255, 0.03)),
    var(--ink);
  box-shadow: 0 24px 70px rgba(12, 12, 11, 0.18);
}

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

.mini-metrics span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 14px 12px 13px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Archivo", sans-serif;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mini-metrics span:last-child {
  grid-column: 1 / -1;
  min-height: 66px;
}

.mini-metrics span:hover {
  color: var(--white);
  background: rgba(223, 112, 73, 0.72);
  transform: translateY(-4px);
}

.loop {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.54fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(62px, 9vw, 110px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.11), rgba(246, 241, 232, 0) 16%),
    linear-gradient(180deg, #26160f 0%, #14120f 44%, #0b0c0a 100%);
}

.loop::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 197, 83, 0.08), rgba(242, 197, 83, 0) 34%),
    linear-gradient(270deg, rgba(133, 223, 184, 0.055), rgba(133, 223, 184, 0) 42%);
}

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

.loop-copy h2 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.loop-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.phone-wall {
  position: relative;
  min-height: 470px;
  overflow: visible;
}

.phone-card,
.order-ticket {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  transition: filter 220ms ease, transform 220ms ease;
}

.phone-card {
  width: 190px;
  min-height: 330px;
  padding: 16px;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.8)),
    var(--loop-image);
  background-position: center, var(--loop-position, center);
  background-repeat: no-repeat;
  background-size: cover, cover;
  filter: saturate(1.08) contrast(1.04);
}

.phone-card::after {
  content: "";
  position: absolute;
  inset: 52% 12px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.62);
}

.phone-bar {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 4px;
  margin: 0 auto 190px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.phone-card span,
.phone-card strong,
.phone-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.phone-card span,
.order-ticket small {
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  margin-top: 8px;
  font-family: "Archivo", sans-serif;
  font-size: 2.3rem;
  line-height: 0.9;
}

.phone-card small,
.order-ticket span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.card-one {
  --loop-image: url("assets/loop-launch-clip.webp");
  --loop-position: 50% 42%;
  top: 0;
  left: 0;
  transform: translate3d(var(--card-one-x, 0), var(--card-one-y, 0), 0) rotate(-5deg);
  animation: float-one 4.6s ease-in-out infinite;
}

.card-two {
  --loop-image: url("assets/loop-creator-ad.webp");
  --loop-position: 48% 42%;
  right: 10px;
  bottom: 42px;
  transform: translate3d(var(--card-two-x, 0), var(--card-two-y, 0), 0) rotate(5deg);
  animation: float-two 5.4s ease-in-out infinite;
}

.order-ticket {
  right: 0;
  top: 90px;
  width: 214px;
  padding: 18px;
  color: var(--ink);
  background: var(--yellow);
  transform: translate3d(var(--ticket-x, 0), var(--ticket-y, 0), 0);
  animation: ticket-pulse 4.9s ease-in-out infinite;
}

.order-ticket strong {
  display: block;
  margin-top: 8px;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}

.order-ticket span {
  color: rgba(12, 12, 11, 0.72);
}

.loop-steps {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.loop-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: border-color 180ms ease, transform 180ms ease;
}

.loop-steps article.is-active,
.loop-steps article:hover {
  border-color: rgba(133, 223, 184, 0.8);
  transform: translateX(8px);
}

.loop-steps span,
.service-grid span {
  color: var(--mint);
  font-weight: 900;
}

.loop-steps h3,
.service-grid h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
}

.loop-steps h3,
.loop-steps p {
  grid-column: 2;
}

.loop-steps p,
.service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.content-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 70px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(12, 12, 11, 0.08), rgba(12, 12, 11, 0) 18%),
    linear-gradient(180deg, var(--paper-2) 0%, #f5ecd8 100%);
  border-bottom: 1px solid var(--line);
}

.content-proof-copy {
  max-width: 470px;
}

.content-proof h2 {
  font-size: clamp(2.9rem, 5.8vw, 5.6rem);
}

.content-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  margin-top: -6px;
  padding-top: 6px;
  padding-bottom: 8px;
  scroll-padding-left: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.content-rail::-webkit-scrollbar {
  display: none;
}

.rail-progress {
  display: none;
}

.rail-progress[hidden] {
  display: none !important;
}

@media (pointer: fine) {
  .is-scrollable {
    cursor: grab;
  }

  .is-scrollable.is-dragging {
    cursor: grabbing;
    user-select: none;
  }
}

.content-card {
  position: relative;
  flex: 0 0 clamp(208px, 18vw, 270px);
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(12, 12, 11, 0.13);
  outline-offset: -5px;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.content-card > img,
.reel-media {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  border-radius: 6px;
  background: var(--paper);
}

.content-card > img {
  object-fit: cover;
}

.content-card:not(.is-reel) > img {
  object-fit: contain;
  padding: 8px;
}

.reel-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  margin: 0;
}

.reel-media img,
.reel-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 420ms ease;
}

.reel-media video {
  opacity: 0;
  background: var(--ink);
}

.content-card.is-previewing .reel-preview {
  opacity: 1;
}

.content-card.is-previewing .reel-poster {
  opacity: 0;
}

.content-card.is-previewing .reel-preview,
.content-card:hover .reel-poster,
.content-card:focus-visible .reel-poster {
  transform: scale(1.02);
}

.content-card.is-reel::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(12, 12, 11, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: background 200ms ease, transform 200ms ease;
}

.content-card.is-reel::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 37px;
  right: 39px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transition: opacity 200ms ease, transform 200ms ease;
}

.content-card.is-previewing::after {
  background: rgba(12, 12, 11, 0.54);
  transform: scale(0.92);
}

.content-card.is-previewing::before {
  opacity: 0.9;
  transform: scale(0.92);
}

.content-card > span:not(.reel-media),
.content-card strong,
.content-card small {
  min-width: 0;
  margin-right: 8px;
  margin-left: 8px;
}

.content-card > span:not(.reel-media),
.content-card small {
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.content-card > span:not(.reel-media) {
  color: var(--mint);
}

.content-card strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.content-card small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.content-card.is-reel strong {
  font-size: clamp(1.14rem, 1.35vw, 1.36rem);
}

.content-card:hover,
.content-card:focus-visible {
  color: var(--ink);
  border-color: rgba(12, 12, 11, 0.32);
  background: var(--yellow);
  transform: translateY(-6px);
}

.content-card:hover > span:not(.reel-media),
.content-card:focus-visible > span:not(.reel-media) {
  color: var(--red-dark);
}

.content-card:hover small,
.content-card:focus-visible small {
  color: rgba(12, 12, 11, 0.68);
}

.services {
  display: grid;
  gap: 34px;
}

.section-head {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 24px 74px rgba(12, 12, 11, 0.08);
}

.service-grid article {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(246, 241, 232, 0.68));
  cursor: pointer;
  outline: none;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--amber);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-grid article:hover,
.service-grid article:focus-visible,
.service-grid article.is-active {
  color: var(--white);
  border-color: rgba(12, 12, 11, 0.36);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.05), rgba(246, 241, 232, 0)),
    #15120f;
  transform: translateY(-7px);
}

.service-grid article:hover::before,
.service-grid article:focus-visible::before,
.service-grid article.is-active::before {
  transform: scaleX(1);
}

.service-grid article:hover::after,
.service-grid article:focus-visible::after,
.service-grid article.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.service-grid p {
  color: var(--muted);
  transition: color 200ms ease;
}

.service-grid article:hover p,
.service-grid article:focus-visible p,
.service-grid article.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.proof {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 9vw, 110px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.1), rgba(246, 241, 232, 0) 18%),
    linear-gradient(180deg, #2a1810 0%, #15100d 54%, #090908 100%);
}

.proof::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(223, 112, 73, 0.13), rgba(223, 112, 73, 0) 36%),
    linear-gradient(180deg, rgba(242, 197, 83, 0.08), rgba(242, 197, 83, 0) 32%);
}

.proof-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  color: var(--white);
}

.proof h2 {
  max-width: 930px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22);
}

.metrics article {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 180ms ease, transform 180ms ease;
}

.metrics article:nth-child(2) {
  background: rgba(223, 112, 73, 0.12);
}

.metrics article:hover {
  background: rgba(223, 112, 73, 0.22);
  transform: translateY(-6px);
}

.metrics strong {
  color: var(--yellow);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.95rem, 6.8vw, 5.45rem);
  line-height: 0.86;
}

.metrics span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  line-height: 1.35;
}

.clients {
  overflow: hidden;
  padding: clamp(62px, 9vw, 112px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(180deg, #0c0c0b 0%, #0e130f 52%, #090b09 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-inner {
  width: min(100%, var(--max));
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  margin: 0 auto;
}

.clients-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(220px, 0.32fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: end;
}

.clients-note {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  margin: 0;
  padding: 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.clients h2 {
  max-width: 840px;
}

.client-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.2);
}

.client-link {
  position: relative;
  min-height: 204px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  background: #0f100e;
  outline-offset: -5px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.client-link.is-featured {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(223, 112, 73, 0.15), rgba(223, 112, 73, 0.04) 52%, rgba(255, 255, 255, 0.03)),
    #11100e;
}

.client-link::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.38;
  transform: rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.client-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-logo {
  width: clamp(74px, 12vw, 112px);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 12, 11, 0.12);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-category,
.client-link small {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.client-category {
  color: var(--mint);
  text-align: right;
}

.client-link strong {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.88;
  overflow-wrap: break-word;
}

.client-link:not(.is-featured) strong {
  font-size: clamp(1.75rem, 3vw, 3.1rem);
}

.client-link small {
  width: max-content;
  max-width: calc(100% - 34px);
  color: rgba(255, 255, 255, 0.66);
}

.client-link:hover,
.client-link:focus-visible {
  color: var(--ink);
  background: var(--paper-2);
  transform: translateY(-6px);
}

.client-link:hover::after,
.client-link:focus-visible::after {
  opacity: 1;
  transform: translate(5px, -5px) rotate(45deg);
}

.client-link:hover .client-category,
.client-link:focus-visible .client-category {
  color: var(--red-dark);
}

.client-link:hover .client-logo,
.client-link:focus-visible .client-logo {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.client-link:hover small,
.client-link:focus-visible small {
  color: var(--muted);
}

.contact {
  min-height: clamp(420px, 62svh, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(28px, 6vw, 78px);
  align-content: center;
  align-items: center;
  padding: clamp(62px, 9vw, 110px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(180deg, #0e130f 0%, #0b0c0a 56%, #070706 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@supports (min-height: 100dvh) {
  .contact {
    min-height: clamp(420px, 62dvh, 620px);
  }
}

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

.contact-copy {
  max-width: 1040px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.contact-panel > span {
  padding: 2px 4px 0;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-button {
  position: relative;
  min-height: 156px;
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.28), rgba(255, 250, 240, 0) 48%),
    linear-gradient(135deg, var(--amber), #f08a5d);
  box-shadow: 0 18px 44px rgba(223, 112, 73, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-button small {
  max-width: 100%;
  color: rgba(12, 12, 11, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-button strong {
  width: min-content;
  max-width: 100%;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.9rem, 2.45vw, 2.45rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-button:hover,
.contact-button:focus-visible {
  filter: saturate(1.05);
  box-shadow: 0 26px 60px rgba(223, 112, 73, 0.42);
  transform: translateY(-5px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 13px 8px 9px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(133, 223, 184, 0.7);
  background: rgba(133, 223, 184, 0.1);
  transform: translateY(-2px);
}

.social-links span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.social-links strong {
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-social {
  padding: 2px 4px 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(260px, 1.4fr) minmax(230px, auto);
  gap: 20px;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.82);
  background: #080908;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--mint);
}

.footer-social {
  justify-content: flex-end;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1120px) {
  .loop {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  }

  .mini-metrics span {
    min-height: 82px;
    padding: 14px 10px 12px;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .mini-metrics span:last-child {
    min-height: 64px;
  }

  .phone-wall {
    order: 3;
    grid-column: 1 / -1;
    min-height: 360px;
    overflow: visible;
  }

  .card-two {
    right: 22%;
  }

  .order-ticket {
    right: 14%;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    color: var(--ink);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .signal-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 clamp(18px, 4vw, 44px) 30px;
  }

  .thesis-grid,
  .content-proof,
  .loop,
  .contact {
    grid-template-columns: 1fr;
  }

  .clients-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .clients-note {
    width: max-content;
    max-width: 100%;
  }

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

  .phone-wall {
    order: initial;
    grid-column: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
    color: var(--white);
    transition: none;
    will-change: auto;
  }

  .site-header::before {
    opacity: 0;
    background: rgba(246, 241, 232, 0.96);
    backdrop-filter: none;
    transition: none;
    will-change: auto;
  }

  body.nav-open .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    color: var(--ink);
  }

  body.nav-open .site-header::before,
  .site-header.is-scrolled::before,
  .site-header.is-open::before {
    opacity: 1;
  }

  .hero {
    min-height: 100svh;
  }

  @supports (min-height: 100dvh) {
    .hero {
      min-height: 100dvh;
    }
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0.88) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-media img,
  .hero-media video {
    object-position: 58% center;
    transform: none;
  }

  .hero-content {
    padding: max(84px, calc(env(safe-area-inset-top) + 76px)) 18px 18px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(3rem, 14.4vw, 4.2rem);
  }

  .hero-copy {
    max-width: 350px;
    margin-top: 16px;
    font-size: 1rem;
  }

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

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

  .button {
    min-height: 46px;
  }

  .signal-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 18px max(14px, env(safe-area-inset-bottom));
  }

  .signal-panel > p {
    grid-column: 1 / -1;
    padding: 12px 14px;
  }

  .signal-panel div {
    display: block;
    min-width: 0;
    padding: 12px 10px;
  }

  .signal-panel strong {
    font-size: 1.58rem;
  }

  .signal-panel span {
    display: block;
    margin-top: 6px;
    font-size: 0.67rem;
    line-height: 1.12;
  }

  .ticker {
    padding: 8px;
  }

  .ticker span {
    flex: 1 1 auto;
    text-align: center;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .thesis h2,
  .content-proof h2,
  .section-head h2,
  .proof h2,
  .clients h2,
  .contact h2 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .thesis h2 {
    font-size: 3.05rem;
    line-height: 1.06;
  }

  .loop,
  .content-proof,
  .proof,
  .clients,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content-proof {
    gap: 24px;
    align-items: start;
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .content-proof-copy {
    max-width: 100%;
  }

  .content-proof h2 {
    max-width: 350px;
    font-size: clamp(2.7rem, 11.8vw, 3.45rem);
    line-height: 0.92;
  }

  .loop {
    gap: 24px;
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .loop-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .phone-wall {
    min-height: 390px;
    overflow: visible;
  }

  .phone-card {
    width: 166px;
    min-height: 292px;
  }

  .phone-bar {
    margin-bottom: 156px;
  }

  .card-one {
    left: 4px;
  }

  .card-two {
    right: 2px;
    bottom: 24px;
  }

  .order-ticket {
    right: 32px;
    top: 72px;
    width: 188px;
  }

  .loop-steps,
  .content-rail,
  .service-grid,
  .metrics,
  .client-links {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-left: 18px;
    scroll-behavior: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  @media (hover: hover) and (pointer: fine) {
    .is-scrollable.has-scroll-next {
      mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 48px), transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 48px), transparent 100%);
    }

    .is-scrollable.has-scroll-prev {
      mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 100%);
    }

    .is-scrollable.has-scroll-prev.has-scroll-next {
      mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 48px), transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 48px), transparent 100%);
    }
  }

  .rail-progress {
    width: min(148px, 44vw);
    height: 3px;
    display: block;
    overflow: hidden;
    border-radius: 999px;
    margin-top: 10px;
    background: rgba(12, 12, 11, 0.16);
  }

  .rail-progress span {
    width: var(--rail-progress-width, 36px);
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--amber);
    transform: translateX(var(--rail-progress-left, 0));
    transition: transform 120ms ease-out, width 120ms ease-out;
  }

  .loop .rail-progress,
  .proof .rail-progress {
    background: rgba(255, 255, 255, 0.18);
  }

  .loop .rail-progress span,
  .proof .rail-progress span {
    background: var(--mint);
  }

  .loop .rail-progress,
  .content-proof .rail-progress {
    margin-top: -14px;
  }

  .services .rail-progress {
    margin-top: -24px;
  }

  .loop-steps::-webkit-scrollbar,
  .content-rail::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar,
  .metrics::-webkit-scrollbar,
  .client-links::-webkit-scrollbar {
    display: none;
  }

  .loop-steps {
    margin-right: -18px;
    padding-right: 18px;
    border-top: 0;
  }

  .loop-steps article {
    flex: 0 0 min(80vw, 316px);
    min-height: 236px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .loop-steps h3,
  .loop-steps p {
    grid-column: 1;
  }

  .loop-steps article.is-active,
  .loop-steps article:hover {
    transform: translateY(-4px);
  }

  .proof {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .content-rail {
    margin-right: -18px;
    padding-right: 18px;
  }

  .content-card {
    flex: 0 0 min(66vw, 242px);
    min-height: 0;
    gap: 8px;
    padding: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .content-card.is-reel strong,
  .content-card strong {
    font-size: clamp(1rem, 4.6vw, 1.22rem);
  }

  .content-card > span:not(.reel-media),
  .content-card strong,
  .content-card small {
    margin-right: 6px;
    margin-left: 6px;
  }

  .content-card small {
    margin-bottom: 6px;
  }

  .content-card.is-reel::after {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
  }

  .content-card.is-reel::before {
    top: 29px;
    right: 31px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .service-grid {
    border: 0;
    padding-bottom: 6px;
  }

  .service-grid article {
    flex: 0 0 min(82vw, 320px);
    min-height: 224px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .metrics {
    margin-right: -18px;
    padding-right: 18px;
    background: transparent;
  }

  .metrics article {
    flex: 0 0 min(82vw, 320px);
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .client-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
    border: 0;
    background: transparent;
    scroll-snap-type: none;
  }

  .client-link,
  .client-link.is-featured {
    flex: initial;
    grid-column: auto;
    min-height: 164px;
    gap: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    scroll-snap-align: none;
  }

  .client-link.is-featured {
    grid-column: 1 / -1;
    min-height: 190px;
    padding: 18px;
  }

  .client-top {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .client-link.is-featured .client-top {
    display: flex;
    align-items: center;
  }

  .client-logo {
    width: 68px;
    height: 44px;
    padding: 7px;
  }

  .client-link.is-featured .client-logo {
    width: 78px;
    height: 48px;
  }

  .client-category {
    max-width: 100%;
    text-align: left;
  }

  .client-link strong,
  .client-link:not(.is-featured) strong {
    max-width: 100%;
    font-size: clamp(1.24rem, 5.7vw, 1.55rem);
    line-height: 0.96;
    overflow-wrap: normal;
    word-break: normal;
  }

  .client-link.is-featured strong {
    max-width: 92%;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.92;
  }

  .clients {
    padding-bottom: 42px;
  }

  .thesis-copy {
    min-height: auto;
    gap: 22px;
    padding: 20px;
  }

  .mini-metrics span {
    min-height: 78px;
    padding: 14px 10px 12px;
    font-size: 0.86rem;
    line-height: 1.2;
  }

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

  .mini-metrics span:last-child {
    grid-column: 1 / -1;
    min-height: 62px;
  }

  .contact {
    min-height: auto;
    align-items: start;
    padding-top: 36px;
    padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 42px));
  }

  .contact h2 {
    font-size: clamp(2.55rem, 11.2vw, 3.7rem);
  }

  .contact-panel {
    width: 100%;
    margin-top: 4px;
    padding: 12px;
  }

  .contact-button {
    min-height: 132px;
    padding: 20px;
  }

  .contact-button strong {
    font-size: clamp(1.72rem, 8.2vw, 2rem);
  }

  .contact-social,
  .footer-social {
    width: 100%;
  }

  .contact-social a,
  .footer-social a {
    flex: 1 1 132px;
    justify-content: center;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: max(22px, calc(env(safe-area-inset-bottom) + 18px));
  }

  .footer-nav {
    gap: 10px 14px;
  }

}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-one {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes float-two {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 12px;
  }
}

@keyframes ticket-pulse {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.025;
  }
}

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

  .hero-media img,
  .hero-media video {
    transform: none;
  }
}
