/* ===========================================================
   THE OFFERING — Dag van de Zorg 2026
   Editorial / cinematic stylesheet
   =========================================================== */

:root {
  --bg:           #f5efe7;
  --bg-deep:      #efe7dc;
  --paper:        #faf6f1;
  --ink:          #2a2218;
  --ink-soft:     #5b4f43;
  --ink-mute:     #6b5d4c;
  --rose:         #d4a5a5;
  --rose-deep:    #b87f7f;
  --blossom:      #f2d5d5;
  --lumen:        #e9dcc6;
  --line:         #d8cdbe;
  --line-soft:    #e6dccd;

  --serif:        "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:         "Inter", "Helvetica Neue", Arial, sans-serif;

  --vh: 1vh;
  --easing: cubic-bezier(.2, .8, .2, 1);

  --maxw: 1480px;
  --gutter: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

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

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

::selection { background: var(--rose); color: var(--paper); }

/* ----------- keyboard focus visibility ----------- */
:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav .nav__mark:focus-visible,
.nav__links a:focus-visible { outline-color: currentColor; }
.cta:focus-visible { outline: 2px solid #f6ebd9; outline-offset: 3px; }
.acts a:focus-visible,
.colophon a:focus-visible { outline-color: var(--rose); }

/* ----------- subtle paper grain on full page ----------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .35;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0) 0, rgba(255,255,255,0) 60%),
    repeating-conic-gradient(from 0deg, rgba(120,90,60,.015) 0deg 1deg, rgba(255,255,255,0) 1deg 3deg);
}

/* ============================ CURSOR =========================== */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,210,.35) 0%, rgba(255,210,210,0) 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  z-index: 5;
  transition: opacity .6s var(--easing);
  opacity: 0;
}
@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ============================ NAV ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f4ead9;
  transition: background .5s var(--easing), color .5s var(--easing),
              box-shadow .5s var(--easing), padding .5s var(--easing);
}
/* soft top scrim so light nav text stays legible over the pale hero */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,15,10,.42) 0%, rgba(20,15,10,0) 100%);
  opacity: 1;
  transition: opacity .5s var(--easing);
}
/* once scrolled past the hero: a calm cream bar with dark ink text */
.nav.nav--solid {
  color: var(--ink);
  background: rgba(245,239,231,.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav.nav--solid::before { opacity: 0; }

.nav__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: none;
}
.mark__text em { font-style: italic; }

.nav__links {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .6s var(--easing);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  font-variant-numeric: tabular-nums;
}
.nav__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-block;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; padding: 18px 22px; }
  .nav__links { display: none; }
  .nav__meta { font-size: 9px; letter-spacing: .12em; }
  .nav__mark { font-size: 15px; }
}

/* ============================ HERO ============================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero__video {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.02);
  transform: scale(1.04);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 0%, rgba(20,15,10,.15) 55%, rgba(20,15,10,.55) 100%),
    linear-gradient(180deg, rgba(20,15,10,.42) 0%, rgba(20,15,10,.10) 22%, rgba(20,15,10,0) 45%, rgba(20,15,10,.05) 65%, rgba(20,15,10,.65) 100%);
}

.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,240,220,.06) 0, rgba(255,240,220,.06) 1px, rgba(0,0,0,0) 1px, rgba(0,0,0,0) 3px),
    repeating-radial-gradient(circle at 70% 80%, rgba(255,200,200,.05) 0, rgba(255,200,200,.05) 1px, rgba(0,0,0,0) 1px, rgba(0,0,0,0) 4px);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  height: 100%;
  padding: 96px var(--gutter) 60px;
  color: #f6ebd9;
}
@media (max-width: 720px) {
  .hero__content { padding: 78px 22px 76px; }
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  gap: 16px;
}
@media (max-width: 720px) {
  .hero__top { font-size: 9px; flex-direction: column; gap: 8px; }
  .hero__chapter { font-size: 12px; }
}
.hero__credit { display: inline-flex; gap: 10px; align-items: baseline; }
.hero__chapter {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .08em;
  text-transform: none;
  font-size: 14px;
}

.hero__title {
  align-self: end;
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  line-height: .9;
  font-size: clamp(72px, 14vw, 240px);
  letter-spacing: -.02em;
  padding-bottom: clamp(40px, 7vh, 80px);
}

.title__line {
  display: block;
  position: relative;
}
.title__line--top { display: flex; align-items: baseline; gap: clamp(20px, 3vw, 50px); flex-wrap: wrap; }
.title__line--bottom {
  margin-top: clamp(-10px, -1vh, 4px);
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2.4vw, 36px);
  flex-wrap: wrap;
}

.title__word {
  display: inline-block;
  position: relative;
  font-weight: 300;
}
.title__word--alt {
  font-style: italic;
  font-weight: 500;
  color: #f4dcdc;
}
.title__word--script {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  color: #f2d5d5;
  letter-spacing: .01em;
}
.title__small {
  font-family: var(--sans);
  font-size: clamp(11px, .9vw, 13px);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: .8;
  align-self: center;
  padding: 0 18px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  white-space: nowrap;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 12px;
}
@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 20px; }
  .hero__cta { align-items: flex-start; }
  .hero__lede { max-width: 100%; }

  /* stop the title lines and the "eerbetoon" label from overlapping */
  .hero__title .title__line--bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
  }
  .hero__title .title__small {
    border-left: 0;
    border-right: 0;
    padding: 0;
    letter-spacing: .26em;
    align-self: flex-start;
  }
  .hero__title { padding-bottom: clamp(28px, 5vh, 48px); }

  /* the scroll cue collides with the sound line on small screens */
  .hero__content .hero__scroll { display: none; }
}

