
/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --off-white: #F5F1EA;
  --ivory: #EDE6DA;
  --sand: #D9CDB8;
  --taupe: #A89680;
  --warm-grey: #6B6258;
  --dark-brown: #2B1F15;
  --ink: #1A1410;
  --accent: #6B4423;
  --line: rgba(43, 31, 21, 0.12);
  --line-strong: rgba(43, 31, 21, 0.28);
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 12vw, 160px);
}

/* RESET & BASE */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 200;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* CUSTOM CURSOR */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px; height: 8px;
    background: var(--dark-brown);
    border-radius: 50%;
    pointer-events: none;
    z-index: 300;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
  }
  .cursor.hover { width: 56px; height: 56px; background: var(--off-white); }
  .cursor.hidden { opacity: 0; }
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 60;
  padding: clamp(14px, 2.2vw, 24px) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--off-white);
}
header.scrolled, header.dark-page {
  padding-top: clamp(10px, 1.6vw, 16px);
  padding-bottom: clamp(10px, 1.6vw, 16px);
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 60;
}
.logo em { font-style: italic; font-weight: 300; opacity: 0.6; }

.desktop-nav { display: none; }
@media (min-width: 969px) {
  .desktop-nav {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
  }
}
.desktop-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:not(.header-cta)::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.desktop-nav a:not(.header-cta):hover::after { width: 100%; }
  /* Maatwerk dropdown (desktop) */
  .nav-dd { position: relative; }
  .nav-dd > a { display: inline-flex; align-items: center; gap: 5px; }
  .nav-dd > a .dd-caret { width: 8px; height: 8px; transition: transform 0.3s ease; }
  .nav-dd:hover > a .dd-caret, .nav-dd:focus-within > a .dd-caret { transform: rotate(180deg); }
  .nav-dd-panel {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px; background: var(--off-white); border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(26, 20, 16, 0.12);
    padding: 10px 0; list-style: none;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s; z-index: 250;
  }
  .nav-dd:hover .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dd-panel li { display: block; }
  .nav-dd-panel a {
    display: block; padding: 11px 26px; font-size: 13px; letter-spacing: 0.06em;
    text-transform: none; white-space: nowrap; color: var(--ink);
    transition: background 0.25s ease, padding-left 0.25s ease;
  }
  .nav-dd-panel a::after { display: none; }
  .nav-dd-panel a:hover { background: rgba(43, 31, 21, 0.05); padding-left: 30px; }
  .nav-dd-panel::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

.desktop-nav a.active::after { width: 100%; }

.header-cta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
}
.header-cta:hover {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
@media (min-width: 969px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--ink);
  color: var(--off-white);
  z-index: 55;
  padding: clamp(80px, 12vh, 110px) var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }
