/* ============================================================
   look at lou — photographer of love
   warm editorial one-pager · Cormorant Garamond + Manrope
   ============================================================ */

:root {
  --cream: #f3ede2;
  --cream-soft: #eae2d3;
  --ink: #26201a;
  --ink-soft: #4d4238;
  --rust: #b0532f;
  --rust-text: #9c4826;
  --rust-soft: #c2653d;
  --amber: #d9a05b;
  --dark: #1c1610;
  --dark-2: #241d16;
  --line: rgba(38, 32, 26, .16);
  --line-light: rgba(243, 237, 226, .18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, 'Helvetica Neue', sans-serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
[tabindex="-1"]:focus { outline: none; }
.gallery :focus-visible,
.lightbox :focus-visible,
.menu :focus-visible,
.nav :focus-visible,
.footer :focus-visible {
  outline-color: var(--amber);
}

.skip-link {
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 10001;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .08em;
  padding: .7em 1.2em;
  border-radius: 99px;
  transform: translateY(-300%);
}
.skip-link:focus-visible { transform: none; outline-color: var(--amber); }

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

html.has-cursor body,
html.has-cursor a,
html.has-cursor button { cursor: none; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--rust-text); color: var(--cream); }

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

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

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 6px; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.6%, -1%); }
  75% { transform: translate(-1%, -1.8%); }
  100% { transform: translate(0, 0); }
}

/* ---------- custom cursor (alleen zichtbaar wanneer JS hem activeert) ---------- */
.cursor { display: none; position: fixed; top: 0; left: 0; z-index: 10002; pointer-events: none; }
html.has-cursor .cursor { display: block; }
.cursor__dot,
.cursor__ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 7px; height: 7px;
  background: var(--rust);
  transition: opacity .25s;
}
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(176, 83, 47, .55);
  display: grid; place-items: center;
  transition: width .35s var(--ease), height .35s var(--ease),
              background-color .35s, border-color .35s;
}
.cursor__label {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity .2s;
}
.cursor--link .cursor__ring { width: 56px; height: 56px; background: rgba(176, 83, 47, .12); }
.cursor--view .cursor__ring,
.cursor--drag .cursor__ring {
  width: 84px; height: 84px;
  background: rgba(176, 83, 47, .92);
  border-color: transparent;
}
.cursor--view .cursor__label,
.cursor--drag .cursor__label { opacity: 1; }
.cursor--hidden .cursor__dot,
.cursor--hidden .cursor__ring { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- preloader ---------- */
html:not(.js) .preloader { display: none; }
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--dark);
  color: var(--cream);
  transition: transform 1s var(--ease);
}
.preloader.is-done { transform: translateY(-101%); }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: .02em;
  display: flex; gap: .35em; justify-content: center;
}
.preloader__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.6em) rotate(2deg);
  animation: word-in .9s var(--ease) forwards;
}
.preloader__word:nth-child(2) { animation-delay: .15s; }
.preloader__word:nth-child(3) { animation-delay: .3s; }
.preloader__word--it { font-style: italic; color: var(--amber); }
@keyframes word-in { to { opacity: 1; transform: none; } }
.preloader__sub {
  margin-top: .8rem;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, .55);
  opacity: 0;
  animation: word-in .8s .55s var(--ease) forwards;
}
.preloader__count {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(243, 237, 226, .35);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  color: var(--cream);
  transition: background-color .35s;
}
/* zonder JS komt de donkere scroll-balk nooit — geef de nav dan altijd een fond */
html:not(.js) .nav { background: rgba(28, 22, 16, .85); }
.nav__logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .02em;
}
.nav__logo span { font-style: italic; font-weight: 400; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: .55em 1.4em;
  transition: background-color .35s, color .35s;
}
.nav__cta:hover { background: var(--cream); color: var(--ink); }
.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 48px; height: 44px;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px;
  height: 1.5px; background: currentColor;
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.nav__burger span:first-child { top: 17px; }
.nav__burger span:last-child { top: 25px; }
.nav__burger.is-open span:first-child { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:last-child { top: 21px; transform: rotate(-45deg); }
/* voorbij de hero: vaste donkere balk (leesbaarheid boven lichte secties) */
.nav--scrolled {
  background: rgba(28, 22, 16, .92);
}

/* ---------- fullscreen menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 800;
  background: var(--dark);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease), visibility 0s linear .7s;
  visibility: hidden;
  overscroll-behavior: contain;
  overflow-y: auto;
}
@media (max-height: 620px) {
  .menu { justify-content: flex-start; padding-top: 5rem; }
  .menu__links a { font-size: clamp(1.5rem, 7vh, 2.6rem); }
  .menu__foot { margin-top: 1.5rem; }
}
.menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .7s var(--ease), visibility 0s;
}
.menu__links { display: flex; flex-direction: column; gap: .4rem; }
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(1em);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: .15s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .22s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .29s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .36s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .43s; }
.menu__links em {
  font-family: var(--sans);
  font-style: normal;
  font-size: .8rem;
  color: var(--amber);
  vertical-align: super;
  margin-right: .8em;
}
.menu__foot { margin-top: 3rem; font-size: .8rem; letter-spacing: .1em; color: var(--amber); }

/* ---------- shared type ---------- */
.label {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust-text);
  margin-bottom: 1.2rem;
}
.label--light { color: var(--amber); }

