@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17192f;
  --ink-soft: #292b42;
  --violet: #332c84;
  --blue: #147dc0;
  --green: #35b99a;
  --yellow: #f8b400;
  --red: #ef4423;
  --paper: #fbfaf7;
  --paper-deep: #f2f0ea;
  --muted: #646879;
  --line: rgba(23, 25, 47, .14);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(160px, 216px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, .82);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-elevated {
  min-height: 76px;
  border-color: var(--line);
  background: rgba(251, 250, 247, .96);
  box-shadow: 0 14px 42px rgba(23, 25, 47, .08);
}

.print-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--green) 25% 50%, var(--yellow) 50% 75%, var(--red) 75%);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}

.brand img {
  width: 216px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(23, 25, 47, .72);
  font-size: 14px;
  font-weight: 820;
}

.main-nav a,
.header-action {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after,
.header-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.header-action:hover::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(51, 44, 132, .24);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(255, 255, 255, .68);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82vw, 340px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 84px 24px 28px;
  overflow-y: auto;
  visibility: hidden;
  background: #fff;
  box-shadow: -22px 0 70px rgba(23, 25, 47, .22);
  transform: translateX(100%);
  transition: transform .32s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
}

.mobile-menu a:hover {
  background: var(--paper-deep);
}

.mobile-menu .button {
  margin-top: 10px;
}

.mobile-menu-call {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--violet);
  font-weight: 900;
}

.mobile-menu-backdrop {
  position: fixed;
  z-index: 45;
  inset: 0;
  opacity: 0;
  background: rgba(23, 25, 47, .46);
  transition: opacity .3s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 60;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

body.menu-open .site-header .brand {
  opacity: 0;
}

body.menu-open .nav-toggle {
  z-index: 61;
  background: #fff;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  max-height: 930px;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .34fr);
  align-items: end;
  gap: 48px;
  padding: 142px clamp(28px, 5vw, 76px) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02) translate3d(0, var(--hero-shift, 0), 0);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, .99) 0%, rgba(251, 250, 247, .93) 30%, rgba(251, 250, 247, .64) 54%, rgba(251, 250, 247, .06) 100%),
    linear-gradient(0deg, rgba(251, 250, 247, .95) 0%, rgba(251, 250, 247, .05) 42%, rgba(251, 250, 247, .12) 100%);
}

.hero-proof-frame {
  position: absolute;
  z-index: -1;
  inset: 118px clamp(18px, 3.8vw, 56px) 28px;
  border: 1px solid rgba(255, 255, 255, .72);
  pointer-events: none;
}

.crop {
  position: absolute;
  width: 24px;
  height: 24px;
}

.crop::before,
.crop::after {
  content: "";
  position: absolute;
  background: rgba(23, 25, 47, .6);
}

.crop::before {
  width: 24px;
  height: 1px;
}

.crop::after {
  width: 1px;
  height: 24px;
}

.crop-tl {
  top: -10px;
  left: -10px;
}

.crop-tr {
  top: -10px;
  right: -10px;
  transform: rotate(90deg);
}

.crop-bl {
  bottom: -10px;
  left: -10px;
  transform: rotate(-90deg);
}

.crop-br {
  right: -10px;
  bottom: -10px;
  transform: rotate(180deg);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 82px;
  line-height: .94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-title-accent {
  margin-top: 8px;
  font-size: .78em;
  font-weight: 510;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(23, 25, 47, .76);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 16px 34px rgba(51, 44, 132, .24);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(23, 25, 47, .2);
  background: rgba(255, 255, 255, .84);
}

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

.hero-specs {
  display: flex;
  max-width: 690px;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(23, 25, 47, .2);
}

.hero-specs span {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 16px 14px 0 0;
  color: rgba(23, 25, 47, .68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-specs b {
  color: var(--violet);
  font-size: 11px;
}

.hero-register {
  z-index: 1;
  width: 178px;
  justify-self: end;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(23, 25, 47, .72);
  backdrop-filter: blur(12px);
}

.register-target {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  animation: register-spin 14s linear infinite;
}

.register-target::before,
.register-target::after,
.register-target i::before,
.register-target i::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .82);
}

.register-target::before {
  top: 50%;
  left: -10px;
  width: 94px;
  height: 1px;
}

.register-target::after {
  top: -10px;
  left: 50%;
  width: 1px;
  height: 94px;
}

.register-target i::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: transparent;
}

.register-target i::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.register-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 38px;
}

.register-bars span:nth-child(1) {
  background: var(--blue);
}

.register-bars span:nth-child(2) {
  background: var(--green);
}

