:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #181717;
  --muted: #716b67;
  --line: rgba(24, 23, 23, 0.12);
  --accent: #9d867f;
  --accent-soft: #f3ece8;
  --shadow: 0 22px 44px rgba(24, 23, 23, 0.08);
  --max-width: 1440px;
  --content-width: 1300px;
  --header-height: 102px;
  --font-body: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-logo: "Didot", "Bodoni MT", "Times New Roman", serif;
}

html.fonts-loading body {
  visibility: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.site-footer__inner,
.section,
.section--narrow,
.instagram-strip,
.contact-banner,
.portfolio-intro,
.terms-content,
.lead-split {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  position: relative;
}

.lead-split > *,
.contact-page__split > *,
.contact-page__hero,
.portfolio-intro {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__copy {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 12px;
  min-width: 0;
}

.brand__name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand__tag {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-header__tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 23, 23, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.language-switch__button {
  border: 0;
  background: transparent;
  padding: 11px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.language-switch__button.is-active {
  background: var(--text);
  color: var(--surface);
}

.site-nav__list,
.site-nav__submenu,
.footer-links,
.social-links,
.stack-list,
.terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav__item {
  position: relative;
}

.site-nav__item--has-children {
  padding-bottom: 0;
  margin-bottom: 0;
}

.site-nav__item--has-children::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: -8px;
  right: -8px;
  height: 10px;
}

.site-nav__link,
.footer-links a,
.social-link {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav__link::after,
.footer-links a::after,
.social-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__item:hover > .site-nav__link::after,
.site-nav__item:focus-within > .site-nav__link::after,
.site-nav__item.is-open > .site-nav__link::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.social-link:hover::after,
.social-link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__link--has-children {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav__chevron {
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.site-nav__item:hover .site-nav__chevron,
.site-nav__item:focus-within .site-nav__chevron,
.site-nav__item.is-open .site-nav__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  gap: 12px;
  min-width: 240px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__submenu a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item:focus-within > .site-nav__submenu,
.site-nav__item.is-open > .site-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.button,
.button--ghost,
.button--fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--text);
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--ghost {
  border-color: rgba(24, 23, 23, 0.2);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(24, 23, 23, 0.04);
}

.button--fill {
  border-color: var(--text);
  background: var(--text);
  color: var(--surface);
}

.button--fill:hover,
.button--fill:focus-visible {
  background: transparent;
  color: var(--text);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(24, 23, 23, 0.18);
  background: rgba(251, 250, 248, 0.98);
  padding: 0 14px;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  box-shadow: none;
}

.mobile-toggle__bars,
.mobile-toggle__bars::before,
.mobile-toggle__bars::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle__bars {
  position: relative;
}

.mobile-toggle__bars::before,
.mobile-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle__bars::before {
  top: -6px;
}

.mobile-toggle__bars::after {
  top: 6px;
}

.mobile-toggle__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.98);
  padding: 18px 20px 24px;
}

.mobile-nav__list {
  display: grid;
}

.mobile-nav__utility {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav__language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav__list,
.mobile-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--line);
}

.mobile-nav__link,
.mobile-nav__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 19px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  color: inherit;
}

.mobile-nav__meta-link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-nav__button .site-nav__chevron {
  margin-right: 6px;
}

.mobile-nav__submenu {
  display: none;
  padding: 0 0 14px 18px;
}

.mobile-nav__item.is-open .mobile-nav__submenu {
  display: grid;
  gap: 10px;
}

.mobile-nav__item.is-open .site-nav__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.main {
  padding-bottom: 70px;
}

.section {
  padding: 58px 0;
}

.section--tight {
  padding: 28px 0;
}

.section--narrow {
  width: min(calc(100% - 40px), 960px);
  padding: 54px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.04em;
  overflow-wrap: normal;
  word-break: normal;
}

html[lang="nl"] .display {
  font-size: clamp(46px, 6.9vw, 94px);
}

.title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 0.95;
  font-weight: 500;
  overflow-wrap: normal;
  word-break: normal;
}