h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.02; }
h2 em { font-style: italic; color: var(--rust); }

/* line-reveal helpers — verbergende begintoestand alleen mét JS (html.js) */
.reveal-line { overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transition: transform 1s var(--ease);
}
html.js .reveal-line > span { transform: translateY(120%); }
html.js .reveal-line.in-view > span { transform: none; }

/* word-by-word reveal */
[data-words] .w {
  display: inline-block;
  transition: opacity .5s ease;
}
html.js [data-words] .w { opacity: .12; }
html.js [data-words] .w.in { opacity: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--cream);
}
.hero__media { position: absolute; inset: -8% 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 2.2s var(--ease);
}
html.js .hero__media img { transform: scale(1.12); }
body.is-ready .hero__media img { transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(28, 22, 16, .75) 0%, rgba(28, 22, 16, .32) 50%, rgba(28, 22, 16, .5) 100%);
}
.hero__content {
  padding: 0 var(--pad) clamp(4rem, 10vh, 7rem);
  width: 100%;
}
.hero__eyebrow {
  font-size: .78rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(28, 22, 16, .55);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(3.2rem, 11vw, 9.5rem);
  letter-spacing: -.01em;
  text-shadow: 0 2px 40px rgba(28, 22, 16, .45);
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span {
  display: block;
  transition: transform 1.2s var(--ease);
}
html.js .hero__line > span { transform: translateY(115%); }
html.js body.is-ready .hero__title .hero__line:nth-child(1) > span { transform: none; transition-delay: .15s; }
html.js body.is-ready .hero__title .hero__line:nth-child(2) > span { transform: none; transition-delay: .3s; }
.hero__line--it { font-style: italic; margin-left: clamp(1rem, 8vw, 8rem); }
.hero__meta {
  margin-top: 1.6rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, .8);
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(4rem, 10vh, 7rem);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.hero__scroll-line {
  width: 1px; height: 64px;
  background: rgba(243, 237, 226, .5);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--amber);
  animation: scroll-drip 1.8s var(--ease) infinite;
}
@keyframes scroll-drip { to { top: 100%; } }
.hero__scroll-txt {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, .7);
  writing-mode: vertical-rl;
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--cream);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__inner {
  display: flex; align-items: center; gap: 2.4rem;
  padding-right: 2.4rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  white-space: nowrap;
}
.marquee__inner .it { font-style: italic; color: var(--rust-text); }
.marquee__inner i { font-style: normal; font-size: .8em; color: var(--amber); }

/* ---------- manifest ---------- */
.manifest {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(6rem, 14vh, 11rem) var(--pad);
  align-items: center;
}
.manifest__statement {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.25;
}
.manifest__sign {
  margin-top: 2.4rem;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.manifest__sign em { font-family: var(--serif); font-size: 1.05em; }
.manifest__avatar {
  display: inline-block;
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: .7rem;
  border: 2px solid var(--amber);
}
.manifest__imgs { position: relative; aspect-ratio: 8 / 9; }
.manifest__img { position: absolute; overflow: hidden; border-radius: 2px; }
.manifest__img img { width: 100%; height: 100%; object-fit: cover; }
.manifest__img--a {
  width: 72%; aspect-ratio: 4 / 5;
  top: 0; right: 0;
}
.manifest__img--b {
  width: 52%; aspect-ratio: 4 / 3.4;
  bottom: 0; left: 0;
  box-shadow: 0 30px 60px -20px rgba(38, 32, 26, .35);
}

/* ---------- horizontal work section ---------- */
.hwrap { position: relative; background: var(--cream-soft); }
.hsticky {
  position: sticky; top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hhead {
  padding: clamp(1rem, 3vh, 2rem) var(--pad) 0;
  position: relative; z-index: 2;
}
.hhead__title { font-size: clamp(2.4rem, 6vw, 5rem); }
.htrack {
  display: flex; align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1.5rem, 4vh, 3rem) var(--pad);
  will-change: transform;
}
.hpanel {
  flex: 0 0 auto;
  width: min(clamp(280px, 32vw, 460px), 42vh);
  width: min(clamp(280px, 32vw, 460px), 42svh);
}
.hpanel--tall {
  width: min(clamp(240px, 26vw, 380px), 36vh);
  width: min(clamp(240px, 26vw, 380px), 36svh);
  margin-top: clamp(2rem, 6vh, 4rem);
}
.hpanel__imgwrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}
.hpanel__imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
html.js .hpanel__imgwrap img { transform: scale(1.15); }
html.js .hpanel.in-view .hpanel__imgwrap img { transform: scale(1); }
.hpanel figcaption {
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hpanel figcaption em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust-text);
  font-size: 1.2em;
  margin-right: .6em;
}
.hprogress {
  margin: 0 var(--pad);
  height: 1px;
  background: var(--line);
  position: relative; z-index: 2;
}
.hprogress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .15s linear;
}

