:root {
  --paper: #f4efe5;
  --paper-soft: #fbf8ef;
  --canvas: #e8dfcf;
  --charcoal: #292723;
  --ash: #6d675e;
  --line: rgba(41, 39, 35, 0.18);
  --red: #ad4526;
  --red-dark: #80331f;
  --blue: #506f83;
  --green: #7b8569;
  --ochre: #c6923f;
  --shadow: 0 30px 90px rgba(41, 39, 35, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Brush Script MT", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(41, 39, 35, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(41, 39, 35, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(173, 69, 38, 0.08), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(80, 111, 131, 0.12), transparent 28rem),
    var(--paper);
  background-size: 8px 8px, 13px 13px, auto, auto, auto;
  font-family: var(--serif);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(107deg, transparent 0 36%, rgba(41, 39, 35, 0.08) 36.2%, transparent 36.6%),
    linear-gradient(175deg, transparent 0 72%, rgba(173, 69, 38, 0.08) 72.2%, transparent 72.7%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg"),
    linear-gradient(112deg, transparent 0 48%, rgba(41, 39, 35, 0.16) 48.1%, transparent 48.4%);
  background-position: 8% 92%, center;
  background-size: 520px auto, auto;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  color: var(--paper-soft);
  background: var(--charcoal);
  font-family: var(--sans);
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 0%;
  height: 2px;
  background: var(--red);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(41, 39, 35, 0.14);
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.94), rgba(244, 239, 229, 0.82)),
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg") 86% 64% / 380px auto no-repeat;
  backdrop-filter: blur(16px);
}

.signature {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--script);
  font-size: clamp(28px, 4.8vw, 42px);
  line-height: 1;
  text-decoration: none;
  transform: rotate(-3deg);
}

.palette-mark {
  width: clamp(28px, 5vw, 36px);
  height: clamp(28px, 5vw, 36px);
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(41, 39, 35, 0.11);
  transform: rotate(7deg);
}

.site-nav {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 18px 24px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 229, 0.98);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
}

.site-nav a {
  padding: 14px 0;
  font-size: 19px;
  text-decoration: none;
}

.nav-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--charcoal);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: -7px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 239, 229, 0.3), rgba(244, 239, 229, 0.56)),
    url("assets/works/henk-van-dam-schilderij-alkmaardermeer.jpg") center 20% / cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(244, 239, 229, 0.02), rgba(244, 239, 229, 0.94) 30%, rgba(244, 239, 229, 0.72)),
    linear-gradient(90deg, rgba(244, 239, 229, 0.5), transparent 58%);
  mix-blend-mode: normal;
}

.hero-art {
  position: relative;
  z-index: 1;
  order: -1;
  min-height: 29svh;
  overflow: hidden;
  background: var(--canvas);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 29svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.97);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.hero-copy,
