:root {
  --text: #f4f1ea;
  --muted: #aaa7a2;
  --violet: #c7a8ff;
  --gold: #e0ad45;
  --bg: #0c0f12;
  --panel: #15191e;
  --line: #30353d;
  --purple: #854cff;
  --max: 1340px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.55 Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.skip-link {
  position: fixed;
  z-index: 99;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}
.site-header {
  position: relative;
  z-index: 20;
  background: rgba(13, 15, 18, 0.97);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  color: #e9e6df;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 2px;
  background: var(--purple);
  transition: 0.2s;
}
.site-nav a:hover:after,
.site-nav a[aria-current="page"]:after {
  right: 0;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: 0 0;
  color: #fff;
  padding: 0.55rem 0.8rem;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: 0 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  border-color: var(--violet);
  background: rgba(140, 82, 255, 0.1);
  transform: translateY(-2px);
}
.button-primary {
  border-color: var(--purple);
  background: var(--purple);
}
.button-primary:hover {
  background: #9b68ff;
}
.button-light {
  border-color: #fff;
  background: #fff;
  color: #111;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}
h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero {
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    circle at 70% 30%,
    rgba(140, 82, 255, 0.08),
    transparent 35%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero h1 span {
  display: block;
  margin-top: 0.3em;
  font-size: 0.47em;
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #c6c3be;
  font-size: 1.05rem;
}
.browser {
  overflow: hidden;
  border: 1px solid #565c67;
  border-radius: 7px;
  background: #08090b;
  box-shadow: 0 25px 60px #0006;
}
.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid #3b4048;
  color: #9297a0;
  font-size: 0.7rem;
}
.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e86462;
}
.browser-bar i:nth-child(2) {
  background: #deb653;
}
.browser-bar i:nth-child(3) {
  background: #55b88a;
}
.browser-bar span {
  margin-left: auto;
}
.hero-preview {
  aspect-ratio: 16/9;
  background: #070707;
  overflow: hidden;
}
.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  object-position: center;
  filter: none;
}
.audience {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: #d0cdc7;
  text-align: center;
  font-size: 0.9rem;
}
.audience p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
}
.audience p:after,
.audience p:before {
  content: "";
  width: min(180px, 15vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.audience p:after {
  transform: scaleX(-1);
}
.section,
.services-strip {
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  border-right: 1px solid var(--line);
}
.service:first-child {
  border-left: 1px solid var(--line);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--violet);
}
.service h2 {
  font-size: 1.2rem;
}
.feature p,
.project-body p,
.service p,
.service-detail p,
.stack p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--violet);
  font-size: 0.88rem;
  text-underline-offset: 5px;
}
.section-alt {
  background: var(--panel);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.page-hero h1,
.section h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  transition: 0.2s;
}
.project-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
}
.project-image {
  aspect-ratio: 4/2.55;
  overflow: hidden;
  background: #08090a;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.project-card:hover img {
  transform: scale(1.025);
}
.portfolio-art {
  display: grid;
  place-items: center;
  font-size: 7rem;
  font-weight: 850;
  color: var(--purple);
  letter-spacing: -0.12em;
}
.project-empty {
  display: grid;
  place-items: center;
  margin: 20px;
  aspect-ratio: 4/2.15;
  border: 1px dashed #59606c;
  color: #9297a0;
  font-size: 2rem;
}
.project-body {
  flex: 1;
  padding: 20px;
}
.project-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbc8c1;
  font-size: 0.8rem;
}
.project-number:after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.project-body h3 {
  margin: 0.6rem 0;
  font-size: 1.25rem;
}
.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
.feature {
  padding: 14px 26px;
  border-left: 1px solid var(--line);
}
.feature:first-child {
  border-left: 0;
}
.feature svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--violet);
}
.feature h3,
.step h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}
.step {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}
.step:first-child {
  border-left: 0;
  padding-left: 0;
}
.step-number {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 1.35rem;
}
.step-number:after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.step h3 {
  margin: 0.75rem 0 0.5rem;
}
.studio-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr 1.6fr;
  gap: 42px;
  align-items: center;
}
.studio-copy p {
  color: var(--muted);
}
.studio-visual {
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.studio-visual:before {
  content: "</>";
  position: absolute;
  right: 10%;
  bottom: 5%;
  font: 800 7rem/1 monospace;
  color: #c7a8ff25;
}
.studio-visual:after {
  content: "RDM / ontwerp + code";
  position: absolute;
  left: 30px;
  top: 30px;
  color: #c8c5bf;
  font: 600 0.75rem monospace;
  letter-spacing: 0.08em;
}
.cta {
  padding: 42px 0;
  border-bottom: 1px solid #6540ae;
  background: linear-gradient(100deg, #2b1271, #541bc2);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 44px;
}
.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}
.cta p {
  margin: 0;
  color: #dfd5f4;
}
.site-footer {
  padding: 48px 0 26px;
  background: #0a0c0f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}
.footer-grid h3 {
  font-size: 0.8rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin: 0.5rem 0;
}
.footer-grid a,
.footer-grid p {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #777b83;
  font-size: 0.75rem;
}
.page-hero {
  padding: 74px 0 64px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 70% 10%, #8c52ff1a, transparent 28%);
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}
.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.stack > * + * {
  margin-top: 1.4rem;
}
.case-hero-image {
  margin-top: 2rem;
  border: 1px solid var(--line);
}
.case-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}
.case-meta div {
  background: var(--panel);
  padding: 20px;
}
.case-meta dt {
  color: var(--muted);
  font-size: 0.75rem;
}
.case-meta dd {
  margin: 0.3rem 0 0;
  font-weight: 700;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}
.contact-details {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.contact-details p {
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-full {
  grid-column: 1/-1;
}
label {
  font-weight: 650;
  font-size: 0.88rem;
}
.required {
  color: var(--gold);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #555b66;
  border-radius: 2px;
  background: #101216;
  color: var(--text);
  padding: 0.85rem;
}
textarea {
  min-height: 170px;
  resize: vertical;
}
.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}
.checkbox input {
  width: 19px;
  height: 19px;
}
.form-status {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: var(--panel);
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.legal {
  max-width: 800px;
}
.legal li,
.legal p {
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }
  .nav-wrap {
    min-height: 72px;
  }
  .brand img {
    width: 185px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    gap: 0.2rem;
    padding: 18px;
    border: 1px solid var(--line);
    background: #11141a;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 0.7rem;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid,
  .projects-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: auto;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0;
  }
  .projects-grid {
    max-width: 650px;
  }
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .feature:nth-child(3),
  .step:nth-child(3) {
    border-left: 0;
  }
  .studio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .studio-visual {
    grid-column: 1/-1;
  }
  .cta-inner {
    grid-template-columns: 1fr auto;
  }
  .cta-inner p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .contact-grid,
  .content-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .container {
    width: calc(100% - 28px);
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 0.6rem;
  }
  .audience p:after,
  .audience p:before {
    display: none;
  }
  .case-meta,
  .cta-inner,
  .feature-grid,
  .footer-grid,
  .form-grid,
  .process-grid,
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature:nth-child(3),
  .step,
  .step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }
  .feature:first-child,
  .step:first-child {
    border-top: 0;
  }
  .cta-inner p {
    grid-row: auto;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero-preview {
    aspect-ratio: 4/3;
  }
  .project-card {
    min-height: 390px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
body {
  font:
    15px/1.55 Manrope,
    system-ui,
    sans-serif;
  overflow-x: hidden;
}
.brand img,
.footer-brand img {
  width: 224px;
}
.hero {
  padding: 42px 0 48px;
}
.hero-grid {
  grid-template-columns: 0.76fr 1.24fr;
  gap: 42px;
}
.hero h1 {
  max-width: 520px;
}
.hero-preview {
  position: relative;
  aspect-ratio: 1.72;
}
.preview-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8%;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 9, 0.96),
    rgba(8, 8, 9, 0.74) 42%,
    transparent 72%
  );
}
.preview-copy strong {
  max-width: 390px;
  font-size: clamp(1.75rem, 3vw, 3.4rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.preview-copy span {
  margin-bottom: 0.7rem;
  color: #ff681f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.preview-copy small {
  max-width: 300px;
  margin-top: 1rem;
  color: #d3d0ca;
  font-size: 0.78rem;
}
.service {
  min-height: 218px;
  padding: 38px 30px;
}
.section {
  padding: 64px 0;
}
.project-card {
  min-height: 410px;
}
.feature {
  min-height: 166px;
}
.studio-visual {
  min-height: 240px;
  background: url("../img/studio-workspace.webp") center/cover no-repeat;
}
.browser,
.hero-copy,
.hero-grid,
.hero-preview,
.service,
.services-grid {
  min-width: 0;
}
.studio-visual:after,
.studio-visual:before {
  display: none;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 46px;
  }
  .preview-copy strong {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
  .brand img {
    width: 190px;
  }
  .browser {
    width: 100%;
    max-width: 100%;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }
  .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .preview-copy {
    padding: 7%;
  }
  .preview-copy strong {
    max-width: 72%;
    overflow-wrap: anywhere;
  }
  .actions {
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .nav-wrap {
    gap: 0.75rem;
  }
  .brand img {
    width: 170px;
  }
  .menu-toggle {
    flex: 0 0 auto;
  }
  .hero {
    padding: 34px 0 42px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 1.04;
  }
  .hero h1 span {
    font-size: 0.48em;
    line-height: 1.25;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .actions .button {
    width: 100%;
  }
  .hero-preview {
    aspect-ratio: 1.1;
  }
  .preview-copy strong {
    max-width: 82%;
    font-size: 1.75rem;
  }
  .audience {
    padding: 20px 0;
  }
}
.site-header .nav-cta {
  display: none;
}
.hero h1 {
  font-size: clamp(3.15rem, 4.45vw, 4rem);
}
.service {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 24px;
  align-content: center;
}
.service-icon {
  grid-column: 1;
  grid-row: 1/4;
  margin: 0;
}
.service h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0.45rem;
}
.service p {
  grid-column: 2;
  grid-row: 2;
}
.service .text-link {
  grid-column: 2;
  grid-row: 3;
}
@media (max-width: 900px) {
  .service {
    grid-template-columns: 54px 1fr;
    padding: 28px 0;
  }
}
@media (max-width: 580px) {
  .hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 2.9rem);
  }
  .service {
    column-gap: 18px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
  }
}
.portfolio-art {
  position: relative;
  color: transparent;
  overflow: hidden;
  background: linear-gradient(120deg, #080a0d, #0c0d12);
}
.portfolio-art:before {
  content: "Designing digital\A projects overlap\A strategy & craft.";
  white-space: pre;
  position: absolute;
  left: 8%;
  top: 27%;
  z-index: 1;
  color: #f4f1ea;
  font-size: clamp(0.75rem, 1.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.portfolio-art:after {
  content: "N";
  position: absolute;
  right: -2%;
  bottom: -18%;
  color: #6320db;
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 761px) and (max-width: 900px) {
  .container {
    width: calc(100% - 50px);
  }
  .nav-wrap {
    min-height: 70px;
  }
  .brand img {
    width: 178px;
  }
  .menu-toggle {
    display: none;
  }
  .site-nav {
    display: flex;
    position: static;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    border: 0;
    background: 0 0;
  }
  .site-nav a {
    padding: 0.35rem 0;
    font-size: 0.78rem;
  }
  .hero {
    padding: 30px 0 36px;
  }
  .hero-grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
  }
  .hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }
  .hero h1 span {
    font-size: 0.5em;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.83rem;
  }
  .actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .actions .button {
    width: auto;
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    font-size: 0.75rem;
  }
  .browser {
    max-width: none;
  }
  .browser-bar {
    height: 30px;
  }
  .hero-preview {
    aspect-ratio: 1.55;
  }
  .preview-copy {
    padding: 6%;
  }
  .preview-copy strong {
    max-width: 58%;
    font-size: 1.65rem;
  }
  .preview-copy small {
    font-size: 0.6rem;
  }
  .audience {
    padding: 18px 0;
    font-size: 0.75rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service {
    min-height: 160px;
    padding: 24px 14px;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    border-top: 0;
    border-right: 1px solid var(--line);
  }
  .service:first-child {
    border-left: 1px solid var(--line);
  }
  .service-icon {
    width: 38px;
    height: 38px;
  }
  .service h2 {
    font-size: 0.9rem;
  }
  .service .text-link,
  .service p {
    font-size: 0.68rem;
  }
  .section {
    padding: 42px 0;
  }
  .section h2 {
    font-size: 2rem;
  }
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: none;
  }
  .project-card {
    min-height: 0;
  }
  .project-body {
    padding: 14px;
  }
  .project-body h3 {
    font-size: 1rem;
  }
  .project-body .text-link,
  .project-body p {
    font-size: 0.68rem;
  }
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .feature,
  .feature:nth-child(3) {
    min-height: 145px;
    padding: 10px 18px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .feature:first-child {
    border-left: 0;
  }
  .feature h3,
  .step h3 {
    font-size: 0.8rem;
  }
  .feature p,
  .step p {
    font-size: 0.66rem;
  }
  .feature svg {
    width: 34px;
    height: 34px;
  }
  .step,
  .step:nth-child(3) {
    padding: 0 16px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .step:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .step-number {
    font-size: 1.05rem;
  }
  .studio-grid {
    grid-template-columns: 0.8fr 1fr 1.7fr;
    gap: 24px;
  }
  .studio-visual {
    grid-column: auto;
    min-height: 190px;
  }
  .studio-copy .text-link,
  .studio-copy p {
    font-size: 0.7rem;
  }
  .cta-inner {
    grid-template-columns: 1fr 1fr auto;
    gap: 24px;
  }
  .cta-inner p {
    grid-column: auto;
    grid-row: auto;
    font-size: 0.72rem;
  }
  .cta h2 {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 24px;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}
@media (min-width: 901px) {
  :root {
    --max: 1780px;
  }
  .container {
    width: calc(100% - 60px);
  }
  .hero {
    padding-bottom: 17px;
  }
  .audience {
    padding: 12px 0;
    font-size: 0.78rem;
  }
  .services-strip + .section,
  .work-section {
    padding-top: 24px;
  }
  .service {
    min-height: 164px;
    padding: 24px 14px;
    grid-template-columns: 42px minmax(0, 320px);
    column-gap: 14px;
    justify-content: start;
  }
  .service-icon {
    width: 38px;
    height: 38px;
  }
  .service h2 {
    font-size: 0.9rem;
  }
  .service .text-link,
  .service p {
    font-size: 0.68rem;
    line-height: 1.5;
  }
  .services-strip {
    background:
      radial-gradient(
        circle at 16% 50%,
        rgba(140, 82, 255, 0.035),
        transparent 24%
      ),
      radial-gradient(
        circle at 84% 40%,
        rgba(255, 255, 255, 0.018),
        transparent 22%
      ),
      var(--bg);
  }
  .services-strip + .section {
    background:
      radial-gradient(
        circle at 50% 0,
        rgba(140, 82, 255, 0.025),
        transparent 30%
      ),
      var(--bg);
  }
}
@media (min-width: 761px) and (max-width: 900px) {
  .preview-copy {
    justify-content: flex-start;
    padding: 84px 20px 42px;
  }
  .preview-copy > span {
    display: none;
  }
  .preview-copy:before {
    content: "TP  MOVIES                              DIENSTEN     PROJECTEN     OVER ONS     CONTACT";
    position: absolute;
    left: 20px;
    right: 12px;
    top: 14px;
    color: #f4f1ea;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: pre;
  }
  .preview-copy:after {
    content: "BEKIJK PROJECTEN  →     ONZE DIENSTEN  →\A\A\A 01       02       03       04";
    position: absolute;
    left: 20px;
    bottom: 13px;
    color: #f4f1ea;
    font-size: 0.48rem;
    font-weight: 700;
    line-height: 2.15;
    white-space: pre;
  }
  .preview-copy strong {
    max-width: 220px;
    font-size: 1.85rem;
  }
  .preview-copy small {
    max-width: 190px;
    margin-top: 0.65rem;
  }
}
@media (min-width: 901px) {
  .services-strip {
    background:
      radial-gradient(
        circle at 16% 50%,
        rgba(140, 82, 255, 0.035),
        transparent 24%
      ),
      radial-gradient(
        circle at 84% 40%,
        rgba(255, 255, 255, 0.018),
        transparent 22%
      ),
      var(--bg);
  }
  .hero .container,
  .site-header .container {
    width: min(calc(100% - 60px), 1340px);
  }
  :root {
    --max: 1780px;
  }
  .container {
    width: calc(100% - 60px);
  }
  .hero {
    padding-bottom: 17px;
  }
  .audience {
    padding: 12px 0;
    font-size: 0.78rem;
  }
  .service {
    grid-template-columns: 42px minmax(0, 320px);
    column-gap: 14px;
    justify-content: start;
    min-height: 145px;
    padding: 22px 30px;
    grid-template-columns: 52px 1fr;
    column-gap: 22px;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
  .service h2 {
    font-size: 1rem;
  }
  .service .text-link,
  .service p {
    line-height: 1.5;
    font-size: 0.74rem;
  }
  .services-strip + .section {
    padding-top: 24px;
  }
}
@media (min-width: 761px) and (max-width: 900px) {
  .preview-copy {
    justify-content: flex-start;
    padding: 84px 20px 42px;
  }
  .preview-copy > span {
    display: none;
  }
  .preview-copy:before {
    content: "TP  MOVIES                              DIENSTEN     PROJECTEN     OVER ONS     CONTACT";
    position: absolute;
    left: 20px;
    right: 12px;
    top: 14px;
    color: #f4f1ea;
    font-size: 0.48rem;
    font-weight: 700;
    white-space: pre;
  }
  .preview-copy:after {
    content: "BEKIJK PROJECTEN  →     ONZE DIENSTEN  →\A\A\A 01       02       03       04";
    position: absolute;
    left: 20px;
    bottom: 13px;
    color: #f4f1ea;
    font-size: 0.48rem;
    font-weight: 700;
    line-height: 2.15;
    white-space: pre;
  }
  .services-strip + .section {
    padding-top: 20px;
    padding-bottom: 26px;
  }
  .services-strip + .section .section-head {
    margin-bottom: 0;
  }
  .services-strip + .section .section-head .eyebrow {
    margin-bottom: 0.4rem;
  }
  .section-alt:has(.feature-grid) {
    padding: 22px 0;
  }
  .section-alt + .section {
    padding: 18px 0;
  }
  .section-alt + .section .process-grid {
    margin-top: 0.45rem;
  }
  .footer-grid {
    gap: 18px;
  }
  .footer-brand img {
    width: 150px;
  }
  .footer-bottom,
  .footer-grid a,
  .footer-grid li,
  .footer-grid p {
    font-size: 0.55rem;
  }
  .container {
    width: calc(100% - 60px);
  }
  .skip-link {
    position: absolute;
    top: 14px;
    left: 16px;
    transform: none;
    padding: 0.45rem 0.65rem;
    border: 2px solid var(--purple);
    background: 0 0;
    color: var(--text);
    font-size: 0.65rem;
    text-decoration: none;
  }
  .nav-wrap {
    min-height: 60px;
  }
  .nav-wrap .brand {
    margin-left: 104px;
  }
  .brand img {
    width: 215px;
  }
  .site-nav {
    gap: 1.85rem;
  }
  .hero {
    padding: 16px 0 24px;
  }
  .hero-grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.55rem;
    line-height: 1;
    letter-spacing: -0.055em;
  }
  .hero h1 span {
    margin-top: 0.4em;
    font-size: 0.61em;
    line-height: 1.2;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.79rem;
  }
  .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.58rem;
  }
  .actions {
    margin-top: 1.15rem;
  }
  .browser-bar {
    height: 30px;
  }
  .hero-preview {
    aspect-ratio: 1.48;
  }
  .preview-copy strong {
    max-width: 215px;
    font-size: 1.85rem;
    line-height: 0.98;
  }
  .preview-copy small {
    max-width: 190px;
    margin-top: 0.75rem;
  }
  .audience {
    padding: 8px 0;
  }
  .audience p {
    font-size: 0.72rem;
  }
  .service {
    min-height: 164px;
  }
  .section {
    padding: 26px 0;
  }
  .section h2 {
    font-size: 1.9rem;
  }
  .section-head .eyebrow {
    margin-bottom: 0.7rem;
  }
  .project-number {
    font-size: 0.65rem;
    line-height: 1;
  }
  .feature-grid,
  .process-grid {
    margin-top: 1.25rem;
  }
  .feature,
  .feature:nth-child(3) {
    min-height: 126px;
    padding: 7px 16px;
  }
  .feature svg {
    margin-bottom: 0.65rem;
  }
  .feature h3 {
    margin-bottom: 0.35rem;
  }
  .feature p {
    line-height: 1.4;
  }
  .step,
  .step:nth-child(3) {
    padding-inline: 14px;
  }
  .step h3 {
    margin: 0.45rem 0 0.3rem;
  }
  .step p {
    line-height: 1.35;
  }
  .studio-copy p {
    margin: 0.3rem 0;
  }
  .cta {
    padding: 25px 0;
  }
  .cta h2 {
    font-size: 1.65rem;
  }
  .site-footer {
    padding: 28px 0 18px;
  }
  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
  }
  .section-head {
    margin-bottom: 0.45rem;
  }
  .project-image {
    aspect-ratio: 1.44;
  }
  .project-body {
    flex: none;
    height: 82px;
    padding: 7px 13px;
  }
  .project-body h3 {
    margin: 0.2rem 0;
    font-size: 0.86rem;
  }
  .project-body p {
    font-size: 0.62rem;
    line-height: 1.25;
  }
  .project-body .text-link {
    margin-top: 0.25rem;
    font-size: 0.62rem;
  }
  .section-alt .feature-grid {
    margin-top: 0.3rem;
  }
  .section-alt .feature {
    min-height: 105px;
    padding: 3px 16px;
  }
  .section-alt .feature svg {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
  }
  .section-alt .feature h3 {
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
  }
  .section-alt .feature p {
    font-size: 0.59rem;
  }
  .section-alt .section-head {
    margin-bottom: 0.2rem;
  }
  .section-alt .section-head .text-link {
    white-space: nowrap;
    font-size: 0.68rem;
  }
  .section:not(.section-alt) .process-grid {
    margin-top: 0.65rem;
  }
  .process-grid .step {
    padding-inline: 13px;
  }
  .process-grid .step-number {
    font-size: 0.95rem;
  }
  .process-grid .step h3 {
    margin: 0.3rem 0 0.15rem;
    font-size: 0.72rem;
  }
  .process-grid .step p {
    font-size: 0.58rem;
    line-height: 1.3;
  }
  .studio-grid {
    gap: 20px;
    padding-block: 0;
  }
  .studio-visual {
    min-height: 126px;
  }
  .section-alt:has(.studio-grid) {
    padding: 14px 0;
  }
}
@media (max-width: 760px) {
  .skip-link {
    transform: translateY(-150%);
  }
}
@media (min-width: 761px) and (max-width: 900px) {
  .services-strip + .section {
    padding-top: 20px;
    padding-bottom: 21px;
  }
  .services-strip + .section .section-head {
    margin-bottom: 0;
  }
  .section-alt .feature {
    min-height: 95px;
  }
  .section-alt + .section {
    padding: 16px 0;
  }
  .section-alt + .section .process-grid {
    margin-top: 0.45rem;
  }
  .footer-brand img {
    width: 140px;
  }
  .footer-grid a,
  .footer-grid li,
  .footer-grid p {
    font-size: 0.52rem;
  }
  .section-alt:has(.feature-grid) {
    padding: 22.5px 0;
  }
  .section-alt:has(.studio-grid) {
    padding: 9px 0;
  }
  .cta {
    padding: 20px 0;
  }
  .site-footer {
    height: 84px;
    padding: 8px 0 4px;
    overflow: hidden;
  }
  .footer-grid {
    gap: 16px;
    height: 43px;
    align-items: start;
  }
  .footer-grid h3,
  .footer-grid p,
  .footer-grid ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer-grid li {
    margin: 0.15rem 0;
  }
  .footer-bottom {
    font-size: 0.52rem;
    height: 19px;
    margin-top: 3px;
    padding-top: 3px;
  }
}
