  /* =========================================================
     ROOT TOKENS
     ========================================================= */
  :root {
    --blue: #5DA3D9;
    --blue-deep: #3B7FB5;
    --blue-ink: #1F4F73;
    --ink: #0E1820;
    --ink-soft: #2A3540;
    --paper: #FAFAF7;
    --cream: #F1ECE2;
    --concrete: #E7E3DA;
    --line: rgba(14, 24, 32, 0.12);
    --line-strong: rgba(14, 24, 32, 0.24);
    --muted: #6C7681;

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container: 1340px;
    --gutter: clamp(1.5rem, 5vw, 3rem);
  }

  /* =========================================================
     RESET
     ========================================================= */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
  }
  img, video { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

  /* =========================================================
     LAYOUT
     ========================================================= */
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }

  /* =========================================================
     NAVIGATION
     ========================================================= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  }
  .nav.scrolled {
    background: rgba(250, 250, 247, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    transition: color 0.35s ease;
  }
  .nav.scrolled .logo,
  .nav.dark-text .logo { color: var(--ink); }

  .logo-img {
    height: 46px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .nav.scrolled .logo-img { height: 40px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    padding-bottom: 4px;
  }
  .nav.scrolled .nav-links a,
  .nav.dark-text .nav-links a { color: var(--ink); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  /* right-side actions cluster */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }

  /* language toggle */
  .lang-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.35s ease;
  }
  .lang-toggle button {
    padding: 0.5rem 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    opacity: 0.75;
  }
  .lang-toggle button:hover { opacity: 1; }
  .lang-toggle button.active {
    background: var(--blue);
    color: #fff;
    opacity: 1;
  }
  .nav.scrolled .lang-toggle,
  .nav.dark-text .lang-toggle { border-color: var(--line-strong); }
  .nav.scrolled .lang-toggle button,
  .nav.dark-text .lang-toggle button { color: var(--ink); }
  .nav.scrolled .lang-toggle button.active,
  .nav.dark-text .lang-toggle button.active { background: var(--blue); color: #fff; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--blue);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(93, 163, 217, 0.35);
  }
  .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
  }
  .btn-dark {
    background: var(--ink);
    color: #fff;
  }
  .btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
  .btn .arrow { transition: transform 0.3s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 14px 11px;
  }
  .nav-toggle span {
    height: 1.5px;
    background: #fff;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .nav.scrolled .nav-toggle span,
  .nav.menu-open .nav-toggle span { background: var(--ink); }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--paper);
    padding: 6rem var(--gutter) 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 90;
    box-shadow: 0 12px 40px rgba(14, 24, 32, 0.12);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu ul { list-style: none; }
  .mobile-menu li {
    border-top: 1px solid var(--line);
  }
  .mobile-menu li:last-child { border-bottom: 1px solid var(--line); }
  .mobile-menu a {
    display: block;
    padding: 1.1rem 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .mobile-menu .btn { margin-top: 1.75rem; width: 100%; justify-content: center; }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--ink);
  }
  .hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--ink);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .hero-media.ready video { opacity: 1; }
  .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(14, 24, 32, 0.55) 0%,
      rgba(14, 24, 32, 0.25) 35%,
      rgba(14, 24, 32, 0.5) 70%,
      rgba(14, 24, 32, 0.85) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  .hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: currentColor;
    opacity: 0.6;
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.75rem, 7.5vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    max-width: 18ch;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.35s ease forwards;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
  }
  .hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    max-width: 52ch;
    opacity: 0;
    animation: fadeUp 1s 0.55s ease forwards;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s 0.75s ease forwards;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: max(var(--gutter), env(safe-area-inset-left));
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, currentColor, transparent);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #fff);
    animation: scrollDown 2.2s ease-in-out infinite;
  }

  @keyframes scrollDown {
    0% { top: -60%; }
    100% { top: 120%; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* =========================================================
     SECTIONS — GENERAL
     ========================================================= */
  section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

  .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
  }
  .eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--blue);
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.2vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 22ch;
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--blue-deep);
  }
  .section-lead {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.65;
    color: var(--muted);
    max-width: 58ch;
    font-weight: 400;
  }

  /* =========================================================
     INTRO / MANIFEST
     ========================================================= */
  .intro {
    background: var(--paper);
  }
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: stretch;
  }
  .intro-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    min-height: 100%;
  }
  .intro-photo img {
    width: 100%;
    height: 100%;
    min-height: clamp(420px, 48vw, 640px);
    object-fit: cover;
    transition: transform 0.9s ease;
  }
  @media (hover: hover) {
    .intro-photo:hover img { transform: scale(1.03); }
  }
  .intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .intro-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-deep);
    padding-top: 0.75rem;
    border-top: 1px solid var(--line-strong);
    margin-bottom: 1.75rem;
    align-self: flex-start;
  }
  .intro-statement {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .intro-statement em {
    font-style: italic;
    color: var(--blue-deep);
  }
  .intro-body {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  /* =========================================================
     STATS BANNER
     ========================================================= */
  .stats {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .stat {
    padding: 0.5rem 0;
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
  }
  .stat-value {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .stat-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    max-width: 22ch;
  }

  /* =========================================================
     PILLARS / USPs
     ========================================================= */
  .pillars { background: var(--paper); }
  .pillars-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .pillar {
    background: var(--paper);
    padding: 3rem 2.5rem;
    transition: background 0.4s ease;
    position: relative;
    cursor: default;
  }
  @media (hover: hover) {
    .pillar:hover { background: #fff; }
  }
  .pillar-number {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--blue-deep);
    margin-bottom: 2rem;
  }
  .pillar-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.75rem;
    color: var(--blue-deep);
  }
  .pillar h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--ink);
  }
  .pillar p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.975rem;
  }

  /* =========================================================
     PROJECTS / VOOR WIE
     ========================================================= */
  .projects {
    background: var(--ink);
    color: #fff;
  }
  .projects .eyebrow { color: var(--blue); }
  .projects .eyebrow::before { background: var(--blue); }
  .projects .section-title { color: #fff; }
  .projects .section-title em { color: var(--blue); }
  .projects .section-lead { color: rgba(255,255,255,0.7); }

  .projects-header { margin-bottom: 5rem; max-width: 60ch; }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .project-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--ink-soft);
  }
  .project-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  @media (hover: hover) {
    .project-card:hover img { transform: scale(1.06); }
  }
  .project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 24, 32, 0.95) 0%, rgba(14, 24, 32, 0.3) 50%, transparent 100%);
  }
  .project-meta {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    z-index: 2;
  }
  .project-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--blue);
    margin-bottom: 0.85rem;
    display: block;
  }
  .project-meta h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  /* =========================================================
     TRADES / VAKGEBIEDEN
     ========================================================= */
  .trades { background: var(--cream); }
  .trades-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: end;
  }
  .trades-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .trades-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    border-top: 1px solid var(--line-strong);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: padding 0.3s ease, color 0.3s ease;
    cursor: default;
  }
  @media (hover: hover) {
    .trades-list li:hover {
      padding-left: 1rem;
      color: var(--blue-deep);
    }
  }
  .trades-list li:last-child,
  .trades-list li:nth-last-child(2) {
    border-bottom: 1px solid var(--line-strong);
  }
  .trades-list .trade-num {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--blue-deep);
  }
  /* alternating columns share top borders */
  .trades-list li:nth-child(odd) {
    border-right: 1px solid var(--line-strong);
    padding-right: 1.5rem;
  }
  .trades-list li:nth-child(even) {
    padding-left: 1.5rem;
  }

  /* =========================================================
     CONTACT CTA
     ========================================================= */
  .contact {
    background: var(--cream);
    padding: clamp(6rem, 12vw, 10rem) 0;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--line-strong);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: end;
  }
  .contact-headline {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
  }
  .contact-headline em {
    font-style: italic;
    color: var(--blue-deep);
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-info-item {
    border-top: 1px solid var(--line-strong);
    padding-top: 1.25rem;
  }
  .contact-info-item .label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 0.5rem;
    display: block;
  }
  .contact-info-item .value {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 0.25s ease;
  }
  .contact-info-item a:hover .value { color: var(--blue-deep); }
  .contact-cta {
    margin-top: 3rem;
  }

  /* =========================================================
     FOOTER
     ========================================================= */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo { color: #fff; }
  .footer-brand p {
    margin-top: 1.5rem;
    max-width: 36ch;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
  }
  footer h5 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
    font-weight: 500;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 0.7rem; }
  footer ul a, footer address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-style: normal;
    line-height: 1.65;
    transition: color 0.2s ease;
  }
  footer ul a:hover { color: var(--blue); }
  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }

  /* =========================================================
     SCROLL REVEAL
     ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
  .reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }

  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-photo img { min-height: clamp(300px, 60vw, 440px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .pillars-header { grid-template-columns: 1fr; gap: 2rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trades-header { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  @media (max-width: 720px) {
    body { font-size: 16px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-content { padding-top: 7rem; padding-bottom: 7rem; }
    .hero-title { max-width: 14ch; }
    .hero-subtitle { font-size: 1.05rem; max-width: 38ch; }
    .hero-scroll { bottom: 1.5rem; font-size: 0.65rem; }
    .hero-actions { gap: 0.75rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .pillar { padding: 2.5rem 1.75rem; }
    .pillar h3 { font-size: 1.4rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .trades-list { grid-template-columns: 1fr; }
    .trades-list li:nth-child(odd) { border-right: none; padding-right: 0; }
    .trades-list li:nth-child(even) { padding-left: 0; }
    .trades-list li:not(:last-child) { border-bottom: none; }
    .trades-list li { padding: 1.25rem 0; font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
    .logo-img,
    .nav.scrolled .logo-img { height: 38px; }
    .nav-actions { gap: 0.6rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .intro-photo img { min-height: clamp(280px, 70vw, 400px); }
    .section-title { max-width: 16ch; }
    .contact-info-item { padding-top: 1rem; }
    .contact-cta { width: 100%; justify-content: center; }
  }

  @media (max-width: 380px) {
    .nav-cta { display: none; }
    .lang-toggle button { padding: 0.55rem 0.7rem; font-size: 0.65rem; }
  }

  /* =========================================================
     TOUCH DEVICE TUNING — enforce 44px tap targets, kill sticky-hover
     ========================================================= */
  @media (pointer: coarse) {
    .lang-toggle button {
      padding: 0.85rem 1.05rem;
      min-height: 44px;
      font-size: 0.72rem;
    }
    .nav-links a {
      padding: 0.75rem 0;
    }
    .mobile-menu a {
      padding: 1.25rem 0;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .btn { min-height: 44px; }
    .contact-info-item a {
      display: block;
      padding: 0.25rem 0;
    }
    footer ul a {
      display: inline-block;
      padding: 0.35rem 0;
    }
  }

  /* =========================================================
     REDUCED MOTION — respect OS preference
     ========================================================= */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal,
    .reveal-stagger > * {
      opacity: 1 !important;
      transform: none !important;
    }
    .hero-eyebrow,
    .hero-title,
    .hero-subtitle,
    .hero-actions {
      animation: none !important;
      opacity: 1 !important;
    }
    .scroll-line::after { display: none; }
  }

  /* =========================================================
     LEGAL / STATIC CONTENT PAGES
     ========================================================= */
  body.legal-page .nav {
    background: rgba(250, 250, 247, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
  }
  body.legal-page .nav .logo,
  body.legal-page .nav-links a,
  body.legal-page .lang-toggle button { color: var(--ink); }
  body.legal-page .lang-toggle { border-color: var(--line-strong); }
  body.legal-page .lang-toggle button.active { background: var(--blue); color: #fff; }
  body.legal-page .nav-toggle span { background: var(--ink); }

  .legal-hero {
    padding: clamp(9rem, 14vw, 13rem) 0 clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--line);
  }
  .legal-hero .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .legal-content {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(6rem, 10vw, 10rem);
    min-height: 40vh;
  }
  .legal-content .container { max-width: 820px; }
  .legal-placeholder {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* =========================================================
     LEGAL DOCUMENT TYPOGRAPHY (Algemene voorwaarden, etc.)
     ========================================================= */
  .legal-meta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-top: 4rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--line);
  }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.005em;
  }
  .legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 1rem;
  }
  .legal-content .legal-intro {
    color: var(--ink-soft);
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
  }
  .legal-content ol.legal-list {
    list-style: none;
    counter-reset: legal;
    padding-left: 0;
    margin: 0.25rem 0 1.5rem 0;
  }
  .legal-content ol.legal-list > li {
    counter-increment: legal;
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
    font-size: 1rem;
  }
  .legal-content ol.legal-list > li::before {
    content: counter(legal, lower-alpha) ")";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--muted);
    width: 1.75rem;
  }
  .legal-content ol.legal-list > li strong { color: var(--ink); font-weight: 600; }
  .legal-footer-block {
    margin-top: 4.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-style: normal;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .legal-footer-block strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  /* Bulleted lists, inline links, contact block for legal pages */
  .legal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0.25rem 0 1.5rem 0;
  }
  .legal-content ul > li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--ink-soft);
    font-size: 1rem;
  }
  .legal-content ul > li::before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
  }
  .legal-content a {
    color: var(--blue-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
  }
  .legal-content a:hover { color: var(--blue-ink); }

  .legal-contact-block {
    margin: 1.5rem 0 0;
    padding: 1.5rem 1.75rem;
    background: var(--cream);
    border-left: 3px solid var(--blue);
  }
  .legal-contact-block strong {
    display: block;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
  }
  .legal-contact-block p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Language-toggle for static content pages: hide the non-active block.
     Triggered by html[lang] which the i18n script (site.js) already sets. */
  .lang-block { display: block; }
  html[lang="nl"] .lang-block[lang="en"],
  html[lang="en"] .lang-block[lang="nl"] { display: none; }
