
  /* =========================================================
     DESIGN TOKENS
     ========================================================= */
  :root {
    /* Colors */
    --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);

    /* Fluid spacing */
    --space-xs: clamp(8px, 1.5vw, 12px);
    --space-sm: clamp(16px, 2.5vw, 24px);
    --space-md: clamp(24px, 4vw, 40px);
    --space-lg: clamp(40px, 6vw, 64px);
    --space-xl: clamp(64px, 10vw, 120px);
    --space-2xl: clamp(80px, 14vw, 200px);

    /* Container padding */
    --gutter: clamp(20px, 4vw, 56px);

    /* Section padding */
    --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; }

  /* Cursor — desktop only, only when pointer is fine */
  @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 — desktop with fine pointer only
     ========================================================= */
  .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
     ========================================================= */
  .container {
    width: 100%;
    max-width: 1500px;
    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 {
    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;
    transition: color 0.5s ease;
    position: relative;
    z-index: 60;
  }
  .logo em {
    font-style: italic;
    font-weight: 300;
    opacity: 0.6;
  }

  /* Desktop nav */
  .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;
    transition: opacity 0.3s ease;
  }
  .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; }
  /* kleine onzichtbare brug zodat de muis van knop naar paneel kan zonder sluiten */
  .nav-dd-panel::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

  .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);
  }
  header.scrolled .header-cta:hover {
    background: var(--ink);
    color: var(--off-white);
  }

  /* Mobile toggle */
  .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);
    transform-origin: center;
  }
  .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 */
  .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;
    border: 1px solid rgba(245, 241, 234, 0.4);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--accent);
    border-color: var(--accent);
  }
  .mobile-menu .mm-cta:hover, .mobile-menu .mm-cta:active {
    padding-left: 20px;
  }
  .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;
  }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    height: 100vh;
    height: 100svh; /* small viewport height for mobile */
    min-height: 560px;
    max-height: 1100px;
    overflow: hidden;
    color: var(--off-white);
  }

  @media (max-width: 540px) {
    .hero { min-height: 600px; }
  }

  .hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-slide.active { opacity: 1; }

  .hero-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s linear;
  }
  .hero-slide.active .hero-slide-img {
    transform: scale(1.08);
  }
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(26, 20, 16, 0.35) 0%, rgba(26, 20, 16, 0.2) 35%, rgba(26, 20, 16, 0.75) 100%),
      linear-gradient(90deg, rgba(26, 20, 16, 0.45) 0%, transparent 60%);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-bottom: clamp(80px, 12vh, 140px);
    padding-top: clamp(80px, 14vh, 120px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-eyebrow {
    font-size: clamp(10px, 1.4vw, 12px);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: clamp(20px, 3.5vh, 36px);
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.9;
    overflow: hidden;
  }
  .hero-eyebrow span {
    display: inline-block;
    transform: translateY(100%);
    animation: rise 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .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;
  }
  @keyframes lineGrow { to { transform: scaleX(1); } }
  @keyframes rise { to { transform: translateY(0); } }
  @keyframes fadeIn { to { opacity: 1; } }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(38px, 8vw, 124px);
    line-height: 0.96;
    letter-spacing: -0.032em;
    margin-bottom: clamp(28px, 5vh, 48px);
    max-width: 1400px;
    font-variation-settings: "opsz" 144;
  }
  .hero h1 .line {
    display: block;
    overflow: hidden;
    /* Extra room so descenders (g, q) and the comma/period aren't clipped */
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
  }
  .hero h1 .line > span {
    display: inline-block;
    transform: translateY(110%);
  }
  .hero h1 .line:nth-child(1) > span { animation: rise 1.3s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .hero h1 .line:nth-child(2) > span { animation: rise 1.3s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--sand);
  }

  .hero-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(20px, 4vw, 40px);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-meta-text {
    max-width: 420px;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.6;
    opacity: 0.85;
    flex: 1 1 280px;
  }

  .hero-controls {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
    flex-shrink: 0;
  }
  .hero-counter {
    font-family: 'Fraunces', serif;
    font-size: clamp(13px, 1.4vw, 15px);
    font-feature-settings: 'tnum';
  }
  .hero-counter .cur { font-weight: 500; }
  .hero-counter .sep { margin: 0 8px; opacity: 0.5; }
  .hero-counter .tot { opacity: 0.5; }

  .hero-dots {
    display: flex;
    gap: 10px;
  }
  .hero-dot {
    width: clamp(22px, 3vw, 32px);
    height: 1px;
    background: rgba(245, 241, 234, 0.3);
    padding: 12px 0;
    position: relative;
    transition: background 0.4s ease;
  }
  .hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: rgba(245, 241, 234, 0.3);
    transition: background 0.4s ease;
  }
  .hero-dot.active::before { background: var(--off-white); }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: var(--gutter);
    z-index: 11;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-scroll-line {
    width: 1px;
    height: 32px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }
  .hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    animation: scrollLine 2.5s ease-in-out infinite;
  }
  @keyframes scrollLine { to { top: 200%; } }

  @media (max-width: 768px) {
    .hero-scroll { display: none; }
  }

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

  /* =========================================================
     II — SERVICES
     ========================================================= */
  .services-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: end;
    margin-bottom: clamp(48px, 8vw, 96px);
  }
  @media (min-width: 769px) {
    .services-head {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
  }

  .services-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .services-head h2 em { font-style: italic; font-weight: 300; }
  .services-head p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.65;
    color: var(--warm-grey);
    max-width: 480px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  @media (min-width: 541px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 969px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .service {
    background: var(--dark-brown);
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px) clamp(28px, 4.5vw, 48px);
    position: relative;
    overflow: hidden;
    color: var(--off-white);
    display: flex;
    flex-direction: column;
    min-height: clamp(360px, 50vw, 480px);
  }
  /* Background image — always visible */
  .service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Permanent gradient overlay for text readability */
  .service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 20, 16, 0.15) 0%, rgba(26, 20, 16, 0.4) 50%, rgba(26, 20, 16, 0.85) 100%);
    transition: background 0.6s ease;
  }
  /* Subtle zoom-in on hover */
  @media (hover: hover) {
    .service:hover::before { transform: scale(1.08); }
    .service:hover::after {
      background: linear-gradient(180deg, rgba(26, 20, 16, 0.25) 0%, rgba(26, 20, 16, 0.5) 50%, rgba(26, 20, 16, 0.9) 100%);
    }
  }
  .service > * { position: relative; z-index: 2; }

  .service .s-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--sand);
    font-size: 13px;
    margin-bottom: auto;
  }

  .service h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: clamp(50px, 8vw, 80px);
    color: var(--off-white);
  }
  .service p {
    font-size: clamp(12px, 1.3vw, 13px);
    color: rgba(245, 241, 234, 0.78);
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .service .s-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @media (hover: hover) {
    .service:hover .s-arrow { transform: translateX(8px); }
    .service:hover .s-arrow svg { transform: translateX(4px); }
  }
  .service .s-arrow svg { transition: transform 0.4s ease; }

  /* =========================================================
     III — MANIFEST
     ========================================================= */
  .manifest {
    background: var(--ivory);
    padding: var(--space-2xl) 0;
  }
  .manifest-text {
    max-width: 1100px;
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(24px, 5vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.022em;
  }
  .manifest-text em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .manifest-text .fade-word {
    opacity: 0.18;
    transition: opacity 0.6s ease;
  }
  .manifest-text .fade-word.lit { opacity: 1; }

  /* =========================================================
     IV — PROJECTS
     ========================================================= */
  .projects-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: clamp(40px, 6vw, 80px);
  }
  @media (min-width: 641px) {
    .projects-head {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
    }
  }

  .projects-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .projects-head h2 em { font-style: italic; font-weight: 300; }
  .projects-link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 6px;
    align-self: flex-start;
    flex-shrink: 0;
    transition: opacity 0.3s;
  }
  .projects-link:hover { opacity: 0.6; }

  .projects-scroll {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: var(--gutter);
  }
  .projects-scroll::-webkit-scrollbar { display: none; }

  .projects-track {
    display: flex;
    gap: clamp(16px, 2.5vw, 32px);
    padding: 0 var(--gutter) 8px var(--gutter);
    width: max-content;
  }

  .project-card {
    flex: 0 0 clamp(240px, 72vw, 480px);
    scroll-snap-align: start;
  }

  .project-card.tall { margin-top: clamp(32px, 6vw, 64px); }

  @media (max-width: 540px) {
    /* On small screens, disable staggering for cleaner scroll */
    .project-card.tall { margin-top: 0; }
  }

  .project-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    margin-bottom: clamp(14px, 2vw, 20px);
  }
  .project-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @media (hover: hover) {
    .project-card:hover .project-image-inner { transform: scale(1.05); }
  }

  .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 6px;
    font-size: clamp(10px, 1.1vw, 11px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-grey);
  }
  .project-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.1;
    letter-spacing: -0.015em;
  }
  .project-title em { font-style: italic; font-weight: 300; }

  /* =========================================================
     V — WORKSHOP
     ========================================================= */
  .workshop {
    background: var(--dark-brown);
    color: var(--off-white);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
  }

  .workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
  }
  @media (min-width: 769px) {
    .workshop-grid {
      grid-template-columns: 1fr 1.3fr;
    }
  }

  .workshop .section-eye { color: var(--sand); }
  .workshop .section-eye .num { color: var(--sand); }
  .workshop .section-eye .line { background: rgba(245, 241, 234, 0.2); }

  .workshop h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.028em;
    margin-bottom: clamp(20px, 3vw, 32px);
  }
  .workshop h2 em { font-style: italic; font-weight: 300; color: var(--sand); }

  .workshop p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.7;
    color: rgba(245, 241, 234, 0.75);
    max-width: 460px;
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .workshop-link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 18px 0;
    border-top: 1px solid rgba(245, 241, 234, 0.2);
    border-bottom: 1px solid rgba(245, 241, 234, 0.2);
    width: 100%;
    max-width: 360px;
    justify-content: space-between;
    transition: padding 0.4s ease;
  }
  @media (hover: hover) {
    .workshop-link:hover { padding-left: 8px; padding-right: 8px; }
  }

  .workshop-image {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 540px) {
    .workshop-image { aspect-ratio: 5 / 4; }
  }
  .workshop-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 12s linear;
  }
  .workshop-image.in-view .workshop-image-inner {
    transform: scale(1);
  }

  /* =========================================================
     VI — QUOTE
     ========================================================= */
  .quote-block {
    padding: var(--space-2xl) 0;
    text-align: center;
  }
  .quote-block blockquote {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(24px, 5vw, 64px);
    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;
    line-height: 1.5;
  }
  .quote-block cite strong {
    color: var(--ink);
    font-weight: 500;
    margin-right: 12px;
  }

  /* =========================================================
     VII — AREAS
     ========================================================= */
  .areas {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--space-xl) 0;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
  }
  @media (min-width: 769px) {
    .areas-grid {
      grid-template-columns: 1fr 1.5fr;
    }
  }

  .areas h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 5.5vw, 64px);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .areas h2 em { font-style: italic; font-weight: 300; }
  .areas .areas-intro {
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.6;
    color: var(--warm-grey);
    max-width: 380px;
  }

  .areas-list {
    list-style: none;
    border-top: 1px solid var(--line);
  }
  .areas-list li {
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .areas-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 3vw, 28px) 0;
    position: relative;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 16px;
  }
  @media (hover: hover) {
    .areas-list a:hover { padding-left: 32px; padding-right: 32px; }
  }

  .areas-list .area-name {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 4.5vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
  }
  .areas-list .area-meta {
    font-size: clamp(10px, 1.1vw, 11px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-grey);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  .areas-list .area-arrow {
    width: clamp(20px, 3vw, 32px);
    height: 1px;
    background: var(--warm-grey);
    position: relative;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @media (hover: hover) {
    .areas-list a:hover .area-arrow { width: 56px; background: var(--ink); }
  }
  .areas-list .area-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }

  /* Hide projects count on very narrow screens */
  @media (max-width: 380px) {
    .areas-list .area-meta .meta-count { display: none; }
  }

  .areas-list li::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ivory);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
  }
  @media (hover: hover) {
    .areas-list li:hover::before { transform: translateX(0); }
  }

  /* =========================================================
     VIII — CTA
     ========================================================= */
  .cta-final {
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
  }

  .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, 9vw, 132px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    margin-bottom: clamp(36px, 6vw, 56px);
    max-width: 1200px;
    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;
    max-width: 100%;
    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; }
  }

  .footer-brand {
    /* On 2-col layouts, brand spans both columns; on 4-col it takes 2fr */
  }
  @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);
  }

  /* Respect 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;
    }
    .hero-slide-img { transform: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .manifest-text .fade-word { opacity: 1 !important; }
    .hero-eyebrow span,
    .hero h1 .line > span { transform: none !important; }
    .hero-meta-bar { opacity: 1 !important; }
  }

  /* =========================================================
     LANDSCAPE PHONE TWEAKS
     ========================================================= */
  @media (max-height: 480px) and (orientation: landscape) {
    .hero { min-height: 480px; height: 100vh; }
    .hero-content {
      padding-top: 60px;
      padding-bottom: 40px;
    }
    .hero h1 { font-size: clamp(40px, 8vw, 80px); margin-bottom: 16px; }
    .hero-eyebrow { margin-bottom: 14px; }
  }


/* Footer-adres consistent met de overige contact-items */
.footer-col .footer-address {
  font-size: clamp(13px, 1.4vw, 14px);
  opacity: 0.85;
}
/* Romeinse cijfers verbergen, consistent met de overige pagina's */
.num, .s-num, .typo-num, .detail-num, .step-num { display: none !important; }


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



/* projecten-carrousel: bediening en affordance */
.projects-scroll { cursor: grab; }
.projects-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.projects-scroll.is-dragging .project-card { pointer-events: none; }
.projects-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 var(--gutter);
  margin-top: clamp(20px, 3vw, 28px);
}
.projects-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
}
.projects-arrow:hover { background: var(--ink); color: var(--off-white); }
.projects-arrow:disabled { opacity: 0.25; cursor: default; background: transparent; color: var(--ink); }
.projects-arrow svg { display: block; }
.projects-hint {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-left: 8px;
}
@media (hover: none) { .projects-hint { display: none; } }