/* ---------- services ---------- */
.services {
  padding: clamp(6rem, 14vh, 11rem) var(--pad);
  position: relative;
}
.services__title { font-size: clamp(2.4rem, 6vw, 5rem); margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.services__list { list-style: none; border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service a {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 4vh, 2.6rem) .2rem;
  transition: transform .45s var(--ease);
}
.service a:hover { transform: translateX(1.4rem); }
.service__num {
  font-size: .75rem;
  color: var(--rust-text);
  letter-spacing: .1em;
}
.service__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  transition: font-style 0s;
}
.service a:hover .service__name { font-style: italic; color: var(--rust); }
.service__desc {
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 40ch;
  justify-self: end;
}
.service__arrow {
  font-size: 1.4rem;
  color: var(--rust);
  transform: translateX(-8px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s;
}
.service a:hover .service__arrow,
.service a:focus-visible .service__arrow { transform: none; opacity: 1; }
.service__preview {
  position: fixed;
  z-index: 500;
  width: 250px; aspect-ratio: 4 / 5;
  pointer-events: none;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  transform: scale(.85) rotate(-3deg);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service__preview.is-on { opacity: 1; transform: scale(1) rotate(-2deg); }
.service__preview img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- gallery (dark) ---------- */
.gallery {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(6rem, 14vh, 11rem) var(--pad);
}
.gallery__head { margin-bottom: clamp(3rem, 7vh, 5rem); }
.gallery__title { font-size: clamp(3rem, 8vw, 7rem); line-height: 1.02; }
.gallery__title em { color: var(--amber); }
.gallery__title-line { display: block; }
.gallery__title-line--it { margin-left: clamp(1rem, 5vw, 4rem); }
.gallery__hint { margin-top: 1rem; font-size: .8rem; letter-spacing: .12em; color: rgba(243, 237, 226, .5); }
.gallery__grid {
  columns: 3;
  column-gap: clamp(1rem, 2.5vw, 2rem);
}
.gitem {
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
/* reveal via opacity/transform op de knop — clip-path op multicol-items is
   onbetrouwbaar in sommige engines (foto's bleven onzichtbaar) */
html.js .gitem .gitem__btn {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js .gitem.in-view .gitem__btn { opacity: 1; transform: none; }
.gitem__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.gitem__btn:focus-visible { outline-offset: -4px; }
.gitem img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform .9s var(--ease), filter .9s;
}
.gitem:hover img,
.gitem:focus-within img { transform: scale(1.07); }
.gitem::after {
  content: attr(data-caption);
  pointer-events: none;
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1rem .9rem;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(to top, rgba(28, 22, 16, .8), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s, transform .5s var(--ease);
}
.gitem:hover::after,
.gitem:focus-within::after { opacity: 1; transform: none; }

/* ---------- quote ---------- */
.quote {
  padding: clamp(7rem, 16vh, 12rem) var(--pad);
  text-align: center;
  background: var(--cream);
}
.quote__body {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
}
.quote__by {
  margin-top: 2rem;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust-text);
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  background: var(--cream-soft);
  align-items: center;
}
.about__img {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.about__img img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.about__img figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(28, 22, 16, .55);
  padding: .5em 1em;
  border-radius: 99px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.about__title { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 1.8rem; }
.about__body p { max-width: 54ch; }
.about__body p + p { margin-top: 1rem; }
.about__tags {
  list-style: none;
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--ink-soft);
}
.about__ig {
  display: inline-block;
  margin-top: 2.4rem;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust-text);
  border-bottom: 1px solid var(--rust-text);
  padding-bottom: .35em;
}

/* ---------- contact ---------- */
.contact {
  padding: clamp(7rem, 18vh, 13rem) var(--pad);
  text-align: center;
  background: var(--cream);
}
.contact__eyebrow {
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rust-text);
  margin-bottom: 1.6rem;
}
.contact__title { font-size: clamp(3rem, 10vw, 8.5rem); letter-spacing: -.01em; }
.spark { color: var(--amber); font-style: normal; }
.contact__title .hero__line--it { margin-left: 0; }
html.js .contact__title .hero__line > span { transform: translateY(115%); }
html.js .contact__title .hero__line.in-view > span { transform: none; }
.contact__sub {
  margin: 2rem auto 0;
  max-width: 44ch;
  color: var(--ink-soft);
}
.contact__actions {
  margin-top: 3rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 1.1em 2.4em;
  transition: background-color .35s, color .35s, border-color .35s;
}
.btn--primary { background: var(--rust-text); color: var(--cream); }
.btn--primary:hover { background: var(--ink); }
.btn--ghost { border: 1px solid rgba(38, 32, 26, .4); color: var(--ink); }
.btn--ghost:hover { border-color: var(--rust); color: var(--rust); }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--cream); overflow: hidden; }
.footer__marquee {
  border-bottom: 1px solid var(--line-light);
  padding: clamp(1.5rem, 4vh, 2.5rem) 0;
  overflow: hidden;
}
.footer__marquee-inner {
  display: flex; gap: 3rem; align-items: center;
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  white-space: nowrap;
  animation: foot-marquee 24s linear infinite;
  color: rgba(243, 237, 226, .92);
}
.footer__marquee-inner i { font-style: normal; font-size: .5em; color: var(--rust-soft); }
@keyframes foot-marquee { to { transform: translateX(-50%); } }
.footer__row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem var(--pad);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, .6);
}
.footer__row a:hover { color: var(--amber); }
.footer__love { font-style: italic; font-family: var(--serif); text-transform: none; letter-spacing: .04em; font-size: .9rem; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20, 15, 10, .96);
  display: grid; place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility 0s linear .45s;
  overscroll-behavior: contain;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s var(--ease), visibility 0s;
}
.lightbox__stage {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  display: flex; flex-direction: column; gap: .9rem;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(.96);
  transition: transform .45s var(--ease);
}
.lightbox.is-open .lightbox__stage img { transform: none; }
.lightbox__stage figcaption {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: none;
  border: 1px solid rgba(243, 237, 226, .3);
  color: var(--cream);
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 1.05rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .3s, border-color .3s;
}
.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible { background: var(--rust); border-color: var(--rust); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: fixed;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(243, 237, 226, .6);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .manifest { grid-template-columns: 1fr; }
  .manifest__imgs { min-height: 0; height: 68vw; max-height: 480px; }
  .manifest__img { max-height: 100%; }

  .about { grid-template-columns: 1fr; }
  .about__img { max-width: 480px; }

  .gallery__grid { columns: 2; }

  .service a {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: 'num name arrow' '. desc desc';
  }
  .service__num { grid-area: num; }
  .service__name { grid-area: name; }
  .service__desc { grid-area: desc; justify-self: start; }
  .service__arrow { grid-area: arrow; opacity: 1; transform: none; }
  .service__preview { display: none; }
}