.hero__lede {
  max-width: 440px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.4;
  font-style: italic;
  opacity: .88;
}
.hero__lede p { margin: 0; }

.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }

.cta {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(246,235,217,.5);
  color: #f6ebd9;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .5s var(--easing), color .5s var(--easing), border-color .5s var(--easing);
}
.cta:hover {
  background: #f6ebd9;
  color: var(--ink);
  border-color: #f6ebd9;
}
.cta__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
}

.hero__sound {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  text-shadow: 0 1px 8px rgba(20, 15, 10, .55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #f6ebd9;
}
.scroll__line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, currentColor);
  animation: drop 2.4s var(--easing) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: top; }
  61% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* side marginalia */
.marginalia {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: #f6ebd9;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .55;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  transform-origin: center center;
}
.marginalia--left {
  left: 18px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
}
.marginalia--right {
  right: 18px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right top;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .marginalia { display: none; }
}

/* ============================ FILM (PILLAR) ==================== */
.film {
  background: var(--bg);
  padding: clamp(72px, 11vh, 120px) var(--gutter) clamp(88px, 13vh, 140px);
}

.rule__roman, .rule__caption, .rule__time {
  font-family: var(--serif);
}
.film__rule, .acts__rule {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(36px, 5vh, 56px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vh, 60px);
}
.rule__roman {
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.rule__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
}
.rule__time {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.film__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 980px) {
  .film__layout { grid-template-columns: 1fr; gap: 50px; }
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 28px;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.section-title--center { text-align: center; margin-inline: auto; max-width: 18ch; }

.section-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 40px;
}
.section-lede i { font-style: italic; color: var(--rose-deep); }

