/* =========================================================================
   REDE — Homepage (MONOLOG-DNA)
   Warm black · bone · clay accent · grain · condensed display caps
   ========================================================================= */

:root {
  --blk: #121110;
  --blk-soft: #1a1815;
  --bone: #e8e5dc;
  --bone-dim: rgba(232, 229, 220, 0.55);
  --bone-ghost: rgba(232, 229, 220, 0.22);
  --clay: #c96f43;
  --clay-deep: #8a3a1c;
  --hair: rgba(232, 229, 220, 0.14);
  --hair-dot: rgba(232, 229, 220, 0.25);
  --hair-dark: rgba(18, 17, 16, 0.16);

  --f-disp: 'Anton', 'Arial Narrow', sans-serif;
  --f-sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'JetBrains Mono', Menlo, monospace;
  --f-serif: 'Fraunces', Georgia, serif;

  --gut: clamp(1.25rem, 3vw, 3rem);
  --max: 1600px;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--blk);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--bone); color: var(--blk); }

/* ---- Language ---- */
html[lang="nl"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="nl"] { display: none !important; }
span[lang], em[lang], b[lang] { display: inline; }
html[lang="nl"] span[lang="en"], html[lang="nl"] em[lang="en"], html[lang="nl"] b[lang="en"] { display: none !important; }
html[lang="en"] span[lang="nl"], html[lang="en"] em[lang="nl"], html[lang="en"] b[lang="nl"] { display: none !important; }

/* ---- Grain ---- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.91 0 0 0 0 0.9 0 0 0 0 0.86 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ---- Layout ---- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

.tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.tag--dot::before { content: "● "; font-size: 0.5rem; color: var(--bone-dim); }

.counter {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 300;
  background: var(--bone);
  color: var(--blk);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ---- Header ---- */
.hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem var(--gut);
  mix-blend-mode: difference;
}
.hd__brand { line-height: 0; }
.hd__brand img {
  height: 24px;
  width: auto;
  filter: invert(1);
}
.hd__nav { display: flex; gap: 1.75rem; justify-content: center; }
.hd__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.hd__nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 760px) { .hd__nav { display: none; } }

.hd__right { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.hd__lang { display: flex; gap: 0.4rem; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.1em; color: #fff; }
.hd__lang button { opacity: 0.5; padding: 0.2rem; }
.hd__lang button[aria-pressed="true"] { opacity: 1; }

.hd__cta {
  font-size: 0.92rem;
  font-weight: 500;
  color: #000;
  background: #fff;
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}
.hd__cta:hover { transform: translateY(-1px); }

/* ---- Mobile menu ---- */
.hd__menu {
  display: none;
  width: 34px; height: 34px;
  position: relative;
}
.hd__menu span {
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, top 0.3s ease;
}
.hd__menu span:nth-child(1) { top: 13px; }
.hd__menu span:nth-child(2) { top: 20px; }
body.menu-open .hd__menu span:nth-child(1) { top: 16px; transform: rotate(45deg); }
body.menu-open .hd__menu span:nth-child(2) { top: 16px; transform: rotate(-45deg); }

.m-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--blk);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.menu-open .m-menu { opacity: 1; visibility: visible; }
.m-menu > a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: clamp(1.8rem, 8.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--bone);
  padding: 0.75rem 0;
  border-bottom: 1px dotted var(--hair-dot);
}
.m-menu > a > span:last-child { font-size: 1.2rem; color: var(--clay); }
.m-menu__meta {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.m-menu__lang { display: inline-flex; gap: 0.5rem; }
.m-menu__lang button { color: var(--bone-dim); }
.m-menu__lang button[aria-pressed="true"] { color: var(--bone); }

/* ---- Sticky side badge ---- */
.side-badge {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  background: var(--clay);
  color: var(--blk);
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
}
.side-badge span { display: block; animation: spin 9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .side-badge span { animation: none; } }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) brightness(0.42) contrast(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(18,17,16,0.1) 0%, rgba(18,17,16,0.72) 100%);
}
.hero__center {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
  padding: 7rem var(--gut) 0;
}
.hero__glyph {
  width: 44px; height: 44px;
  color: var(--bone);
  opacity: 0.9;
}
.hero__intro {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 34ch;
}
.hero__intro + .hero__intro { color: var(--bone-dim); }
.hero__word {
  position: relative;
  display: flex;
  justify-content: center;
  user-select: none;
}
.hero__word img {
  width: min(84vw, 1100px);
  height: auto;
  filter: invert(0.92) sepia(0.06);
  opacity: 0.85;
  transform: translateY(12%);
}

/* ---- Section head strip ---- */
.strip {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--hair);
}