.welcome,
.themes,
.process,
.life,
.exhibition,
.contact {
  padding-right: clamp(22px, 6vw, 78px);
  padding-left: clamp(22px, 6vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 42px;
}

.paint-field,
.charcoal-line,
.invitation-mark {
  position: absolute;
  pointer-events: none;
}

.paint-field {
  z-index: 1;
  filter: blur(0.2px);
  mix-blend-mode: multiply;
}

.paint-field-blue {
  right: -12vw;
  bottom: 8%;
  width: 54vw;
  height: 30vh;
  background: rgba(80, 111, 131, 0.16);
  transform: rotate(-5deg);
  clip-path: polygon(7% 16%, 100% 0, 92% 84%, 0 100%);
}

.paint-field-red {
  right: 14%;
  bottom: 21%;
  width: 27vw;
  height: 22px;
  background: rgba(173, 69, 38, 0.42);
  transform: rotate(-2deg);
}

.charcoal-line {
  z-index: 1;
  width: 1px;
  min-height: 240px;
  background: linear-gradient(transparent, rgba(41, 39, 35, 0.26), transparent);
  transform-origin: center;
}

.charcoal-line-hero {
  right: 22%;
  top: 10%;
  transform: rotate(12deg);
}

.curator-line,
.section-label {
  margin: 0;
  color: var(--red);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.5;
  text-transform: uppercase;
}

.curator-line {
  color: var(--red-dark);
  letter-spacing: 0.18em;
  text-transform: none;
}

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

h1 {
  margin-top: 30px;
  font-size: clamp(66px, 18vw, 112px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
}

blockquote {
  position: relative;
  max-width: 560px;
  margin-top: 26px;
  padding-left: 24px;
  font-size: clamp(26px, 8vw, 48px);
  font-style: italic;
  line-height: 1.18;
}

blockquote::before,
blockquote::after {
  color: var(--red);
  font-size: 44px;
  font-style: normal;
  line-height: 1;
}

blockquote::before {
  position: absolute;
  left: 0;
  content: "“";
}

blockquote::after {
  display: inline-block;
  margin-left: 8px;
  content: "”";
}

.hero-intro {
  max-width: 520px;
  margin-top: 22px;
  color: var(--ash);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(41, 39, 35, 0.12);
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    linear-gradient(112deg, transparent 0 45%, rgba(251, 248, 239, 0.24) 46%, transparent 55%),
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg") center / 340px auto;
  mix-blend-mode: soft-light;
  transition: opacity 180ms ease;
}

.button:hover::before {
  opacity: 0.75;
}

.button::after {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 12px;
  margin-left: 14px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 45%, 72% 45%, 54% 15%, 64% 0, 100% 50%, 64% 100%, 54% 85%, 72% 55%, 0 55%);
}

.button-primary {
  border-color: var(--red);
  color: var(--paper-soft);
  background: var(--red);
}

.button-secondary {
  color: var(--red-dark);
  background: rgba(251, 248, 239, 0.48);
}

.button span,
.button {
  z-index: 0;
}

.welcome {
  position: relative;
  display: grid;
  gap: 30px;
  padding-top: clamp(70px, 10vw, 130px);
  padding-bottom: clamp(56px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.charcoal-line-welcome {
  right: 12%;
  top: 10%;
  transform: rotate(71deg);
}

h2 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(36px, 10vw, 74px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h2::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 24px;
  content: "";
  background: var(--red);
}

.welcome-copy p:not(.section-label),
.section-intro p:not(.section-label),
.process-panel p,
.life-card p,
.contact p,
.exhibition-lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ash);
  font-size: 18px;
  line-height: 1.72;
}

.welcome-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 70px rgba(41, 39, 35, 0.11);
}

.welcome-art::after,
.exhibition-art::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(198, 146, 63, 0.42) 74.5%, rgba(198, 146, 63, 0.42) 82%, transparent 82.5%),
    linear-gradient(0deg, rgba(41, 39, 35, 0.11), transparent 18%);
  mix-blend-mode: multiply;
}

.welcome-art img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.themes {
  position: relative;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(60px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 239, 0.38);
  overflow: hidden;
}

.themes::before {
  position: absolute;
  right: 4vw;
  bottom: 7%;
  width: clamp(120px, 22vw, 320px);
  height: clamp(120px, 22vw, 320px);
  pointer-events: none;
  content: "";
  opacity: 0.28;
  border: 1px solid rgba(41, 39, 35, 0.28);
  border-radius: 47% 53% 44% 56%;
  transform: rotate(-19deg);
}

.section-intro {
  max-width: 820px;
}

.theme-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.theme-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 200ms ease;
}

.theme-item > div {
  min-width: 0;
}

.theme-item::after {
  display: none;
}

.theme-item:hover {
  transform: translateX(6px);
}

.process-fragment {
  display: block;
  box-shadow: inset 0 0 0 1px rgba(41, 39, 35, 0.08);
}