.subtitle {
  margin: 0;
  max-width: 700px;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.intro-copy {
  max-width: 760px;
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: 34px;
  padding-top: 42px;
  padding-bottom: 34px;
}

.home-hero-panel__intro {
  max-width: 560px;
  padding-bottom: 10px;
}

.home-hero-panel__actions,
.home-signoff__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 28px;
}

.home-signoff__actions {
  justify-content: center;
}

.home-hero-panel__media {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.82fr);
  gap: 14px;
  align-items: stretch;
}

.home-hero-panel__media figure,
.home-story-panel__mosaic figure {
  margin: 0;
}

.home-hero-panel__primary img,
.home-hero-panel__supporting img,
.home-story-panel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-panel__primary img {
  aspect-ratio: 4 / 5;
}

.home-hero-panel__stack {
  display: grid;
  gap: 14px;
}

.home-hero-panel__supporting--1 img {
  aspect-ratio: 4 / 4.55;
}

.home-hero-panel__supporting--2 img {
  aspect-ratio: 4 / 5.35;
}

.home-story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.home-story-panel__copy {
  max-width: 520px;
  padding-top: 12px;
}

.home-story-panel__disciplines {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-story-panel__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-story-panel__frame--1 img,
.home-story-panel__frame--4 img {
  aspect-ratio: 1 / 1.1;
}

.home-story-panel__frame--2 img,
.home-story-panel__frame--3 img {
  aspect-ratio: 1 / 0.82;
}

.home-selection-panel {
  padding-top: 28px;
}

.home-selection__header {
  display: grid;
  gap: 0;
  max-width: 740px;
  margin-bottom: 28px;
}

.home-selection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.home-selection__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-hero {
  padding-top: 0;
  padding-bottom: 0;
}

.home-hero__grid,
.project-gallery,
.instagram-strip__grid {
  column-gap: 14px;
}

.home-hero__grid {
  columns: 5 180px;
}

.gallery-grid {
  columns: 4 250px;
}

.home-focus {
  display: grid;
  gap: 18px;
  justify-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 24px;
}

.home-focus__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}

.mobile-nav__actions {
  padding-top: 18px;
}

.home-focus__image {
  width: min(100%, 760px);
}

.home-focus__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-item,
.project-card,
.instagram-strip__item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.home-hero__grid .gallery-item:nth-child(4n + 2) {
  margin-top: 24px;
}

.home-hero__grid .gallery-item:nth-child(4n + 4) {
  margin-top: 12px;
}

.gallery-item img,
.project-card img,
.lead-split__visual img,
.card-thumb img,
.project-cover,
.instagram-strip__item img,
.contact-banner__image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.gallery-item img,
.project-card img,
.instagram-strip__item img {
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.project-card:hover img,
.instagram-strip__item:hover img {
  transform: scale(1.012);
  filter: contrast(1.02);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 26px;
  align-items: center;
  margin-top: 20px;
}

.trusted-logos__item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 8px;
}

.trusted-logos__item img {
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1);
}

.trusted-logos__item--text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.home-trusted {
  padding-top: 38px;
}

.home-signoff {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.home-signoff .title {
  margin-bottom: 18px;
  margin-inline: auto;
  max-width: 12ch;
}

.home-signoff .intro-copy {
  margin-right: auto;
  margin-left: auto;
  max-width: 660px;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: stretch;
  padding: 38px 0 54px;
}

.contact-banner__image img {
  height: 100%;
}

.contact-banner__copy {
  align-self: center;
}

.contact-banner__text {
  margin: 20px 0 0;
  max-width: 610px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 34px 32px 32px;
}

.contact-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 0.98;
  font-weight: 500;
  max-width: 9ch;
}

.contact-card__copy {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.75;
}