.register-bars span:nth-child(3) {
  background: var(--yellow);
}

.register-bars span:nth-child(4) {
  background: var(--red);
}

.hero-register small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 900;
}

/* Moving capability strip */
.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
}

.capability-track {
  display: flex;
  width: max-content;
  animation: capability-marquee 24s linear infinite;
  will-change: transform;
}

.capability-strip:hover .capability-track {
  animation-play-state: paused;
}

.capability-strip span {
  display: grid;
  min-width: 150px;
  min-height: 64px;
  flex: 0 0 150px;
  place-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: rgba(23, 25, 47, .72);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.capability-strip span:nth-child(4n + 1) {
  color: var(--blue);
}

.capability-strip span:nth-child(4n + 2) {
  color: #15735f;
}

.capability-strip span:nth-child(4n + 3) {
  color: #c9341b;
}

.capability-strip span:nth-child(4n + 4) {
  color: var(--violet);
}

/* Shared sections */
.section {
  padding: 112px clamp(28px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .31fr) minmax(0, .69fr);
  align-items: start;
  gap: 28px;
  margin-bottom: 54px;
}

.section-heading h2,
.studio-copy h2,
.contact-main h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

/* Services as print specimens */
.services {
  position: relative;
  background-color: #f6f5f1;
  background-image:
    linear-gradient(rgba(23, 25, 47, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 47, .038) 1px, transparent 1px);
  background-size: 44px 44px;
}

.service-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-panel {
  --panel-color: var(--blue);
  --panel-soft: rgba(20, 125, 192, .13);
  position: relative;
  display: flex;
  min-height: 588px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 47, .16);
  background: #fff;
  box-shadow: 9px 11px 0 var(--panel-soft);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--panel-color);
}

.service-panel:nth-child(2) {
  --panel-color: var(--green);
  --panel-soft: rgba(53, 185, 154, .14);
}

.service-panel:nth-child(3) {
  --panel-color: var(--red);
  --panel-soft: rgba(239, 68, 35, .12);
}

.service-panel:nth-child(4) {
  --panel-color: var(--yellow);
  --panel-soft: rgba(248, 180, 0, .17);
}

.service-panel:hover {
  border-color: rgba(23, 25, 47, .3);
  box-shadow: 13px 18px 0 var(--panel-soft);
  transform: translateY(-7px);
}

.service-photo {
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.service-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.98);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.service-panel:hover .service-photo-img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.055);
}

.service-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 30px;
}

.service-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.panel-index {
  color: var(--panel-color);
  font-size: 17px;
  font-weight: 950;
}

.service-code small {
  color: rgba(23, 25, 47, .48);
  font-size: 9px;
  font-weight: 900;
}

.service-panel h3 {
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-panel p,
.studio-copy p,
.process p,
.contact-main p,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.service-panel ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 19px;
  color: rgba(23, 25, 47, .74);
  font-size: 14px;
  font-weight: 760;
}

.service-panel li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--panel-color);
}

/* Process line */
.studio {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--ink);
  background-size: 54px 54px;
}

.studio-inner {
  position: relative;
  z-index: 1;
}

.studio-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .56fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 76px;
}

.studio-copy .eyebrow {
  grid-column: 1 / -1;
  color: var(--yellow);
}

.studio-copy h2 {
  color: #fff;
}

.studio-copy p:last-child {
  max-width: 520px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.process div {
  position: relative;
  min-height: 210px;
  padding: 38px 42px 12px 0;
}

.process div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .16);
  margin-right: 36px;
}

.process div::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--step-color, var(--blue));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .72);
}

.process div:nth-child(2) {
  --step-color: var(--yellow);
}

.process div:nth-child(3) {
  --step-color: var(--red);
}

.process span {
  display: block;
  margin-bottom: 32px;
  color: var(--step-color, var(--blue));
  font-size: 16px;
  font-weight: 950;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.process p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
}

/* Image-led statement */
.quote-band {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.quote-band::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/quote-finishes-v3.webp") center center / cover no-repeat;
  transform: scale(1.035);
}

