/* ==========================================================================
   servieskopen&huren — merkpublicatie
   Brutalistisch-editoriaal: zwart op wit, harde hoeken, hairlines.
   Serif voor de koppen, monospace voor labels, prijzen en specificaties —
   het contrast tussen elegant en technisch draagt de pagina.
   ========================================================================== */

:root {
  --paper:  #ffffff;
  --wash:   #f1f0ed;   /* beeldvlak */
  --wash-2: #e7e5e1;
  --ink:    #0d0d0c;
  --ink-2:  #6f6c67;   /* warm grijs, bewust niet neutraal */
  --line:   #d7d4cf;
  --copper: #a06a2c;   /* het enige accent, spaarzaam */

  --serif: "Newsreader", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(18px, 3.4vw, 44px);
  --bar-h: 50px;
  --air: clamp(90px, 15vh, 200px);
  --col-gap: clamp(12px, 1.8vw, 28px);

  --t-mono:    .6875rem;
  --t-mono-sm: .75rem;
  --t-body:    .9375rem;
  --t-lead:    clamp(1rem, 1.4vw, 1.125rem);
  --t-h2:      clamp(1.75rem, 3.6vw, 3rem);
  --t-statement: clamp(1.9rem, 5vw, 4rem);
  --t-display: clamp(2.4rem, 6vw, 5rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  padding-top: var(--bar-h);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.6;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.022em;
}

/* Bouwstenen ------------------------------------------------------------- */
.bleed { padding-inline: var(--gutter); }
.full { padding-inline: 0; }

/* Twaalfkoloms raster — asymmetrische plaatsing zonder willekeur */
.g12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}
@media (max-width: 860px) {
  .g12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* Monospace draagt alles wat technisch is: labels, maten, prijzen */
.mono {
  font-family: var(--mono);
  font-size: var(--t-mono);
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.mono--num { font-size: var(--t-mono-sm); letter-spacing: .04em; text-transform: none; }
.soft { color: var(--ink-2); }
.accent { color: var(--copper); }

.section { padding-block: var(--air); }
.edge { border-top: 1px solid var(--ink); }
.edge--hair { border-top: 1px solid var(--line); }

/* Onderstreping die bij hover doorloopt */
.ul {
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--copper), var(--copper));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .45s cubic-bezier(.22, 1, .36, 1);
}
a:hover .ul, a.ul:hover { background-size: 100% 1px; }

/* ==========================================================================
   Kopregel
   ========================================================================== */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px var(--gutter);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease;
}
.top { border-bottom-color: var(--ink); height: var(--bar-h); }
.top .wordmark {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .45s ease, transform .45s ease;
}
.top.is-stuck .wordmark { opacity: 1; transform: none; }
.wordmark {
  font-family: var(--serif);
  font-size: 1.0625rem;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.wordmark span { color: var(--copper); }
.top nav { margin-left: auto; display: flex; gap: clamp(14px, 2.4vw, 32px); }
@media (max-width: 620px) { .top nav a[data-secundair] { display: none; } }

/* ==========================================================================
   Hero — twee beeldhelften die samen het scherm vullen, met het woordmerk
   dwars over de naad heen. Links huren, rechts kopen; even zwaar.
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100svh - var(--bar-h));
  min-height: 420px;
  border-bottom: 1px solid var(--ink);
}

.hero__half {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero__half + .hero__half { border-left: 1px solid var(--ink); }

/* Donkere gloed over het beeld: donker aan de randen, iets opener in het
   midden. Houdt de witte tekst leesbaar en licht op zodra je erover gaat. */
.hero__half::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(128% 100% at 50% 46%,
    rgba(8, 8, 7, .30) 0%,
    rgba(8, 8, 7, .62) 58%,
    rgba(8, 8, 7, .84) 100%);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1);
}
.hero__half:hover::before { opacity: .68; }

/* Beeldvlak: vult de helft volledig, van rand tot rand. De foto's staan in
   assets/img/ en hangen in landing.html als img.shot. */
