
/* =========================================================
   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>
/* Manifesto block */
.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; }

/* Typologies — 3 column grid showing types of cabinets */
.typologies { padding: var(--section-y) 0; }
.typologies-head { margin-bottom: clamp(48px, 8vw, 96px); max-width: 720px; }
.typo-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px);
}
@media (min-width: 769px) { .typo-grid { grid-template-columns: repeat(3, 1fr); } }
.typo {
  display: flex; flex-direction: column;
}
.typo-img {
  aspect-ratio: 3 / 4;
  background-size: cover; background-position: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.typo-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 13px; color: var(--accent); margin-bottom: 12px;
}
.typo h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.05;
  letter-spacing: -0.018em; margin-bottom: clamp(12px, 2vw, 16px);
}
.typo h3 em { font-style: italic; font-weight: 300; }
.typo p {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.65;
  color: var(--warm-grey);
}

/* Big image with caption */
.showcase {
  padding: 0;
  background: var(--ivory);
}
.showcase-img {
  width: 100%;
  height: clamp(400px, 65vw, 800px);
  background-size: cover; background-position: center;
}
.showcase-caption {
  padding: clamp(40px, 6vw, 64px) 0;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 64px);
}
@media (min-width: 769px) {
  .showcase-caption { grid-template-columns: 1fr 2fr; align-items: start; }
}
.showcase-caption .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-grey);
}
.showcase-caption .text {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.3;
  letter-spacing: -0.012em; max-width: 720px;
}
.showcase-caption .text em { font-style: italic; font-weight: 300; color: var(--accent); }

/* Details — what makes T&T cabinets different */
.details {
  padding: var(--section-y) 0;
  background: var(--dark-brown);
  color: var(--off-white);
}
.details .section-eye { color: var(--sand); }
.details .section-eye .num { color: var(--sand); }
.details .section-eye .line { background: rgba(245, 241, 234, 0.2); }
.details-head { margin-bottom: clamp(48px, 8vw, 80px); }
.details-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 6vw, 80px); line-height: 0.98;
  letter-spacing: -0.028em; max-width: 900px;
}
.details-head h2 em { font-style: italic; font-weight: 300; color: var(--sand); }
.details-list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
}
.detail-row {
  padding: clamp(28px, 4.5vw, 40px) 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.18);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: baseline;
}
@media (min-width: 641px) {
  .detail-row { grid-template-columns: 60px 1fr 2fr; }
}
.detail-num {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-size: clamp(18px, 2vw, 22px);
}
.detail-title {
  font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15; letter-spacing: -0.015em;
}
.detail-desc {
  font-size: clamp(14px, 1.4vw, 16px); line-height: 1.65;
  color: rgba(245, 241, 234, 0.78); max-width: 520px;
  grid-column: 1 / -1; margin-top: 8px;
}
@media (min-width: 641px) { .detail-desc { grid-column: 3; margin-top: 0; } }

/* 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 */
.related-services { padding: var(--section-y) 0; }
.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) {
  
}

    /* Showcase achtergrondvideo (YouTube) — cover-gedrag zonder zwarte balken */
    .showcase-video {
      position: relative;
      width: 100%;
      height: clamp(400px, 65vw, 800px);
      overflow: hidden;
      background: var(--dark-brown, #2b2018);
    }
    .showcase-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      border: 0;
    }

    /* Romeinse nummering verbergen (kasten) — lay-out blijft intact */
    .typo-num, .num, .detail-num { display: none !important; }
    .detail-row { grid-template-columns: 1fr !important; }

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

    /* Showcase-titel als nette accentregel i.p.v. uppercase label (kasten) */
    .showcase-caption .label.showcase-titel {
      text-transform: none;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: clamp(13px, 1.4vw, 15px);
      letter-spacing: 0.02em;
      color: var(--accent);
    }

    /* Related-cards met projectfoto (kasten) */
    .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); }
    @media (hover: hover) {
      
      
    }

    /* Andere disciplines: subtiele auto-animatie, geen hover (kasten) */
    .related-card, .related-card--photo { transition: none; }

    /* Reveal verzacht: alleen zacht infaden, minimale verschuiving */
    .related-services .reveal { transition: opacity 1.4s ease, transform 1.4s ease; transform: translateY(8px); }
    .related-services .reveal.visible { transform: translateY(0); }

    /* Heel subtiele, trage glans die vanzelf over elke foto-kaart trekt.
       Trekt het oog zonder muis, zonder opdringerig te zijn. */
    .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; }
    }

    /* Footer-adres consistent met de overige contact-items (kasten) */
    .footer-col .footer-address {
      font-size: clamp(13px, 1.4vw, 14px);
      opacity: 0.85;
    }


.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; }