.mobile-menu a {
  display: block;
  padding: 24px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: padding-left 0.4s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { padding-left: 16px; }
.mobile-menu .mm-sub { list-style: none; margin: 4px 0 8px; padding: 0; }
.mobile-menu .mm-sub a { font-size: clamp(17px, 4.5vw, 22px); padding: 11px 0 11px 18px; color: rgba(245, 241, 234, 0.78); border-left: 1px solid rgba(245, 241, 234, 0.18); margin-left: 2px; }
.mobile-menu .mm-sub a:hover, .mobile-menu .mm-sub a:active { padding-left: 26px; color: var(--off-white); }
.mobile-menu .mm-cta {
  margin-top: 32px;
  padding: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  border: 1px solid var(--accent);
}
.mobile-menu-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.6);
  line-height: 1.7;
}
.mobile-menu-footer a {
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--off-white);
}
body.menu-open { overflow: hidden; }
body.menu-open header {
  color: var(--off-white) !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

/* =========================================================
   PAGE HERO (used by sub-pages, smaller than home hero)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: clamp(520px, 75vh, 720px);
  overflow: hidden;
  color: var(--off-white);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 10vh, 120px);
  padding-top: clamp(120px, 16vh, 160px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 18s linear;
}
.page-hero.in-view .page-hero-bg { transform: scale(1); }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.4) 0%, rgba(26, 20, 16, 0.2) 30%, rgba(26, 20, 16, 0.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero-eyebrow {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
  overflow: hidden;
}
.page-hero-eyebrow span {
  display: inline-block;
  transform: translateY(100%);
  animation: rise 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero-eyebrow::before {
  content: '';
  width: clamp(24px, 4vw, 40px);
  height: 1px;
  background: var(--off-white);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 1100px;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.page-hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
}
.page-hero h1 .line:nth-child(1) > span { animation: rise 1.3s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 .line:nth-child(2) > span { animation: rise 1.3s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}
.page-hero-sub {
  margin-top: clamp(24px, 4vh, 40px);
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  opacity: 0.85;
  opacity: 0;
  animation: fadeIn 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow { to { transform: scaleX(1); } }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 0.85; } }

/* =========================================================
   SECTIONS
   ========================================================= */
section.block {
  padding: var(--section-y) 0;
  position: relative;
}
.section-eye {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.section-eye .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 13px;
}
.section-eye .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 200px;
}

/* Display heading shared */
h2.display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
h2.display em { font-style: italic; font-weight: 300; }
h3.serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3.serif em { font-style: italic; font-weight: 300; }

/* Lead paragraph */
.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 560px;
}

/* =========================================================
   QUOTE BLOCK (reusable)
   ========================================================= */
.quote-block {
  padding: var(--section-y) 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1100px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.quote-block blockquote em { font-style: italic; font-weight: 300; color: var(--accent); }
.quote-block .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 80px);
  color: var(--accent);
  line-height: 0;
  height: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 40px);
  font-style: italic;
}
.quote-block cite {
  font-style: normal;
  font-size: clamp(11px, 1.2vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: inline-block;
}
.quote-block cite strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 12px;
}

/* =========================================================
   CTA BLOCK (reusable end-of-page)
   ========================================================= */
.cta-final {
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-eyebrow {
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: '';
  width: clamp(20px, 3vw, 32px);
  height: 1px;
  background: var(--warm-grey);
}
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: clamp(36px, 6vw, 56px);
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-brown);
  color: var(--off-white);
  padding: clamp(18px, 2.5vw, 24px) clamp(24px, 4vw, 44px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
@media (hover: hover) {
  .cta-button:hover::before { width: 600px; height: 600px; }
  .cta-button:hover svg { transform: translateX(6px); }
}
.cta-button span, .cta-button svg { position: relative; z-index: 2; transition: transform 0.4s ease; }
.cta-secondary {
  margin-top: clamp(32px, 5vw, 48px);
  font-size: clamp(12px, 1.3vw, 13px);
  color: var(--warm-grey);
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: center;
}
.cta-secondary a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}
.cta-secondary a:hover { border-color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink);
  color: var(--off-white);
  padding: clamp(56px, 8vw, 80px) 0 clamp(24px, 3vw, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
@media (min-width: 541px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 769px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 541px) and (max-width: 768px) {
  .footer-brand { grid-column: 1 / -1; }
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.footer-logo em { font-style: italic; font-weight: 300; opacity: 0.5; }
.footer-tag {
  font-size: clamp(13px, 1.4vw, 14px);
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: clamp(10px, 1.5vw, 14px); }
.footer-col a {
  font-size: clamp(13px, 1.4vw, 14px);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  padding-top: clamp(20px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.4);
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-brown);
  color: var(--off-white);
  text-align: center;
  padding: 16px;
  z-index: 40;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 54px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .page-hero-bg { transform: none !important; }
  .page-hero-eyebrow span,
  .page-hero h1 .line > span { transform: none !important; }
  .page-hero-sub { opacity: 0.85 !important; }
}

<style>
/* ==========================================================
   KEUKENS PAGE-SPECIFIC STYLES
   ========================================================== */

/* Manifesto block — large editorial statement after hero */
.manifesto {
  padding: var(--section-y) 0;
  background: var(--ivory);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 769px) {
  .manifesto-grid { grid-template-columns: 1fr 1.4fr; }
}
.manifesto-heading {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.manifesto-heading em { font-style: italic; font-weight: 300; }
.manifesto-body {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 560px;
}
.manifesto-body p { margin-bottom: 1.2em; }
.manifesto-body p:last-child { margin-bottom: 0; }

/* Materials — image+text rows alternating */
.materials {
  padding: var(--section-y) 0;
}
.materials-head {
  margin-bottom: clamp(48px, 8vw, 96px);
  max-width: 800px;
}
.material-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(56px, 9vw, 120px);
  align-items: center;
}
.material-row:last-child { margin-bottom: 0; }
@media (min-width: 769px) {
  .material-row { grid-template-columns: 1fr 1fr; }
  .material-row.reverse > div:first-child { order: 2; }
}
.material-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.material-text .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--accent);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  display: block;
}
.material-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.material-text h3 em { font-style: italic; font-weight: 300; }
.material-text p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 480px;
}