.hero__half .shot,
.hero__half svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
}
.hero__half svg { padding: clamp(24px, 5vw, 90px); }
.hero__half .shot,
.hero__half svg { filter: brightness(.96); transition: transform 1.4s cubic-bezier(.22, 1, .36, 1), filter 1s ease; }
.hero__half:hover .shot,
.hero__half:hover svg { transform: scale(1.03); filter: brightness(1.08); }

/* Label klein linksboven, ín het beeld */
.hero__label {
  position: absolute;
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(6, 6, 5, .75);
  top: clamp(14px, 2.2vh, 26px);
  left: var(--gutter);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero__label svg {
  position: static;
  width: 13px;
  height: 13px;
  padding: 0;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}
.hero__half:hover .hero__label svg { transform: translateX(5px); }

/* Het woordmerk ligt over beide helften; klikken gaat er dwars doorheen */
.hero__wordmark {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  pointer-events: none;
  margin: 0;
  padding-inline: 2vw;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18.4vw;
  line-height: .95;
  letter-spacing: -.035em;
  text-align: center;
  color: var(--paper);
  text-shadow: 0 0 clamp(28px, 5vw, 90px) rgba(6, 6, 5, .62);
}
.hero__wordmark-tekst { display: block; white-space: nowrap; }
.hero__wordmark i { font-style: normal; }

/* De twee helften staan naast elkaar, op elk schermformaat. Ze stapelen
   dus niet op mobiel; het label wordt daar korter zodat het in de smallere
   kolom past. */
@media (max-width: 560px) {
  .hero__label { left: clamp(10px, 3vw, 18px); letter-spacing: .06em; }
  .hero__label svg { display: none; }
}

/* Introductie onder de hero ---------------------------------------------- */
.opener { padding: clamp(56px, 9vh, 104px) var(--gutter) clamp(40px, 7vh, 80px); }
.opener .idx { grid-column: 1 / 3; }
.opener .txt { grid-column: 4 / 11; }
@media (max-width: 860px) {
  .opener .idx { grid-column: 1 / -1; margin-bottom: 14px; }
  .opener .txt { grid-column: 1 / -1; }
}
.opener h2 {
  font-size: var(--t-statement);
  letter-spacing: -.03em;
  max-width: 15ch;
}
.opener h2 em { font-style: italic; }
.opener p { margin-top: 22px; max-width: 46ch; color: var(--ink-2); font-size: var(--t-lead); }

/* ==========================================================================
   Manifest — asymmetrisch, ver naar rechts
   ========================================================================== */
.statement { padding-block: clamp(100px, 19vh, 230px); }
.statement .idx { grid-column: 1 / 3; }
.statement .txt { grid-column: 5 / 13; }
@media (max-width: 860px) {
  .statement .idx { grid-column: 1 / -1; margin-bottom: 20px; }
  .statement .txt { grid-column: 1 / -1; }
}
.statement p {
  font-family: var(--serif);
  font-size: var(--t-statement);
  line-height: 1.14;
  letter-spacing: -.03em;
  max-width: 20ch;
  text-wrap: balance;
}

/* Sectiekop: label links, kop rechts */
.head { margin-bottom: clamp(38px, 6.5vh, 76px); row-gap: 18px; }
.head .idx { grid-column: 1 / 3; }
.head .txt { grid-column: 4 / 11; }
@media (max-width: 860px) {
  .head .idx { grid-column: 1 / -1; }
  .head .txt { grid-column: 1 / -1; }
}
.head h2 { font-size: var(--t-h2); max-width: 20ch; }
.head p { margin-top: 16px; color: var(--ink-2); max-width: 46ch; }

/* ==========================================================================
   Collectie — vier stukken, om en om verspringend
   ========================================================================== */
.pieces { row-gap: clamp(34px, 5vw, 60px); }
.piece { grid-column: span 3; }
.piece:nth-child(even) { margin-top: clamp(28px, 5vw, 88px); }
@media (max-width: 860px) {
  .piece { grid-column: span 3; }
  .piece:nth-child(even) { margin-top: clamp(20px, 6vw, 48px); }
}
@media (max-width: 520px) {
  .piece, .piece:nth-child(even) { grid-column: 1 / -1; margin-top: 0; }
}
.piece figure { aspect-ratio: 4 / 5; background: var(--wash); overflow: hidden; margin-bottom: 16px; }
.piece:nth-child(3n) figure { aspect-ratio: 1; background: var(--wash-2); }
.piece figure svg { width: 100%; height: 100%; padding: 17%; transition: transform 1.2s cubic-bezier(.22, 1, .36, 1); }
.piece:hover figure svg { transform: scale(1.05); }
.piece h3 { font-size: 1.22rem; }
.piece .desc { font-size: var(--t-mono-sm); font-family: var(--mono); color: var(--ink-2); margin-top: 6px; line-height: 1.5; }
.piece .amt { display: block; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }

/* ==========================================================================
   Full-bleed band
   ========================================================================== */
.band { background: var(--ink); overflow: hidden; aspect-ratio: 21 / 9; }
.band svg, .band .shot { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .band { aspect-ratio: 3 / 2; } }
.band-note { display: flex; flex-wrap: wrap; gap: 6px 28px; padding: 14px var(--gutter); border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Verhuur — technische lijst
   ========================================================================== */
.rows { border-top: 1px solid var(--ink); }
.row {
  display: grid;
  grid-template-columns: 3ch minmax(0, 2.1fr) minmax(0, 2.4fr) auto;
  gap: 10px clamp(14px, 2.6vw, 40px);
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .35s ease;
}
.rows .row:last-child { border-bottom: 1px solid var(--ink); }
.row:hover { background: var(--wash); }
.row__name { font-family: var(--serif); font-size: 1.12rem; }
@media (max-width: 720px) {
  .row { grid-template-columns: 3ch 1fr auto; }
  .row__spec { grid-column: 2 / -1; }
}

/* ==========================================================================
   Werkwijze — verspringende kolommen
   ========================================================================== */
.stages { row-gap: clamp(30px, 5vw, 56px); }
.stage { grid-column: span 3; display: grid; gap: 10px; align-content: start; padding-top: 16px; border-top: 1px solid var(--ink); }
.stage:nth-child(even) { margin-top: clamp(20px, 3.4vw, 52px); }
@media (max-width: 520px) { .stage, .stage:nth-child(even) { grid-column: 1 / -1; margin-top: 0; } }
.stage h3 { font-size: 1.14rem; }
.stage p { font-size: var(--t-body); color: var(--ink-2); }

/* ==========================================================================
   Slot
   ========================================================================== */
.closing { row-gap: 40px; }
.closing__main { grid-column: 1 / 7; }
.closing__side { grid-column: 9 / 13; }
@media (max-width: 860px) {
  .closing__main, .closing__side { grid-column: 1 / -1; }
}
.closing h2 { font-size: var(--t-statement); letter-spacing: -.03em; max-width: 15ch; }
.details { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.details div { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.details dd { margin: 0; font-family: var(--serif); font-size: 1.16rem; }

.endbar {
  display: flex; flex-wrap: wrap; gap: 10px 32px; justify-content: space-between;
  padding: 20px var(--gutter);
  border-top: 1px solid var(--ink);
}

.placeholder { border-bottom: 1px dashed var(--copper); color: var(--copper); font-style: italic; }

/* ==========================================================================
   Beweging — terughoudend
   ========================================================================== */
.rise { opacity: 0; transform: translateY(14px); transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1); }
.rise.is-in { opacity: 1; transform: none; }
.rise[data-d="1"] { transition-delay: .08s; }
.rise[data-d="2"] { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rise { opacity: 1; transform: none; }
  .frame svg, .shot, .piece figure svg { transform: none !important; }
}

/* Labelvarianten: het volledige label waar ruimte is, kort op smalle kolommen */
.hero__label .kort { display: none; }
@media (max-width: 560px) {
  .hero__label .lang { display: none; }
  .hero__label .kort { display: inline; }
}