/* ---- Stats + founder statement ---- */
.gap-sec { padding: clamp(4rem, 9vw, 8rem) 0; }
.gap-sec__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
@media (max-width: 860px) { .gap-sec__grid { grid-template-columns: 1fr; } }

.stat { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.stat__num {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.stat__cap {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--bone-dim);
  max-width: 26ch;
  line-height: 1.5;
}

.gap-sec__claim {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.gap-sec__claim .dim { color: var(--bone-dim); }
.gap-sec__who {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.gap-sec__ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.3);
}
.gap-sec__who p { font-size: 0.95rem; line-height: 1.4; }
.gap-sec__who p span { display: block; color: var(--bone-dim); }

/* ---- Client wall ---- */
.clients { padding-bottom: clamp(4rem, 8vw, 7rem); }
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px dotted var(--hair-dot);
  border-left: 1px dotted var(--hair-dot);
}
@media (max-width: 860px) { .clients__grid { grid-template-columns: repeat(2, 1fr); } }
.client {
  border-right: 1px dotted var(--hair-dot);
  border-bottom: 1px dotted var(--hair-dot);
  min-height: clamp(120px, 14vw, 190px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.5rem 1rem;
  transition: background 0.3s ease;
}
.client:hover { background: rgba(232,229,220,0.03); }
.client__name {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--bone);
  opacity: 0.85;
  text-align: center;
}
.client:nth-child(2n) .client__name { font-family: var(--f-sans); font-weight: 600; letter-spacing: -0.03em; }
.client:nth-child(3n) .client__name { font-family: var(--f-disp); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; font-size: clamp(1.2rem, 2vw, 1.8rem); }
.client__cap {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-ghost);
}

/* ---- Big statement with image inside ---- */
.smash {
  padding: clamp(5rem, 12vw, 11rem) 0;
  text-align: center;
}
.smash__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  flex-wrap: wrap;
}
.smash__word {
  font-family: var(--f-disp);
  font-size: clamp(2.4rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}
.smash__img {
  width: clamp(60px, 10vw, 160px);
  height: clamp(90px, 14vw, 230px);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
}
.smash__sub {
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  max-width: 44ch;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--bone);
}
.smash__sub .dim { color: var(--bone-dim); }

/* ---- Light chapter: stories ---- */
.lite {
  background: var(--bone);
  color: var(--blk);
}
.lite ::selection { background: var(--blk); color: var(--bone); }
.lite .tag, .lite .counter { color: rgba(18,17,16,0.5); }

.stories { padding: clamp(4rem, 9vw, 8rem) 0 0; }
.story {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px dotted var(--hair-dark);
  align-items: start;
}
.story:first-of-type { border-top: 0; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }

.story__media {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.story:hover .story__media { transform: scale(0.985); }

.story__info { position: sticky; top: 6rem; }
.story__idx {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(18,17,16,0.55);
}
.story__idx b { border: 1px solid rgba(18,17,16,0.35); padding: 0.1rem 0.35rem; font-weight: 400; }
.story__name {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.story__desc {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(18,17,16,0.65);
  max-width: 42ch;
}
.story__chip {
  display: inline-block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(18,17,16,0.08);
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.story__chipcap {
  margin-top: 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  max-width: 30ch;
}

.stories__all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px dotted var(--hair-dark);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: opacity 0.25s ease;
}
.stories__all:hover { opacity: 0.6; }
.stories__all .counter { font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-family: var(--f-sans); color: rgba(18,17,16,0.35); letter-spacing: -0.03em; }

/* ---- Services (giant list) ---- */
.serv { padding: clamp(5rem, 10vw, 9rem) 0; }
.serv__grid {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 860px) { .serv__grid { grid-template-columns: 1fr; } }
.serv__list { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.serv__item {
  display: block;
  font-size: clamp(2.4rem, 6.2vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--bone-ghost);
  transition: color 0.35s ease, padding-left 0.35s ease;
}
.serv__item:hover, .serv__item.is-lit { color: var(--bone); }
.serv__item:hover { padding-left: 0.4rem; }

.serv__rail { position: sticky; top: 6rem; }
@media (max-width: 860px) { .serv__rail { position: static; } }
.serv__railimg {
  aspect-ratio: 4 / 5;
  max-width: 300px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) brightness(0.85);
  position: relative;
}
.serv__railwords {
  position: absolute;
  inset: auto auto 1rem 1rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.25;
  color: var(--bone);
}
.serv__quote {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 34ch;
}
.serv__quote em { font-family: var(--f-serif); font-style: italic; color: var(--bone); }

/* ---- Journey ---- */
.journey { overflow: hidden; }
.journey__title {
  font-family: var(--f-disp);
  font-size: clamp(3.4rem, 12.5vw, 13.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: var(--bone);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.step {
  display: grid;
  grid-template-columns: 110px 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--hair);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  align-items: start;
}
@media (max-width: 860px) { .step { grid-template-columns: 1fr; } }
.step__no {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.step__name {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.step__body {
  margin-top: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 44ch;
}
.step__body strong { color: var(--bone); font-weight: 600; }
.step__meta {
  margin-top: 1.4rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.step__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.9);
}

/* ---- FAQ ---- */
.faq { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--blk-soft); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }
.faq__aside { position: sticky; top: 6rem; }
@media (max-width: 860px) { .faq__aside { position: static; } }
.faq__ava {
  width: 84px; height: 84px;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.3);
  margin-bottom: 1.1rem;
}
.faq__aside p { font-size: 0.98rem; color: var(--bone-dim); max-width: 22ch; line-height: 1.5; }
.faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: var(--bone);
  color: var(--blk);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.6rem 1rem;
  transition: transform 0.2s ease;
}
.faq__btn:hover { transform: translateY(-1px); }

.faq__title {
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 20ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.faq details { border-bottom: 1px dotted var(--hair-dot); }
.faq details:first-of-type { border-top: 1px dotted var(--hair-dot); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.3rem 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--clay); }
.faq summary::after {
  content: "○";
  font-size: 0.7rem;
  color: var(--bone-dim);
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq details[open] summary::after { content: "●"; color: var(--clay); }
.faq__a {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 58ch;
}
.faq__a a { text-decoration: underline; text-underline-offset: 3px; }
.faq__a a:hover { color: var(--clay); }

/* ---- Quote interlude ---- */
.quote {
  padding: clamp(5rem, 11vw, 10rem) var(--gut);
  text-align: center;
}
.quote p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 auto;
}
.quote .src {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---- Mega footer ---- */
.mega { position: relative; }
.mega__cta {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.mega__line {
  display: block;
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 10vw, 11rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
}
.mega__line--in1 { padding-left: clamp(1.5rem, 8vw, 10rem); }
.mega__line--in2 { padding-left: clamp(3rem, 16vw, 22rem); }
.mega__line .arr {
  display: inline-block;
  color: var(--clay);
  transition: transform 0.3s ease;
}
a.mega__cta-link:hover .arr { transform: translateX(0.15em); }

.mega__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
@media (max-width: 860px) { .mega__grid { grid-template-columns: 1fr; } }

.mega__nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--hair-dot);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mega__nav a:hover { color: var(--clay); padding-left: 0.4rem; }

.mega__col h5 {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 1.1rem;
}
.mega__col ul { list-style: none; display: grid; gap: 0.55rem; font-size: 1rem; font-weight: 500; }
.mega__col a:hover { color: var(--clay); }
.mega__col p { font-size: 0.95rem; color: var(--bone-dim); line-height: 1.6; }
.mega__col .blk-gap { margin-top: 2rem; }

.mega__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.mega__meta .sub { display: block; color: var(--bone-dim); font-size: 0.85rem; }
.mega__meta a:hover { color: var(--clay); }

/* ---- Halftone strip ---- */
.half {
  position: relative;
  height: clamp(240px, 38vh, 420px);
  overflow: hidden;
  background: var(--blk);
}
.half__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(1) contrast(2.1) brightness(1.15);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.half__bar {
  position: absolute;
  left: var(--gut); right: var(--gut); bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  color: var(--bone);
}
.half__brand { line-height: 0; }
.half__brand img { height: 26px; width: auto; filter: invert(0.92) sepia(0.06); }
.half__motto { font-size: 0.95rem; font-weight: 500; opacity: 0.85; }

/* ---- Reveal ---- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .rv { opacity: 1; transform: none; }
}

/* ---- Mobile overrides (keep last) ---- */
@media (max-width: 760px) {
  .hd { padding: 0.85rem 1rem; grid-template-columns: auto 1fr auto; }
  .hd__brand img { height: 19px; }
  .hd__lang { display: none; }
  .hd__cta { font-size: 0.82rem; padding: 0.45rem 0.75rem; white-space: nowrap; }
  .hd__right { gap: 0.6rem; }
  .hd__menu { display: block; }
  .side-badge { display: none; }
  .story__info { position: static; }
  .serv__rail { max-width: 300px; position: static; }
  .faq__aside { position: static; }
  .mega__line--in1 { padding-left: 2rem; }
  .mega__line--in2 { padding-left: 4rem; }
  .grain { animation: none; }
}