/* Featured case section — single highlighted project */
.featured-case {
  padding: var(--section-y) 0;
  background: var(--dark-brown);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.featured-case .section-eye { color: var(--sand); }
.featured-case .section-eye .num { color: var(--sand); }
.featured-case .section-eye .line { background: rgba(245, 241, 234, 0.2); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 769px) {
  .featured-grid { grid-template-columns: 1.2fr 1fr; }
}
.featured-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.featured-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.featured-text h2 em { font-style: italic; font-weight: 300; color: var(--sand); }
.featured-text p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.78);
  margin-bottom: 1.4em;
  max-width: 480px;
}
.featured-meta {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin: clamp(32px, 5vw, 48px) 0;
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(245, 241, 234, 0.18);
  flex-wrap: wrap;
}
.featured-meta-item .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
  display: block;
}
.featured-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: clamp(16px, 1.8vw, 20px);
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 241, 234, 0.4);
  padding: 14px 0;
  transition: padding 0.4s ease, border-color 0.4s ease;
}
.featured-link:hover {
  padding-left: 8px;
  border-color: var(--off-white);
}

/* Process steps — numbered */
.process {
  padding: var(--section-y) 0;
}
.process-head { margin-bottom: clamp(48px, 8vw, 80px); }
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: clamp(28px, 4.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 769px) {
  .process-step { grid-template-columns: 80px 1fr 1.5fr; gap: clamp(32px, 5vw, 80px); }
}
.process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--accent);
}
.process-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.process-title em { font-style: italic; font-weight: 300; }
.process-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 540px;
  grid-column: 2 / -1;
}
@media (min-width: 769px) {
  .process-desc { grid-column: 3; margin-top: 0; }
}
@media (max-width: 768px) {
  .process-desc { margin-top: 16px; }
}

/* FAQ */
.faq {
  padding: var(--section-y) 0;
  background: var(--ivory);
}
.faq-head { margin-bottom: clamp(48px, 8vw, 80px); max-width: 720px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(24px, 3.5vw, 32px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: padding 0.4s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
@media (hover: hover) {
  .faq-item summary:hover { padding-left: 12px; }
}
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--warm-grey);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0); }
.faq-content {
  padding: 0 0 clamp(24px, 3.5vw, 32px) 0;
  max-width: 720px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--warm-grey);
}
.faq-content p { margin-bottom: 0.8em; }
.faq-content p:last-child { margin-bottom: 0; }

/* Related services */
.related-services {
  padding: var(--section-y) 0;
}

/* ==========================================================
   BRANDS / APPARATUUR
   ========================================================== */