.theme-image {
  display: block;
  width: 92px;
  aspect-ratio: 1.18;
  height: auto;
  object-fit: contain;
  background: rgba(232, 223, 207, 0.52);
  box-shadow: inset 0 0 0 1px rgba(41, 39, 35, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.theme-item:hover .theme-image {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 18px 46px rgba(41, 39, 35, 0.14);
  filter: saturate(1.05);
}

h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.theme-item p {
  margin-top: 7px;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.45;
}

.process {
  position: relative;
  display: grid;
  gap: 28px;
  padding-top: clamp(66px, 9vw, 120px);
  padding-bottom: clamp(66px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.charcoal-line-process {
  left: 50%;
  top: 4%;
  min-height: 360px;
  transform: rotate(-74deg);
}

.process-panel {
  position: relative;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(rgba(251, 248, 239, 0.82), rgba(251, 248, 239, 0.68)),
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg") 110% 20% / 430px auto no-repeat;
  box-shadow: var(--shadow);
}

.process-panel::before {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 110px;
  height: 16px;
  content: "";
  background: rgba(80, 111, 131, 0.28);
  transform: rotate(-7deg);
}

.process-fragment {
  width: 100%;
  min-height: 320px;
  height: 320px;
  object-fit: cover;
  transform: rotate(2.2deg);
  box-shadow: 0 24px 80px rgba(41, 39, 35, 0.13);
}

.life {
  display: grid;
  gap: 30px;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.life-card {
  position: relative;
  z-index: 1;
}

.quote-wall {
  aspect-ratio: 1024 / 771;
  width: 100%;
  max-width: 680px;
  min-height: 0;
  margin: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(41, 39, 35, 0.12);
  background: var(--paper);
  transform: rotate(-1deg);
  box-shadow: 0 24px 80px rgba(41, 39, 35, 0.12);
}

.quote-wall img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition {
  position: relative;
  display: grid;
  gap: 30px;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  overflow: hidden;
  background:
    linear-gradient(106deg, rgba(128, 51, 31, 0.96) 0 48%, rgba(128, 51, 31, 0.72) 58%, rgba(80, 111, 131, 0.48)),
    url("assets/works/henk-van-dam-schilderij-alkmaardermeer.jpg") center/cover;
}

.exhibition::before {
  position: absolute;
  inset: 12% -8% auto auto;
  width: 58%;
  height: 74%;
  content: "";
  opacity: 0.28;
  background: rgba(251, 248, 239, 0.42);
  transform: rotate(-5deg);
  clip-path: polygon(9% 0, 100% 7%, 92% 92%, 0 100%);
}

.invitation-mark {
  right: clamp(22px, 7vw, 90px);
  top: 22px;
  z-index: 1;
  color: rgba(251, 248, 239, 0.16);
  font-family: var(--script);
  font-size: clamp(54px, 12vw, 150px);
  transform: rotate(-8deg);
}

.exhibition > div,
.exhibition-art {
  position: relative;
  z-index: 1;
}

.exhibition .section-label {
  color: #ffd7c8;
}

.exhibition h2::after {
  background: var(--paper-soft);
}

.exhibition-lead {
  color: rgba(251, 248, 239, 0.84);
}

.exhibition-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.exhibition-list li {
  display: flex;
  gap: 10px;
  color: rgba(251, 248, 239, 0.9);
  line-height: 1.4;
}

.exhibition-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.exhibition-art {
  min-height: 260px;
  overflow: hidden;
  background: var(--canvas);
  transform: rotate(1.3deg);
  box-shadow: 0 30px 80px rgba(41, 39, 35, 0.18);
}

.exhibition-art img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.88);
}

.contact {
  position: relative;
  display: grid;
  gap: 34px;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 54px;
  overflow: hidden;
}

.contact::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52vw, 560px);
  height: 42%;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background: url("assets/works/henk-van-dam-schilderij-landschap-noord-holland.jpg") center / cover;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, transparent, #000 28%);
}

address {
  display: grid;
  gap: 12px;
  color: var(--ash);
  font-style: normal;
  line-height: 1.5;
}

address a {
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px clamp(22px, 6vw, 78px) 28px;
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-size: 13px;
}

.site-footer .signature {
  color: var(--charcoal);
  font-size: 28px;
}

.back-top {
  position: fixed;
  right: clamp(16px, 3.8vw, 34px);
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 100;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(41, 39, 35, 0.2);
  border-radius: 50%;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(251, 248, 239, 0.97), rgba(244, 239, 229, 0.97)),
    radial-gradient(circle at 68% 24%, rgba(198, 146, 63, 0.28), transparent 34px);
  box-shadow: 0 18px 54px rgba(41, 39, 35, 0.22);
  opacity: 0.9;
  pointer-events: auto;
  text-decoration: none;
  transform: translateY(0) rotate(-3deg);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(-3deg);
}

.back-top:hover,
.back-top:focus-visible {
  box-shadow: 0 20px 64px rgba(41, 39, 35, 0.2);
  transform: translateY(-3px) rotate(1deg);
}