.film__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.film__specs div { display: flex; flex-direction: column; gap: 6px; }
.film__specs dt {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.film__specs dd {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* the framed video — prominent */
.film__frame {
  margin: 0;
  position: relative;
}
.frame__chrome {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow:
    0 60px 80px -40px rgba(58, 38, 24, .35),
    0 30px 40px -20px rgba(212, 165, 165, .25),
    inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}
.frame__chrome video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid #f6ebd9;
  opacity: .6;
}
.frame__corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.frame__corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.frame__corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.frame__corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.film__frame figcaption {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
}
.cap__num {
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  align-self: center;
}

/* ============================ OFFERING ========================= */
.offering {
  background: var(--paper);
  padding: clamp(88px, 13vh, 140px) var(--gutter);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.offering__intro {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 800px;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

.offering__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.plate {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--easing);
}
.plate:hover img { transform: scale(1.04); }
.plate figcaption {
  position: absolute;
  bottom: 16px; left: 18px;
  color: #f6ebd9;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  display: inline-flex;
  gap: 8px;
}
.plate figcaption span {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
  align-self: center;
}

.plate--tall  { grid-column: 1 / span 5;  grid-row: 1 / span 2; aspect-ratio: 3/4.5; }
.plate--short { grid-column: 6 / span 4;  grid-row: 1; aspect-ratio: 3/4; }
.plate--wide  { grid-column: 6 / span 7;  grid-row: 2; aspect-ratio: 16/9; }

.offering__quote {
  grid-column: 10 / span 3;
  grid-row: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 10px;
  text-align: center;
}
.offering__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
  position: relative;
}
.quote__open, .quote__close {
  display: inline-block;
  font-style: normal;
  font-size: 1.6em;
  color: var(--rose);
  line-height: 0;
  transform: translateY(.25em);
}
.offering__quote cite {
  margin-top: 16px;
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .offering__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .plate--tall, .plate--short, .plate--wide, .offering__quote {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }
  .plate { aspect-ratio: 3/4; }
  .plate--wide { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .offering__quote { grid-column: 1 / -1; padding: 30px 0; }
}

/* ============================ ACTS ============================= */
.acts {
  background: var(--ink);
  color: #f6ebd9;
  padding: clamp(84px, 12vh, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.acts::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,165,165,.18) 0%, rgba(212,165,165,0) 50%),
    radial-gradient(ellipse at 20% 80%, rgba(233,220,198,.14) 0%, rgba(233,220,198,0) 55%);
  pointer-events: none;
}
.acts__rule {
  color: rgba(246,235,217,.85);
  border-bottom-color: rgba(246,235,217,.15);
}
.acts__rule .rule__roman, .acts__rule .rule__time { color: rgba(246,235,217,.55); }

.acts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.act {
  position: relative;
  padding: 50px 36px 56px;
  border-right: 1px solid rgba(246,235,217,.12);
  border-bottom: 1px solid rgba(246,235,217,.12);
  transition: background .6s var(--easing);
}
.act:nth-child(3n) { border-right: 0; }
.act:nth-last-child(-n+3) { border-bottom: 0; }
.act:hover { background: rgba(246,235,217,.04); }

.act__num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .3em;
  color: rgba(246,235,217,.5);
  display: block;
  margin-bottom: 24px;
  transition: color .5s var(--easing);
}
.act__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 40px);
  margin: 0 0 18px;
  line-height: 1.05;
  color: #f8eedb;
}
.act__time {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 14px;
}

/* mini-timeline: where this shot sits in the 15-second film */
.act__track {
  position: relative;
  height: 2px;
  margin: 0 0 22px;
  background: rgba(246,235,217,.12);
  border-radius: 2px;
  overflow: hidden;
}
.act__track span {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--rose);
  border-radius: 2px;
  opacity: .55;
  transform-origin: left center;
  transition: opacity .6s var(--easing), box-shadow .6s var(--easing);
}
.act:hover .act__track span {
  opacity: 1;
  box-shadow: 0 0 14px 1px rgba(212,165,165,.55);
}
.act:hover .act__num { color: var(--rose); }
.act__copy {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(246,235,217,.7);
  max-width: 28ch;
  margin: 0;
}

@media (max-width: 900px) {
  .acts__list { grid-template-columns: 1fr 1fr; }
  .act:nth-child(3n) { border-right: 1px solid rgba(246,235,217,.12); }
  .act:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .acts__list { grid-template-columns: 1fr; }
  .act { border-right: 0 !important; }
}

/* ============================ DEDICATION ======================= */
.dedication {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  text-align: center;
  padding: clamp(104px, 17vh, 176px) var(--gutter);
}
.dedication__copy {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 28ch;
  margin: 24px auto 60px;
  font-weight: 300;
}
.dedication__copy em {
  font-style: italic;
  color: var(--rose-deep);
}

.dedication__sig {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}
.sig__name {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
}
.sig__name em {
  color: var(--rose-deep);
  font-style: normal;
}

/* ============================ COLOPHON ========================= */
.colophon {
  background: var(--ink);
  color: rgba(246,235,217,.85);
  padding: 80px var(--gutter) 40px;
}
.colophon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid rgba(246,235,217,.12);
  padding-bottom: 50px;
}
.col__label {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(246,235,217,.45);
  margin-bottom: 16px;
}
.colophon__col p {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.swatches li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.swatches li span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c);
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(246,235,217,.15);
}

.colophon__base {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(246,235,217,.5);
}
.colophon__mark { color: var(--rose); }
.colophon__base a { color: rgba(246,235,217,.7); transition: color .3s; }
.colophon__base a:hover { color: var(--rose); }

@media (max-width: 760px) {
  .colophon__grid { grid-template-columns: 1fr 1fr; }
  .colophon__base { flex-direction: column; text-align: center; }
}

/* ============================ REVEAL =========================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--easing), transform 1.1s var(--easing);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* respect motion prefs */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