.brands {
  padding: var(--section-y) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.brands-head {
  margin-bottom: clamp(56px, 9vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (min-width: 769px) {
  .brands-head { grid-template-columns: 1fr 1fr; }
}
.brands-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
.brands-head h2 em { font-style: italic; font-weight: 300; }
.brands-head .body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 480px;
}
.brands-head .body p { margin-bottom: 1em; }
.brands-head .body p:last-child { margin-bottom: 0; }

/* Brand wordmarks grid - editorial, restrained */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.brand-grid > .brand {
  flex: 1 1 calc(50% - 1px);
}
@media (min-width: 641px) {
  .brand-grid > .brand { flex: 1 1 calc(33.333% - 1px); }
}

.brand {
  background: var(--ivory);
  padding: clamp(36px, 5vw, 56px) clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: clamp(140px, 16vw, 180px);
  transition: background 0.4s ease;
  text-align: center;
}
@media (hover: hover) {
  .brand:hover { background: var(--off-white); }
}
.brand-mark {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* Brands footnote */
.brands-foot {
  margin-top: clamp(40px, 6vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
@media (min-width: 641px) {
  .brands-foot { grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 56px); }
}
.brands-foot .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  white-space: nowrap;
}
.brands-foot .text {
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.65;
  color: var(--ink);
  max-width: 640px;
}
.brands-foot .text em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
}
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.related-grid > .related-card,
.related-grid > .related-card--photo {
  flex: 1 1 calc(33.333% - 1px);
  min-width: 240px;
}
@media (max-width: 540px) {
  .related-grid > .related-card,
  .related-grid > .related-card--photo { flex: 1 1 100%; }
}
.related-card {
  background: var(--off-white);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: background 0.4s ease;
}
@media (hover: hover) {
  
}
.related-card .label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.related-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.related-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: gap 0.4s ease;
}
@media (hover: hover) {
  
}

/* Sub-hero with cleaner padding, since this page uses page-hero */
.page-hero .container { max-width: 1500px; }


    /* === Opschoning keukens (consistent met kasten) === */
    .num, .process-num { display: none !important; }
    .footer-col .footer-address {
      font-size: clamp(13px, 1.4vw, 14px);
      opacity: 0.85;
    }

    /* Related-cards met projectfoto */
    .related-card--photo {
      background-size: cover; background-position: center;
      color: var(--off-white);
      min-height: clamp(220px, 26vw, 300px);
      position: relative; overflow: hidden;
    }
    .related-card--photo h3 { color: var(--off-white); }
    .related-card--photo .arrow { color: rgba(245,241,234,0.85); }
    .related-card, .related-card--photo { transition: none; }
    .related-services .reveal { transition: opacity 1.4s ease, transform 1.4s ease; transform: translateY(8px); }
    .related-services .reveal.visible { transform: translateY(0); }
    .related-card--photo::after {
      content: ""; position: absolute; top: 0; left: -60%;
      width: 50%; height: 100%;
      background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%);
      transform: skewX(-12deg); pointer-events: none;
      animation: cardSheen 9s ease-in-out infinite;
    }
    .related-card--photo:nth-child(2)::after { animation-delay: 3s; }
    .related-card--photo:nth-child(3)::after { animation-delay: 6s; }
    @keyframes cardSheen {
      0% { left: -60%; opacity: 0; } 8% { opacity: 1; }
      26% { left: 120%; opacity: 0; } 100% { left: 120%; opacity: 0; }
    }
    @media (prefers-reduced-motion: reduce) { .related-card--photo::after { animation: none; } }

    /* Lucht tussen hero en manifesto herstellen (keukens) */
    .manifesto { padding-top: clamp(72px, 12vw, 160px) !important; }