.contact-card__email {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.contact-card__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 28ch;
  line-height: 1.7;
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 23, 23, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 18px;
  color: var(--text);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-page__hero .form-note,
.portfolio-connect .form-note {
  max-width: 720px;
  margin-top: 4px;
  line-height: 1.6;
}

.portfolio-intro {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 42px 0 16px;
}

.portfolio-intro .title {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 0.96;
}

.portfolio-intro .subtitle {
  max-width: 690px;
}

.portfolio-intro .intro-copy {
  max-width: 660px;
  margin-top: 14px;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  width: min(100%, 1080px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
  align-items: stretch;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.portfolio-card__media {
  aspect-ratio: 4 / 5.15;
  overflow: hidden;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__content {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 108px;
  padding: 20px 0 8px;
}

.portfolio-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 0.98;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.portfolio-card__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-split {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
  padding: 42px 0 14px;
}

.lead-split__visual img {
  min-height: 0;
  aspect-ratio: 4 / 4.95;
  object-fit: cover;
}

.lead-split .eyebrow {
  margin-bottom: 14px;
}

.lead-split .title {
  max-width: 13.4ch;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 0.94;
  text-wrap: balance;
}

.lead-split .title span {
  display: block;
  white-space: nowrap;
}

.stack-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  max-width: 600px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.stack-list p,
.contact-page__copy,
.portfolio-intro .subtitle,
.portfolio-intro .intro-copy {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.project-sections {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  gap: 22px;
}

.project-section {
  padding-top: 0;
}

.project-section__title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-section__meta {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-gallery {
  columns: 3 236px;
  column-gap: 16px;
}

.project-gallery--compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  columns: auto;
  gap: 16px;
}

.project-gallery--compact .project-card {
  margin-bottom: 0;
}

.project-gallery--portrait {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.project-card {
  position: relative;
}

.project-card img {
  width: 100%;
  display: block;
}

.contact-page {
  padding-top: 0;
}

.contact-page__hero {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 0;
  padding-top: 6px;
}

.contact-page__hero .title {
  max-width: 13.5ch;
  font-size: clamp(34px, 4.3vw, 60px);
  text-wrap: balance;
  line-height: 0.97;
}

.contact-page__copy {
  max-width: 740px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

.contact-page__split {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}

.contact-page__split > [data-contact-card] {
  align-self: start;
}

.contact-page__split .contact-banner__image {
  align-self: stretch;
  padding-left: 8px;
}

.contact-page__split .contact-banner__image img {
  width: 100%;
  aspect-ratio: 4 / 4.68;
  object-fit: cover;
  height: 100%;
  min-height: 100%;
}

.contact-quote {
  margin: 36px 0 0;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.portfolio-connect {
  width: min(calc(100% - 40px), 840px);
  margin: 0 auto;
}

.portfolio-connect [data-portfolio-contact] {
  margin-top: 22px;
}

.instagram-strip {
  padding: 46px 0 24px;
}

.instagram-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.instagram-strip__label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.instagram-strip__grid {
  columns: 8 120px;
}

.instagram-strip__item img {
  aspect-ratio: 1 / 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 22px 0 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.34);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 0;
  color: var(--muted);
  padding-top: 1px;
}

.site-footer__copy {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

.site-footer__copy > span + span {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__content {
  display: grid;
  gap: 5px;
  align-content: start;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 8px;
  align-items: baseline;
}

.site-footer__nav a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1;
  margin-top: -1px;
  text-align: right;
}

.terms-content {
  display: grid;
  width: min(calc(100% - 40px), 980px);
  gap: 28px;
  padding: 48px 0 12px;
}

.terms-hero {
  display: grid;
  gap: 12px;
  padding-bottom: 8px;
}

.terms-hero .title {
  margin-bottom: 0;
}

.terms-hero .intro-copy {
  max-width: 720px;
}

.terms-section {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.terms-section h2,
.terms-section h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
}

.terms-section p {
  margin: 0;
  color: var(--muted);
}

.terms-list {
  display: grid;
  gap: 10px;
  margin-left: 18px;
  color: var(--muted);
}

.section--category-intro {
  width: min(100%, 940px);
  margin: 0 auto 0;
  padding-top: 28px;
  padding-bottom: 0;
}

.section--category-intro .title {
  max-width: 980px;
  margin-bottom: 12px;
}

.section--category-intro .subtitle,
.section--category-intro .intro-copy {
  max-width: 720px;
}

.divider {
  border-top: 1px solid var(--line);
  margin: 34px 0 0;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open main,
  body.nav-open [data-footer] {
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .site-header {
    position: fixed;
    inset: 0;
    z-index: 90;
    overflow-y: auto;
    border-bottom: 0;
    background: rgba(251, 250, 248, 0.99);
    backdrop-filter: blur(18px);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    padding-right: 0;
  }

  .site-header__tools {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    gap: 10px;
    margin-left: 0;
    z-index: 60;
  }

  .brand {
    padding-right: 0;
  }

  body.nav-open .site-header__inner {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(251, 250, 248, 0.99);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-header__tools {
    z-index: 3;
  }

  body.nav-open .mobile-nav {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 10px 24px 26px;
    border-top: 0;
    background: transparent;
  }

  body.nav-open .mobile-toggle {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  body.nav-open .mobile-toggle__bars {
    background: transparent;
  }

  body.nav-open .mobile-toggle__bars::before {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .mobile-toggle__bars::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .contact-banner,
  .contact-page__split,
  .lead-split {
    grid-template-columns: 1fr;
  }

  .trusted-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero-panel,
  .home-story-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-hero-panel__intro,
  .home-story-panel__copy {
    max-width: 720px;
  }

  .instagram-strip__grid {
    columns: 4 120px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__content {
    gap: 8px;
  }
}

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

  .trusted-logos {
    grid-template-columns: 1fr;
  }

  .brand__name {
    letter-spacing: 0.16em;
  }

  .brand__copy {
    gap: 8px;
  }

  .brand__tag {
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .home-hero__grid,
  .gallery-grid,
  .project-gallery {
    columns: 3 240px;
  }

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

  .display {
    font-size: clamp(44px, 14vw, 80px);
  }

  .title {
    font-size: clamp(34px, 9vw, 56px);
  }

  .portfolio-intro {
    padding-top: 36px;
    padding-bottom: 14px;
  }

  .contact-page__hero,
  .contact-page__split {
    gap: 28px;
  }

  .contact-page__hero .title {
    max-width: 12.5ch;
    font-size: clamp(32px, 5vw, 52px);
  }

  .contact-page__split {
    grid-template-columns: minmax(0, 0.94fr) minmax(280px, 1.06fr);
    margin-top: 16px;
  }

  .lead-split {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1.12fr);
    gap: 34px;
  }

  .lead-split .title {
    max-width: 12.6ch;
    font-size: clamp(34px, 5vw, 54px);
  }

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

  .terms-section h2,
  .terms-section h3 {
    font-size: 34px;
  }
}

@media (max-width: 760px) {
  .portfolio-grid,
  .trusted-logos,
  .project-gallery--compact,
  .project-gallery--portrait {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell,
  .main,
  .site-header,
  .mobile-nav,
  .site-header__inner,
  .section,
  .section--narrow,
  .instagram-strip,
  .contact-banner,
  .portfolio-intro,
  .terms-content,
  .lead-split,
  .contact-page__split,
  .contact-page__hero {
    max-width: 100%;
  }

  .site-header__inner,
  .section,
  .section--narrow,
  .instagram-strip,
  .contact-banner,
  .portfolio-intro,
  .terms-content,
  .lead-split {
    width: calc(100% - 36px);
  }

  .site-header__inner {
    width: 100%;
    min-height: 96px;
    padding: 0 18px;
    position: relative;
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
    max-width: none;
    padding-right: 0;
    min-width: 0;
  }

  .brand__copy {
    gap: 0;
    min-width: 0;
  }

  .brand__name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.34em;
    white-space: nowrap;
  }

  .brand__tag {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 78px;
  }

  .site-header__tools {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin-right: 0;
    min-width: 28px;
  }

  .mobile-toggle {
    display: inline-flex !important;
    position: static;
    top: auto;
    right: auto;
    transform: none;
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(24, 23, 23, 0.14);
    box-shadow: 0 10px 22px rgba(24, 23, 23, 0.08);
    z-index: 80;
  }

  .language-switch {
    display: none;
  }

  .language-switch__button {
    min-width: 42px;
    padding: 9px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
    border: 1px solid rgba(24, 23, 23, 0.14);
    background: rgba(255, 255, 255, 0.92);
  }

  .mobile-toggle__bars,
  .mobile-toggle__bars::before,
  .mobile-toggle__bars::after {
    width: 20px;
  }

  .mobile-toggle__bars::before {
    top: -6px;
  }

  .mobile-toggle__bars::after {
    top: 6px;
  }

  .mobile-toggle__label {
    display: none;
  }

  .mobile-toggle__label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .mobile-nav__language .language-switch__button {
    min-width: 36px;
    padding: 8px 9px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .section {
    padding: 34px 0;
  }

  .section--tight,
  .instagram-strip {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .portfolio-intro {
    width: min(calc(100% - 36px), 1160px);
    padding: 28px 0 14px;
  }

  .title {
    font-size: clamp(29px, 11vw, 42px);
    line-height: 1.02;
  }

  .display {
    font-size: clamp(30px, 13.2vw, 58px);
    line-height: 0.98;
  }

  .display,
  .title {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  html[lang="nl"] .display {
    font-size: clamp(24px, 10.2vw, 42px);
  }

  .subtitle,
  .intro-copy,
  .contact-page__copy,
  .stack-list {
    font-size: 14px;
    max-width: 100%;
  }

  .intro-copy {
    margin-top: 14px;
  }

  .home-hero-panel {
    padding-top: 24px;
    padding-bottom: 18px;
    gap: 20px;
  }

  .home-hero-panel__intro,
  .home-story-panel__copy,
  .home-selection__header {
    padding-right: 0;
  }

  .home-hero-panel__media {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-hero-panel__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-story-panel {
    gap: 20px;
  }

  .home-story-panel__disciplines {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .home-story-panel__mosaic {
    gap: 10px;
  }

  .home-selection__header {
    margin-bottom: 20px;
  }

  .home-selection__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-hero-panel__actions,
  .home-signoff__actions {
    display: grid;
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .home-hero-panel__actions > *,
  .home-signoff__actions > * {
    width: 100%;
  }

  .home-hero__grid,
  .gallery-grid,
  .project-gallery,
  .instagram-strip__grid {
    columns: 2 148px;
    column-gap: 10px;
  }

  .home-focus {
    gap: 12px;
    padding: 16px 0 20px;
  }

  .home-focus__actions {
    display: grid;
    width: min(100%, 320px);
  }

  .home-focus__actions > * {
    width: 100%;
  }

  .home-signoff {
    max-width: 100%;
  }

  .home-signoff .title {
    max-width: 11ch;
  }

  .portfolio-intro .title {
    max-width: 12ch;
    font-size: clamp(26px, 8.8vw, 38px);
    text-wrap: balance;
  }

  .portfolio-intro {
    padding-top: 32px;
    padding-bottom: 10px;
  }

  .contact-page__hero .title {
    max-width: 12ch;
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .portfolio-intro .subtitle,
  .portfolio-intro .intro-copy {
    max-width: none;
  }

  .contact-page__copy {
    width: 100%;
    max-width: 34ch;
    margin: 0;
    font-size: 14px;
    line-height: 1.66;
    padding-right: 0;
  }

  .contact-page__hero .form-note {
    max-width: 34ch;
    margin-inline: auto;
  }

  .stack-list,
  .stack-list p,
  .portfolio-intro .subtitle,
  .portfolio-intro .intro-copy {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .portfolio-grid {
    gap: 24px;
  }

  .portfolio-card__content {
    padding-top: 18px;
  }

  .portfolio-card__title,
  .project-section__title {
    font-size: 26px;
  }

  .project-sections {
    gap: 20px;
  }

  .project-section__title {
    margin-bottom: 6px;
  }

  .contact-page {
    padding-top: 8px;
  }

  .contact-page__hero {
    gap: 10px;
    justify-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .contact-page__split {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
  }

  .contact-page__split > [data-contact-card] {
    order: 1;
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .contact-page__split .contact-banner__image {
    order: 2;
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .contact-page__split .contact-banner__image img {
    aspect-ratio: 4 / 4.9;
  }

  .contact-card {
    padding: 28px 24px 24px;
  }

  .contact-card__title {
    font-size: clamp(30px, 8vw, 40px);
    max-width: none;
  }

  .contact-card__copy,
  .contact-card__meta {
    max-width: none;
  }

  .lead-split {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 8px;
  }

  .lead-split__visual {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .lead-split .eyebrow,
  .lead-split .title {
    text-align: center;
  }

  .lead-split .title {
    max-width: 13ch;
    margin-inline: auto;
  }

  .lead-split .title span {
    white-space: normal;
  }

  .stack-list {
    max-width: 100%;
    gap: 14px;
    font-size: 14px;
  }

  .about-actions {
    justify-content: center;
    margin-top: 16px;
  }

  .section--category-intro {
    padding-top: 22px;
  }

  .project-sections {
    gap: 18px;
  }

  .project-gallery--compact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field textarea {
    min-height: 150px;
  }

  .instagram-strip__header,
  .footer-meta {
    flex-direction: column;
  }

  .instagram-strip__header {
    align-items: flex-end;
  }

  .site-footer__brand {
    gap: 12px;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-meta {
    width: 100%;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    line-height: 1.4;
  }

  .terms-content {
    width: min(calc(100% - 28px), 980px);
  }

  .terms-section h2,
  .terms-section h3 {
    font-size: 28px;
  }

  .mobile-nav {
    padding: 18px 24px 26px;
  }

  .contact-card {
    padding: 22px 20px;
  }

  .contact-card__actions {
    display: grid;
  }

  .contact-card__actions > * {
    width: 100%;
  }

  .site-footer {
    margin-top: 40px;
  }

  .site-footer__inner {
    padding: 20px 0 22px;
    gap: 12px;
  }

.home-hero__grid .gallery-item:nth-child(4n + 2),
.home-hero__grid .gallery-item:nth-child(4n + 4) {
    margin-top: 0;
  }
}

.home-story-panel,
.home-trusted {
  display: none;
}

.home-hero-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 40px;
  padding-top: 26px;
  padding-bottom: 12px;
}

.home-hero-panel__intro {
  max-width: 500px;
  padding-bottom: 0;
}

.home-hero-panel .display {
  font-size: clamp(60px, 6.4vw, 96px);
  max-width: 6ch;
}

html[lang="nl"] .home-hero-panel .display {
  font-size: clamp(54px, 5.6vw, 84px);
}

.home-hero-panel__primary-image {
  width: 100%;
  transform-origin: center top;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.home-hero-panel__media {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.38fr);
  gap: 16px;
  align-items: end;
}

.home-hero-panel__primary,
.home-hero-panel__supporting {
  overflow: hidden;
  background: var(--surface);
}

.home-hero-panel__primary img {
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
}

.home-hero-panel__stack {
  align-content: end;
}

.home-hero-panel__supporting img {
  aspect-ratio: 4 / 5.75;
  object-fit: cover;
}

.home-selection-panel {
  padding-top: 8px;
}

.home-selection__header {
  gap: 4px;
  max-width: 580px;
  margin-bottom: 24px;
}

.home-selection__grid {
  gap: 24px 18px;
}

.home-selection__footer {
  margin-top: 22px;
}

.home-hero-panel__actions {
  justify-content: flex-start;
}

.portfolio-card--home .portfolio-card__media {
  aspect-ratio: 4 / 5.2;
  background: var(--surface);
}

.portfolio-card--home .portfolio-card__media img {
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card--home .portfolio-card__content {
  gap: 6px;
  padding: 16px 0 0;
}

.portfolio-card--home .portfolio-card__title {
  font-size: clamp(28px, 3.4vw, 40px);
}

.portfolio-card--home .portfolio-card__meta {
  letter-spacing: 0.16em;
}

.home-signoff-shell {
  padding-top: 18px;
  padding-bottom: 6px;
}

.home-signoff {
  max-width: 620px;
}

.home-signoff::before {
  content: none;
}

.home-signoff .title {
  margin-bottom: 16px;
  max-width: 13ch;
}

.home-signoff .intro-copy {
  max-width: 540px;
}

body.page-home .main {
  padding-bottom: 0;
}

body.page-home .site-header {
  border-bottom-color: rgba(24, 23, 23, 0.1);
  background: rgba(251, 250, 248, 0.96);
}

body.page-home .home-hero-panel {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
}

body.page-home .home-editorial {
  position: relative;
  min-height: 0;
  display: block;
  overflow: visible;
  background: #fbfaf8;
}

body.page-home .home-mobile-hero {
  display: none;
}

body.page-home .home-editorial__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: clamp(76px, 6vw, 104px) 26px clamp(28px, 3vw, 48px) clamp(74px, 6.1vw, 100px);
  max-width: 780px;
  width: 53%;
  pointer-events: none;
}

body.page-home .home-editorial__copy a,
body.page-home .home-editorial__copy button {
  pointer-events: auto;
}

body.page-home .home-editorial__eyebrow {
  margin-bottom: 34px;
  color: #6d6661;
}

body.page-home .home-editorial__title {
  max-width: 6.2ch;
  font-size: clamp(78px, 6.95vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #161312;
}

body.page-home .home-editorial__title span {
  display: inline-block;
  min-width: 100%;
  white-space: nowrap;
}

body.page-home .home-editorial__intro {
  max-width: 545px;
  margin-top: 34px;
  font-size: clamp(18px, 1.24vw, 19px);
  line-height: 1.9;
  color: #66605b;
}

body.page-home .home-editorial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

body.page-home .home-editorial__actions .button {
  min-height: 56px;
  padding-inline: 28px;
}

body.page-home .home-editorial__actions .button--ghost {
  width: 420px;
  justify-content: center;
  text-align: center;
}

body.page-home .home-editorial__visual {
  --hero-image-scale: 1;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
  display: block;
  touch-action: auto;
  cursor: default;
  z-index: 1;
}

body.page-home .home-selection-panel {
  display: none;
}

body.page-home .site-footer {
  position: relative;
  z-index: 1;
}

body.page-home .home-editorial__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

body.page-home .home-editorial__visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

body.page-home .home-editorial__image {
  position: absolute;
  right: 0;
  bottom: -34px;
  top: auto;
  left: auto;
  z-index: 1;
  width: clamp(620px, 54vw, 980px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  translate: var(--hero-image-x) var(--hero-image-y);
  scale: var(--hero-image-scale);
  transform-origin: right bottom;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

body.page-home .home-mobile-hero__title span {
  display: inline-block;
  min-width: 100%;
  white-space: nowrap;
}

body.page-home .home-editorial__visual.is-dragging {
  cursor: default;
}

body.page-home .home-editorial__visual.is-locked {
  cursor: default;
}

body.page-home .home-editorial__editor {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(280px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(22, 19, 18, 0.14);
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(22, 19, 18, 0.14);
  text-align: left;
  touch-action: auto;
}

body.page-home .home-editorial__editor.is-collapsed {
  width: auto;
}

body.page-home .home-editorial__editor.is-locked {
  border-color: rgba(22, 19, 18, 0.22);
}

body.page-home .home-editorial__editor-toggle,
body.page-home .home-editorial__editor-actions .button {
  appearance: none;
  border: 1px solid rgba(22, 19, 18, 0.12);
  background: #fff;
  color: #161312;
  font: inherit;
}

body.page-home .home-editorial__editor-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}

body.page-home .home-editorial__editor-panel {
  display: grid;
  gap: 12px;
}

body.page-home .home-editorial__editor-panel[hidden] {
  display: none !important;
}

body.page-home .home-editorial__editor-hint {
  margin: 0;
  color: #5f5954;
  font-size: 13px;
  line-height: 1.6;
}

body.page-home .home-editorial__editor-field {
  display: grid;
  gap: 8px;
  color: #161312;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-home .home-editorial__editor-field input[type="range"] {
  width: 100%;
  accent-color: #161312;
}

body.page-home .home-editorial__editor-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-home .home-editorial__editor-actions .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-home .home-editorial__editor-readout {
  margin-left: auto;
  color: #161312;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-home .home-editorial__editor-note {
  margin: 0;
  color: #5f5954;
  font-size: 12px;
  line-height: 1.5;
}

body.page-home .home-editorial__editor-test-status {
  margin: 0;
  color: #161312;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  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);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) {
  .portfolio-card--home:hover .portfolio-card__media img,
  .portfolio-card--home:focus-visible .portfolio-card__media img {
    transform: scale(1.025);
  }
}

@media (max-width: 1080px) {
  body.page-home .home-editorial__copy {
    width: 51%;
    padding-left: clamp(40px, 4.8vw, 72px);
    padding-right: 24px;
  }

  body.page-home .home-editorial__visual {
    width: 100%;
  }

  body.page-home .home-editorial__title {
    font-size: clamp(68px, 6.4vw, 90px);
  }

  .home-hero-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero-panel__intro {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(251, 250, 248, 0.98);
  }

  body.page-home .home-hero-panel {
    display: block;
  }

  body.page-home .home-hero-panel {
    padding-top: 0;
  }

  body.page-home .home-editorial {
    display: none;
  }

  body.page-home .home-mobile-hero {
    display: block;
    padding: 22px 0 28px;
    background: #fbfaf8;
  }

  body.page-home .home-mobile-hero__copy {
    width: calc(100% - 46px);
    margin: 0 auto;
  }

  body.page-home .home-mobile-hero__eyebrow {
    margin-bottom: 20px;
    color: #6d6661;
  }

  body.page-home .home-mobile-hero__title {
    max-width: 5.8ch;
    font-size: clamp(64px, 16.4vw, 78px);
    line-height: 0.9;
    letter-spacing: -0.055em;
    color: #161312;
  }

  html[lang="nl"] body.page-home .home-mobile-hero__title {
    max-width: 6.15ch;
  }

  body.page-home .home-mobile-hero__intro {
    max-width: 14em;
    margin-top: 24px;
    color: #66605b;
    font-size: 16px;
    line-height: 1.72;
  }

  body.page-home .home-mobile-hero__actions {
    display: grid;
    gap: 16px;
    margin-top: 26px;
  }

  body.page-home .home-mobile-hero__actions .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 24px;
    justify-content: center;
  }

  body.page-home .home-mobile-hero__media {
    width: calc(100% - 46px);
    margin: 28px auto 0;
    position: relative;
    aspect-ratio: 1 / 1.06;
    overflow: hidden;
    border-bottom: 1px solid rgba(24, 23, 23, 0.1);
  }

  body.page-home .home-mobile-hero__image {
    position: absolute;
    inset: 0;
    width: 126%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    display: block;
  }

  body.page-home .home-story-panel,
  body.page-home .home-selection-panel,
  body.page-home .home-trusted,
  body.page-home .home-signoff-section {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header__inner,
  .section,
  .section--narrow,
  .instagram-strip,
  .contact-banner,
  .portfolio-intro,
  .terms-content,
  .lead-split {
    width: calc(100% - 24px);
  }

  .site-header__inner {
    width: 100%;
    min-height: 92px;
    padding: 0 14px;
  }

  .site-header__tools {
    right: 14px;
  }

  body.nav-open .mobile-nav {
    padding: 8px 20px 24px;
  }

  body.page-home .home-mobile-hero__copy,
  body.page-home .home-mobile-hero__media {
    width: calc(100% - 34px);
  }

  body.page-home .home-mobile-hero__title {
    font-size: clamp(58px, 15.9vw, 72px);
  }

  body.page-home .home-mobile-hero__intro {
    max-width: 14em;
    font-size: 15px;
    line-height: 1.68;
  }

  body.page-home .home-mobile-hero__actions {
    gap: 14px;
    margin-top: 24px;
  }

  body.page-home .home-mobile-hero__actions .button {
    min-height: 54px;
    font-size: 11px;
  }

  body.page-home .home-mobile-hero__media {
    margin-top: 24px;
  }

  .brand__name {
    font-size: 13px;
    letter-spacing: 0.3em;
  }

  .mobile-toggle {
    min-width: 50px;
    width: 50px;
    height: 50px;
  }

  .mobile-toggle__bars,
  .mobile-toggle__bars::before,
  .mobile-toggle__bars::after {
    width: 20px;
  }

  .mobile-nav__link,
  .mobile-nav__button {
    padding: 17px 0;
    font-size: 13px;
    letter-spacing: 0.18em;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-hero-panel__primary-image,
  .portfolio-card--home .portfolio-card__media img {
    transition: none;
    transform: none !important;
  }
}