.back-top svg {
  width: 32px;
  height: 48px;
  overflow: visible;
}

.brush-arrow,
.brush-ferrule-line,
.brush-handle,
.brush-handle-light {
  fill: none;
  stroke: var(--charcoal);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brush-bristles {
  fill: var(--blue);
  stroke: var(--charcoal);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

.brush-ferrule {
  fill: var(--ochre);
  stroke: var(--charcoal);
  stroke-width: 2;
  stroke-linejoin: round;
}

.brush-ferrule-line {
  opacity: 0.58;
  stroke-width: 1.6;
}

.brush-handle {
  stroke: var(--red-dark);
  stroke-width: 6;
}

.brush-handle-light {
  opacity: 0.42;
  stroke: var(--paper-soft);
  stroke-width: 1.6;
}

.brush-arrow {
  stroke: var(--paper-soft);
  stroke-width: 2.8;
}

.back-top::after {
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 18px;
  height: 7px;
  content: "";
  opacity: 0.65;
  background: var(--red);
  border-radius: 999px 45% 55% 999px;
  transform: rotate(-18deg) scaleX(0.65);
  transform-origin: right;
  transition: transform 180ms ease, opacity 180ms ease;
}

.back-top:hover::after,
.back-top:focus-visible::after {
  opacity: 0.86;
  transform: rotate(-18deg) scaleX(1);
}

.site-footer a:not(.back-top) {
  color: var(--charcoal);
  text-underline-offset: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 39, 35, 0.92);
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--paper-soft);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px 10px;
  transition: opacity 150ms ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 4vw, 40px);
  bottom: clamp(14px, 4vw, 34px);
  left: clamp(14px, 4vw, 40px);
  z-index: 40;
  display: grid;
  gap: 16px;
  max-width: 780px;
  padding: 18px;
  border: 1px solid rgba(41, 39, 35, 0.18);
  color: var(--charcoal);
  background:
    linear-gradient(rgba(251, 248, 239, 0.94), rgba(244, 239, 229, 0.94)),
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg") 90% 45% / 360px auto no-repeat;
  box-shadow: 0 20px 70px rgba(41, 39, 35, 0.16);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.55;
}

.cookie-notice a {
  color: var(--red-dark);
  text-underline-offset: 4px;
}

.cookie-button {
  min-height: 46px;
  justify-self: start;
  padding: 0 20px;
}

.privacy-main {
  padding: clamp(46px, 8vw, 110px) clamp(22px, 6vw, 78px);
}

.privacy-article {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(rgba(251, 248, 239, 0.9), rgba(251, 248, 239, 0.78)),
    url("assets/works/henk-van-dam-werkwijze-acryl-houtskool.jpg") 106% 0 / 430px auto no-repeat;
  box-shadow: var(--shadow);
}

.privacy-article h1 {
  margin: 0;
  font-size: clamp(46px, 10vw, 88px);
}

.privacy-article h2 {
  margin-top: 42px;
  font-size: clamp(28px, 5vw, 44px);
}