.quote-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 25, 47, .74) 0%, rgba(23, 25, 47, .52) 55%, rgba(23, 25, 47, .18) 100%);
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.quote-inner p {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.08;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .55fr);
  align-items: start;
  gap: 76px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(23, 25, 47, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 47, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.contact-main p {
  max-width: 680px;
  margin-top: 24px;
  font-size: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: rgba(23, 25, 47, .8);
  font-weight: 850;
  overflow-wrap: anywhere;
  transition: color .2s ease, padding-left .2s ease;
}

.contact-list a:hover {
  padding-left: 8px;
  color: var(--violet);
}

.contact-list a:first-child {
  grid-column: 1 / -1;
  color: var(--violet);
  font-size: 20px;
}

.instagram-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: radial-gradient(circle at 30% 110%, #feda75 0 22%, #fa7e1e 38%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
  color: #fff;
  border-left: 6px solid var(--yellow);
  background: var(--ink);
  box-shadow: 18px 22px 0 rgba(51, 44, 132, .12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  outline: none;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(248, 180, 0, .18);
}

.contact-form .button {
  width: 100%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: none;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.privacy-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Footer and legal pages */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(28px, 5vw, 76px);
  color: #696c7a;
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 820;
}

.site-footer a:hover {
  color: var(--violet);
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 20px;
}

.legal-page h1 {
  margin: 24px 0 28px;
  font-size: 64px;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-back {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--violet);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}

/* Motion */
.reveal {
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--delay, 0ms);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from {
    scale: 1;
  }

  to {
    scale: 1.035;
  }
}

@keyframes register-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes capability-marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1220px) {
  h1 {
    font-size: 68px;
  }

  .service-panel h3 {
    font-size: 27px;
  }

  .contact {
    gap: 48px;
  }
}

@media (max-width: 1080px) {
  .service-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel {
    min-height: 540px;
  }

  .hero-register {
    width: 150px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  .site-header.is-elevated {
    min-height: var(--header-height);
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 820px;
    max-height: none;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 112px;
  }

  .hero-register {
    display: none;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, .08) 0%, rgba(251, 250, 247, .28) 35%, rgba(251, 250, 247, .9) 66%, var(--paper) 100%),
      linear-gradient(90deg, rgba(251, 250, 247, .62), rgba(251, 250, 247, .08));
  }

  h1 {
    font-size: 56px;
  }

  .section-heading,
  .studio-copy,
  .contact,
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    row-gap: 26px;
  }

  .studio-copy .eyebrow {
    grid-column: auto;
  }

  .studio-copy p:last-child {
    max-width: 680px;
  }

  .quote-inner {
    justify-items: start;
  }

  .contact-form {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 170px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: 760px;
    padding: 110px 18px 38px;
  }

  .hero-proof-frame {
    inset: 88px 10px 16px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, .04) 0%, rgba(251, 250, 247, .12) 28%, rgba(251, 250, 247, .92) 58%, var(--paper) 76%),
      linear-gradient(90deg, rgba(251, 250, 247, .25), rgba(251, 250, 247, .04));
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 43px;
    line-height: .96;
  }

  .hero-title-accent {
    margin-top: 5px;
    font-size: .8em;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.46;
  }

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

  .hero-actions .button {
    width: 100%;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero-specs {
    display: none;
  }

  .capability-strip span {
    min-width: 132px;
    min-height: 58px;
    flex-basis: 132px;
    font-size: 11px;
  }

  .section {
    padding: 82px 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .studio-copy h2,
  .contact-main h2 {
    font-size: 37px;
  }

  .service-board {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-panel {
    min-height: auto;
    box-shadow: 7px 9px 0 var(--panel-soft);
  }

  .service-photo {
    height: 218px;
  }

  .service-content {
    min-height: 360px;
    padding: 20px 22px 28px;
  }

  .service-panel h3 {
    font-size: 29px;
  }

  .studio-copy {
    margin-bottom: 54px;
  }

  .studio-copy p:last-child {
    font-size: 16px;
  }

  .process {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .3);
  }

  .process div {
    min-height: 0;
    padding: 0 0 46px 34px;
  }

  .process div:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .process div::before {
    top: 3px;
    left: -7px;
  }

  .process span {
    margin-bottom: 14px;
  }

  .process strong {
    font-size: 20px;
  }

  .quote-band {
    min-height: 430px;
  }

  .quote-band::before {
    background-position: 62% center;
  }

  .quote-band::after {
    background: linear-gradient(90deg, rgba(23, 25, 47, .82), rgba(23, 25, 47, .46));
  }

  .quote-inner p {
    font-size: 35px;
  }

  .quote-inner .button {
    width: 100%;
  }

  .contact {
    gap: 44px;
  }

  .contact-main p {
    font-size: 16px;
  }

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

  .contact-list a:first-child {
    grid-column: auto;
    font-size: 17px;
  }

  .contact-form {
    padding: 24px 20px 28px;
    box-shadow: 10px 13px 0 rgba(51, 44, 132, .12);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 18px 92px;
  }

  .site-footer p:last-child {
    justify-self: start;
  }

  .legal-page h1 {
    font-size: 46px;
  }
}

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