/* PROJECTEN FILTER + GELIJK RASTER */
.proj-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.proj-filter-btn {
  font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.04em;
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 100px;
  background: transparent; color: var(--warm-grey); cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.proj-filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.proj-filter-btn.is-active { background: var(--ink); color: var(--off-white); border-color: var(--ink); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 900px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card {
  position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 2px; background-size: cover; background-position: center;
  text-decoration: none; color: #fff; transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.proj-card > div { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(18px, 2vw, 24px); }
.proj-card h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(18px, 1.9vw, 22px); line-height: 1.2; margin: 0 0 6px; }
.proj-card .arrow { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: opacity 0.4s ease, transform 0.4s ease; }
.proj-card:hover { transform: translateY(-4px); }
.proj-card:hover .arrow, .proj-card:focus-visible .arrow { opacity: 0.9; transform: translateY(0); }
.proj-card.is-hidden { display: none; }
@media (hover: none) { .proj-card .arrow { opacity: 0.85; transform: none; } }



.footer-word{height:19px;width:auto;display:block;opacity:.95;} /*footer-word*/
.crumbs a:hover{color:var(--accent);} .ld-item a:hover{color:var(--accent);} .manifesto-body a:hover{color:var(--accent);} /*accent-hover*/
.logo{display:inline-flex;align-items:center;gap:12px;line-height:0;}
.logo-mark{height:30px;width:auto;flex:none;display:block;}
.logo-word{height:15px;width:auto;flex:none;display:block;}
@media(max-width:560px){.logo-mark{height:26px;}.logo-word{height:12px;}}
.footer-mark{height:46px;width:auto;flex:none;display:block;opacity:.95;} /*logo-css*/

.header-tel { display:flex; align-items:center; }
.header-tel a { display:inline-flex; align-items:center; gap:7px; font-size:14px; color:inherit; opacity:.9; }
.header-tel a:hover { opacity:1; }
@media (max-width:900px) { .header-tel { display:none; } }
.mobile-bar { position:fixed; left:0; right:0; bottom:0; z-index:300; display:none; grid-template-columns:1fr 1fr; }
.mobile-bar a { display:flex; align-items:center; justify-content:center; gap:9px; padding:16px 10px; font-size:15px; font-weight:500; text-decoration:none; letter-spacing:.01em; }
.mobile-bar a.mb-call { background:var(--off-white,#f3efe7); color:var(--ink,#2b2018); border-top:1px solid var(--line,#d8d0c4); }
.mobile-bar a.mb-wa { background:#2b2018; color:#f3efe7; }
@media (max-width:768px) { .mobile-bar { display:grid; } body { padding-bottom:58px; } }
.crumbs { font-size:12px; letter-spacing:.04em; text-transform:uppercase; color:var(--warm-grey,#8a8175); padding:clamp(18px,3vw,26px) 0; }
.crumbs .container { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.crumbs a { color:inherit; text-decoration:none; opacity:.8; }
.crumbs a:hover { opacity:1; text-decoration:underline; }
.crumbs span.sep { opacity:.45; }
.crumbs span.here { color:var(--ink,#2b2018); }
.footer-social { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; padding:clamp(24px,4vw,32px) 0 0; margin-top:clamp(24px,4vw,32px); border-top:1px solid rgba(255,255,255,.12); }
.footer-tagline { font-family:'Fraunces',serif; font-style:italic; font-size:clamp(16px,2vw,20px); opacity:.92; }
.footer-social-links { display:flex; gap:14px; }
.footer-social-links a { display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.25); border-radius:50%; color:inherit; transition:background .25s,color .25s; }
.footer-social-links a:hover { background:#f3efe7; color:#2b2018; }



.related-card--photo:nth-child(4)::after { animation-delay: 1.5s; }
.related-card--photo:nth-child(5)::after { animation-delay: 4.5s; }
.related-card--photo:nth-child(6)::after { animation-delay: 7.5s; }
.related-card--photo:nth-child(7)::after { animation-delay: 2.5s; }
.related-card--photo:nth-child(8)::after { animation-delay: 5.5s; }
.related-card--photo:nth-child(9)::after { animation-delay: 8.5s; }