.privacy-article p,
.privacy-article li {
  color: var(--ash);
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.privacy-article p {
  margin-top: 22px;
}

.privacy-article ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-article li {
  padding-left: 18px;
  border-left: 2px solid rgba(173, 69, 38, 0.35);
}

.privacy-article a {
  color: var(--red-dark);
  text-underline-offset: 4px;
}

.exposition-article {
  max-width: 980px;
}

.exposition-image {
  margin: clamp(24px, 5vw, 48px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(41, 39, 35, 0.14);
  background: var(--canvas);
}

.exposition-image img {
  display: block;
  width: 100%;
  height: auto;
}

.press-copy {
  margin-top: 18px;
  padding: clamp(18px, 4vw, 30px);
  border-left: 3px solid rgba(173, 69, 38, 0.45);
  background: rgba(251, 248, 239, 0.68);
}

.press-copy p {
  margin-top: 0;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
    min-height: min(840px, calc(100vh - 72px));
    padding: clamp(22px, 3vw, 44px);
    background:
      linear-gradient(90deg, rgba(244, 239, 229, 0.86) 0 46%, rgba(244, 239, 229, 0.44) 62%, rgba(244, 239, 229, 0.72)),
      url("assets/works/henk-van-dam-schilderij-alkmaardermeer.jpg") center / cover;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(244, 239, 229, 0.08), rgba(244, 239, 229, 0.24) 55%, rgba(244, 239, 229, 0.58)),
      linear-gradient(180deg, transparent 0 78%, rgba(244, 239, 229, 0.72));
  }

  .hero-art {
    order: 2;
    min-height: auto;
    align-self: center;
    background: transparent;
    transform: translateX(2vw) rotate(-1deg);
  }

  .hero-art img {
    min-height: 500px;
    object-position: center;
    mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 92%, transparent 100%);
  }

  .hero-copy {
    order: 1;
    min-height: auto;
    padding: clamp(26px, 3.4vw, 54px);
  }

  h1 {
    font-size: clamp(86px, 9vw, 132px);
  }

  .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .welcome {
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
  }

  .welcome-art {
    margin-right: -2vw;
  }

  .themes {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(460px, 1.4fr);
    gap: clamp(40px, 7vw, 110px);
  }

  .section-intro {
    align-self: start;
  }

  .theme-list {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    align-items: stretch;
    gap: 28px;
    margin-top: 34px;
    border-top: 0;
  }

  .theme-item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 168px 1fr;
    gap: 16px;
    min-height: 100%;
    padding: 14px;
    border: 1px solid rgba(41, 39, 35, 0.14);
    background: rgba(251, 248, 239, 0.58);
    transform: none;
  }

  .theme-item::after {
    display: none;
  }

  .theme-image {
    width: 100%;
    height: 168px;
    margin-bottom: 0;
    aspect-ratio: auto;
  }

  .theme-item:nth-child(2n) {
    transform: none;
  }

  .theme-item:nth-child(3n) .theme-image {
    aspect-ratio: auto;
  }

  .theme-item:nth-child(4n) {
    transform: none;
  }

  .theme-item:nth-child(2n):hover,
  .theme-item:nth-child(4n):hover {
    transform: translateY(-3px);
  }

  .process {
    grid-template-columns: minmax(360px, 0.95fr) minmax(300px, 0.72fr);
    align-items: center;
  }

  .process-fragment {
    margin-left: -4vw;
  }

  .life {
    grid-template-columns: minmax(340px, 0.72fr) minmax(420px, 1fr);
    align-items: center;
  }

  .quote-wall {
    min-height: 0;
  }

  .exhibition {
    grid-template-columns: minmax(340px, 0.75fr) minmax(420px, 1.1fr);
    align-items: center;
  }

  .contact {
    grid-template-columns: minmax(360px, 0.85fr) minmax(260px, 0.5fr);
    align-items: end;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto auto;
    align-items: end;
  }

  .cookie-notice {
    left: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 22px;
  }
}

@media (max-width: 374px) {
  .hero-copy,
  .welcome,
  .themes,
  .process,
  .life,
  .exhibition,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .curator-line,
  .section-label {
    letter-spacing: 0.28em;
  }

  h1 {
    font-size: clamp(58px, 17vw, 86px);
  }

  blockquote {
    font-size: 25px;
  }

  .theme-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .theme-item::after {
    display: none;
  }

  .theme-image {
    width: 78px;
  }
}

@media (max-width: 760px) {
  .theme-list {
    gap: 12px;
    border-top: 0;
  }

  .theme-item {
    min-height: 116px;
    padding: 14px;
    border: 1px solid rgba(41, 39, 35, 0.14);
    background: rgba(251, 248, 239, 0.58);
  }

  .theme-image {
    width: 86px;
    height: 86px;
    aspect-ratio: auto;
    object-fit: contain;
    background: var(--canvas);
  }

  .theme-item p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .paint-field-red {
    display: none;
  }

  .back-top {
    right: 18px;
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 16px);
    width: 64px;
    height: 64px;
    opacity: 1;
    transform: translateY(0) rotate(-3deg);
    display: grid;
  }

  .back-top:not(.is-visible) {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: clamp(28px, 4vw, 64px);
    padding: 0;
    border-bottom: 0;
    background: transparent;
    transform: none;
  }

  .site-nav a {
    position: relative;
    padding: 0;
    font-size: 16px;
  }

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

  .site-nav a:hover::after {
    transform: scaleX(1);
  }

}

@media (min-width: 1200px) {
  .theme-list {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