@media (max-width: 600px) {
  .gallery__grid { columns: 1; }
  .hero__line--it { margin-left: 1.2rem; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: .6rem; }
  .lightbox__nav--next { right: .6rem; }
}

/* touch: horizontal section swipes natively */
@media (hover: none), (pointer: coarse) {
  .hwrap .hsticky { position: relative; height: auto; padding: clamp(4rem, 8vh, 6rem) 0; }
  .htrack {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .hpanel { scroll-snap-align: center; }
  .hprogress { display: none; }
}

/* ---------- snap mode (?snap): alle reveals direct af, voor screenshots/tests ---------- */
.snap-all .reveal-line > span,
.snap-all .hero__line > span { transform: none !important; transition: none !important; }
.snap-all [data-words] .w { opacity: 1 !important; }
.snap-all .gitem .gitem__btn { opacity: 1 !important; transform: none !important; }
.snap-all .hpanel__imgwrap img,
.snap-all .hero__media img { transform: none !important; }
.snap-all .preloader { display: none !important; }
.snap-all .grain { animation: none !important; }
.snap-all .htrack { transform: none !important; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-line > span, .hero__line > span { transform: none !important; }
  [data-words] .w { opacity: 1; }
  .gitem .gitem__btn { opacity: 1 !important; transform: none !important; }
  .grain { display: none; }
}
