/* ============================================================
   style.css — Voogd Medical

   Cascade layers keep the refactor visually identical to the
   original inline-styled markup:
     reset  < state < base
   • base  = former inline styles, now reusable classes. As the
             highest layer its normal declarations win over the
             state hover/focus rules — exactly as inline styles did.
     • state = interaction rules (hover, focus, transitions). Its
             !important rules (underline, toc) still beat base, just
             as they beat inline styles before.
   ============================================================ */

@layer state {
  /* ============================================================
   style.css — shared interaction & component styles
   Voogd Medical

   Layout and colour are set through inline styles on the markup
   (exported from the original design). This file holds the shared
   hover / focus / transition behaviour, keyframes, and the small
   number of per-page variants (scoped with a body class).
   ============================================================ */

  /* ---- Keyframes -------------------------------------------- */
  @keyframes vm-dot-drop {
    0% {
      transform: translateY(-15px); 
      opacity: 0;
    }
    72% {
      transform: translateY(2px);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes vm-logo-dot {
    0% {
      transform: translateY(-46px);
      opacity: 0;
    }
    70% {
      transform: translateY(6px);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* ---- Base links ------------------------------------------- */
  /* The home page styles its links entirely inline, so the default
   link colour is applied to every page except the home page. */
  body:not(.page-home) a {
    color: #24301c;
  }
  body:not(.page-home) a:hover {
    color: #29231b;
  }

  /* ---- Buttons & arrows (all pages) ------------------------- */
  [data-btn] {
    transition:
      transform 0.18s ease,
      filter 0.18s ease;
  }
  [data-btn]:hover {
    transform: translateY(-1px);
    filter: brightness(0.97);
  }
  [data-btn] span:last-child {
    transition: transform 0.18s ease;
  }
  [data-btn]:hover span:last-child {
    transform: translateX(3px);
  }

  [data-arrow] {
    transition: transform 0.18s ease;
  }
  [data-card]:hover [data-arrow],
  [data-btn]:hover [data-arrow] {
    transform: translateX(3px);
  }

  /* ---- Nav links -------------------------------------------- */
  [data-navlight] {
    transition: color 0.18s ease;
  }
  [data-navlight]:hover {
    color: #fbf6ee;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }

  /* ---- Underline hover -------------------------------------- */
  [data-underline]:hover {
    text-decoration: underline !important;
    text-decoration-color: #9f5432 !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    color: #944D2E !important;
}
  [data-underline]:hover > span:last-child {
    color: #9f5432;
  }

  /* ---- Cards: default (service pages) ----------------------- */
  [data-card] {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  [data-card]:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -28px rgba(20, 14, 9, 0.7);
  }

  /* Cards with images that zoom on hover (service pages only) */
  .page-bewindvoering [data-card] img,
  .page-mentorschap [data-card] img,
  .page-ondercuratelestelling [data-card] img,
  .page-medische-verklaringen [data-card] img {
    transition: transform 0.6s ease;
  }
  .page-bewindvoering [data-card]:hover img,
  .page-mentorschap [data-card]:hover img,
  .page-ondercuratelestelling [data-card]:hover img,
  .page-medische-verklaringen [data-card]:hover img {
    transform: scale(1.05);
  }

  /* Medische verklaringen: slightly softer card lift */
  .page-medische-verklaringen [data-card] {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }
  .page-medische-verklaringen [data-card]:hover {
    box-shadow: 0 22px 46px -22px rgba(20, 14, 9, 0.55);
  }
  .page-medische-verklaringen [data-card] img {
    transition: transform 0.5s ease;
  }

  /* ---- Contact form ----------------------------------------- */
  input,
  textarea {
    font-family: "Inter", sans-serif;
  }
  input::placeholder,
  textarea::placeholder {
    color: #a99a85;
  }
  input:focus,
  textarea:focus {
    outline: 2px solid #9f5432;
    outline-offset: 1px;
    border-color: #9f5432;
  }

  /* ---- FAQ accordion ---------------------------------------- */
  details > summary {
    list-style: none;
    cursor: pointer;
  }
  details > summary::-webkit-details-marker {
    display: none;
  }
  details [data-plus] {
    transition: transform 0.2s ease;
  }
  details[open] [data-plus] {
    transform: rotate(45deg);
  }
  details > summary:hover {
    color: #000000;
  }

  /* ---- Table-of-contents buttons (legal pages) -------------- */
  [data-toc]:hover {
    background: #eae0cf !important;
    color: #29231b !important;
  }

  /* ============================================================
   Home page overrides
   ============================================================ */
  .page-home a:focus-visible,
  .page-home button:focus-visible {
    outline: 3px solid var(--vm-accent, #b7e4a8);
    outline-offset: 3px;
    border-radius: 6px;
  }
  
  .page-home a,
  .page-home button {
    transition:
      color 0.18s ease,
      background-color 0.18s ease,
      border-color 0.18s ease,
      transform 0.18s ease,
      box-shadow 0.18s ease,
      filter 0.18s ease;
  }

  .page-home [data-nav]:hover {
    color: #29231b;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  
  .page-home [data-navlight]:hover {
    color: #f5eee0;
  }

  .page-home [data-underline]:hover {
    text-decoration-color: #c6784e !important;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
  }
  
  .page-home [data-btn][data-underline]:hover {
    text-decoration-color: #9f5432 !important;
  }

  .page-home [data-card] {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }
  
  .page-home [data-card]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -14px rgba(41, 35, 27, 0.3);
    border-color: #c7b698;
  }

  .page-home [data-step] {
    transition: transform 0.18s ease;
  }
  
  .page-home [data-step]:hover {
    transform: translateY(-2px);
  }
  
}

@layer base {
  /* ---- Shared / reusable classes ---- */

  /* ×171 link */
  .footer-link {
    text-decoration: none;
    color: #d8cbb4;
  }

  /* ×48 link */
  .nav-link {
    text-decoration: none;
    color: #7a6e5e;
  }

  /* ×48 link */
  .footer-link-soft {
    text-decoration: none;
    color: rgba(245, 238, 224, 0.82);
  }

  /* ×31 */
  .logo-svg {
    height: 100%;
    width: 100%;
    display: block;
    overflow: visible;
  }

  /* ×30 */
  .u-1 {
    transform-box: fill-box;
    transform-origin: center;
    animation: none 0.7s cubic-bezier(0.34, 1.4, 0.5, 1) both;
  }

  /* ×30 text */
  .footer-heading {
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b7e4a8;
    margin-bottom: 18px;
  }

  /* ×30 */
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
  }

  /* ×25 surface */
  .bg-sand {
    background: #f3e9db;
  }

  /* ×24 */
  .text-mint {
    color: #b7e4a8;
  }

  /* ×21 */
  .section {
    padding: clamp(60px, 8vw, 112px) clamp(20px, 4vw, 44px);
  }

  /* ×21 */
  .u-2 {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: clamp(16px, 1.8vw, 22px) 0;
    border-top: 1px solid rgba(245, 238, 224, 0.16);
  }

  /* ×21 */
  .u-3 {
    flex: none;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
    color: #c6784e;
  }

  /* ×19 text */
  .u-4 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
  }

  /* ×16 */
  .logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: auto;
  }

  /* ×16 surface */
  .u-5 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #b7e4a8;
    color: #24301c;
    padding: 8px 8px 8px 18px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
  }

  /* ×16 surface */
  .u-6 {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #24301c;
    color: #b7e4a8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  /* ×16 */
  .u-7 {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: clamp(16px, 1.8vw, 22px) 0;
    border-top: 1px solid #d9cdb8;
  }

  /* ×16 */
  .u-8 {
    flex: none;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
    color: #9f5432;
  }

  /* ×15 */
  .u-9 {
    display: block;
    width: 150px;
    height: 28px;
  }

  /* ×15 */
  .inline-flex {
    display: inline-flex;
  }

  /* ×15 */
  .u-10 {
    display: block;
    width: 146px;
    height: 27px;
  }

  /* ×15 text */
  .u-11 {
    font-family: "Inter", sans-serif;
    color: #bcb29b;
    margin: 14px 0 0;
    max-width: 30ch;
    font-size: 16px;
  }

  /* ×15 */
  .u-12 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: 22px;
    border-top: 1px solid rgba(245, 238, 224, 0.14);
    font-family: "Space Mono", monospace;
    font-size: 12.5px;
    color: #8a7e68;
  }

  /* ×15 link */
  .footer-meta-link {
    text-decoration: none;
    color: #8a7e68;
  }

  /* ×14 surface */
  .u-13 {
    background: #f3e9db;
    color: #29231b;
    font-family: "Newsreader", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ×14 surface */
  .u-14 {
    background: #29231b;
    color: #ede7d6;
    font-family: "Newsreader", Georgia, serif;
  }

  /* ×14 */
  .u-15 {
    padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 44px)
      clamp(28px, 3vw, 40px);
  }

  /* ×14 */
  .u-16 {
    border-top: 1px solid rgba(245, 238, 224, 0.14);
  }

  /* ×14 grid */
  .u-17 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    margin-top: clamp(44px, 6vw, 72px);
  }

  /* ×13 link */
  .footer-link-faint {
    color: #fff;
    text-decoration: none;
  }

  /* ×13 */
  .u-18 {
    color: #fff;
  }

  /* ×13 text */
  .u-19 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0;
    text-wrap: balance;
  }

  /* ×13 surface */
.u-20 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #24301c;
    color: #b7e4a8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
}

  /* ×12 text */
  .u-21 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0 0 clamp(20px, 2.4vw, 28px);
    text-wrap: balance;
  }

  /* ×12 text */
  .u-22 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0;
    max-width: 60ch;
  }

  /* ×12 text */
  .u-23 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #e4d8c6;
  }

  /* ×12 grid */
  .u-24 {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(28px, 5vw, 88px);
    align-items: start;
  }

  /* ×11 text */
  .u-25 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: clamp(16px, 1.8vw, 22px);
  }

  /* ×11 text */
  .u-26 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0;
  }

  /* ×11 */
  .u-27 {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(15px, 2.6vw, 34px);
  }

  /* ×11 text */
  .u-28 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0;
    max-width: 46ch;
  }

  /* ×10 */
  .u-29 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  /* ×10 surface */
  .u-30 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #b7e4a8;
    color: #24301c;
    padding: 13px 13px 13px 28px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
  }

    .u-30:hover {
      background: #944D2E;
      color: #FBF6EE;
      border-color: #944D2E;
    }
    
    .u-94:hover {
      background: #944D2E;
      color: #FBF6EE;
      border-color: #944D2E;
    }
    
    .u-88:hover {
        color: #944D2E;
    }

  /* ×10 surface */
  .u-31 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: transparent;
    color: #f5eee0;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(245, 238, 224, 0.35);
  }
  
   .u-31:hover {
          background: #944D2E;
          color: #FBF6EE;
          border-color: #944D2E;
      }

  /* ×10 */
    .u-32 {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #716a60;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        line-height: 15px;
    }

  /* ×9 surface */
  .u-33 {
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    padding: 11px 16px;
    border-radius: 10px;
    background: transparent;
    color: #7a6e5e;
    font-weight: 400;
    transition:
      background 0.16s ease,
      color 0.16s ease;
  }

  /* ×9 */
  .u-34 {
    display: none;
  }

  /* ×9 surface */
  .u-35 {
    background: #24301c;
    color: #ede7d6;
  }

  /* ×9 text */
  .u-36 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    max-width: 20ch;
    text-wrap: balance;
  }

  /* ×9 */
  .u-37 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: 10px;
  }

  /* ×9 text */
  .u-38 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
  }

  /* ×8 */
  .u-39 {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 26px);
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
  }

  /* ×8 surface */
  .u-40 {
    position: relative;
    overflow: hidden;
    background: #1a130d;
    min-height: clamp(600px, 88vh, 900px);
    display: flex;
    flex-direction: column;
  }

  /* ×8 surface */
  .u-41 {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        ellipse 92% 62% at 50% 47%,
        rgba(16, 11, 7, 0.52) 0%,
        rgba(16, 11, 7, 0.16) 56%,
        rgba(16, 11, 7, 0) 82%
      ),
      linear-gradient(
        180deg,
        rgba(16, 11, 7, 0.58) 0%,
        rgba(16, 11, 7, 0.3) 26%,
        rgba(16, 11, 7, 0.44) 58%,
        rgba(16, 11, 7, 0.88) 100%
      );
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  /* ×8 */
  .u-42 {
    position: relative;
    z-index: 2;
  }

  /* ×8 */
  .u-43 {
    padding: 20px clamp(20px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  /* ×8 */
  .u-44 {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 26px);
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: 14px;
  }

  /* ×8 */
  .u-45 {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 44px)
      clamp(104px, 13vw, 168px);
  }

  /* ×8 text */
  .u-46 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 238, 224, 0.82);
    margin-bottom: clamp(22px, 2.6vw, 32px);
  }

  /* ×8 text */
  .u-47 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
    margin: clamp(26px, 3vw, 36px) 0 0;
    max-width: 46ch;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
  }

  /* ×8 */
  .u-48 {
    z-index: 2;
  }

  /* ×8 */
    .u-49 {
        padding: 0 clamp(20px, 4vw, 44px) clamp(24px, 3vw, 40px);
        font-family: "Space Mono", monospace;
        font-size: 12px;
        letter-spacing: 0.04em;
        color: rgba(245, 238, 224, 0.6);
        padding-left: 0 !important;
    }

  /* ×8 */
  .u-50 {
        color: #ffffff;
    }

  /* ×8 text */
  .u-51 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #f5eee0;
    margin: 0;
    text-wrap: balance;
  }

  /* ×8 surface */
  .u-52 {
    background: #efe3d0;
  }

  /* ×8 */
  .u-53 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
  }

  /* ×8 surface */
  .u-54 {
    width: 100%;
    font-size: 16px;
    color: #29231b;
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 8px;
    padding: 13px 15px;
  }

  /* ×8 */
  .u-55 {
    border-top: 1px solid #e4d8c6;
  }

  /* ×8 */
  .u-56 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: baseline;
    padding: clamp(20px, 2.4vw, 28px) 0;
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: #29231b;
  }

  /* ×8 text */
  .u-57 {
    font-family: "Space Mono", monospace;
    color: #5b8a4b;
    font-size: 26px;
    line-height: 1;
    flex: none;
  }

  /* ×8 text */
  .u-58 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0 0 clamp(22px, 2.6vw, 30px);
    max-width: 70ch;
  }

  /* ×8 */
  .u-59 {
    padding: clamp(16px, 1.8vw, 22px) 0;
    border-top: 1px solid rgba(245, 238, 224, 0.16);
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
  }

  /* ×7 */
  .u-60 {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(245, 238, 224, 0.16);
  }

  /* ×7 surface */
  .u-61 {
    background: #29231b;
    color: #ede7d6;
  }

  /* ×6 surface */
  .u-62 {
    background: #fbf6ee;
    border-bottom: 1px solid #e4d8c6;
    font-family: "Newsreader", Georgia, serif;
  }

  /* ×6 */
  .u-63 {
    padding: 14px clamp(20px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  /* ×6 text */
  .u-64 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0;
  }

  /* ×6 */
  .u-65 {
    position: relative;
    display: block;
    min-height: clamp(300px, 32vw, 380px);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #f5eee0;
  }

  /* ×6 surface */
  .u-66 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      rgba(20, 14, 9, 0.9) 0%,
      rgba(20, 14, 9, 0.42) 55%,
      rgba(20, 14, 9, 0.12) 100%
    );
  }

  /* ×6 text */
  .u-67 {
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b7e4a8;
    margin-bottom: 10px;
  }

  /* ×6 */
  .u-68 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* ×6 text */
  .u-69 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0;
  }

  /* ×6 */
  .u-70 {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(245, 238, 224, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex: none;
  }

  /* ×6 */
  .u-71 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }

  /* ×5 link */
  .u-72 {
    color: #7a6e5e;
    text-decoration: none;
  }

  /* ×5 */
  .u-73 {
    color: #b7a78f;
  }

  /* ×5 */
  .u-74 {
    color: #9f5432;
  }

  /* ×5 text */
  .u-75 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: clamp(18px, 2vw, 26px) auto 0;
  }

  /* ×5 surface */
    .u-76 {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #24301c;
        color: #b7e4a8;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        line-height: 1.5;
    }

  /* ×5 */
    .u-77 {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

  /* ×5 surface */
.u-78 {
    width: clamp(40px, 6vw, 80px);
    height: clamp(40px, 6vw, 80px);
    border-radius: 50%;
    background: #b7e4a8;
    color: #24301c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(17px, 1.7vw, 24px);
    flex: none;
}

  /* ×5 text */
  .u-79 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #29231b;
    margin: clamp(12px, 1.4vw, 20px) 0 0;
  }

  /* ×5 */
  .u-80 {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ×5 text */
  .u-81 {
    font-family: "Inter", sans-serif;
    color: #bcb29b;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    margin: 0 0 34px;
    max-width: 46ch;
  }

  /* ×5 */
  .u-82 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ×5 surface */
  .u-83 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #b7e4a8;
    color: #24301c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Newsreader", serif;
    font-weight: 600;
    font-size: 20px;
  }

  /* ×5 surface */
  .u-84 {
    margin-top: 18px;
    width: 100%;
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 14px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ×5 text */
  .u-85 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.15;
    margin: 0;
    color: #29231b;
  }

  /* ×5 text */
  .u-86 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0;
  }

  /* ×5 text */
  .u-87 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
  }

  /* ×5 */
  .u-88 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f5eee0;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
  }

  /* ×4 */
  .u-89 {
    padding: clamp(24px, 3.25vw, 48px) clamp(20px, 4vw, 44px)
      clamp(48px, 6vw, 80px);
  }

  /* ×4 text */
  .u-90 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #7a6e5e;
    margin-bottom: clamp(40px, 6vw, 72px);
  }

  /* ×4 */
  .u-91 {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* ×4 surface */
  .u-92 {
    height: 1px;
    background: #e4d8c6;
  }

  /* ×4 text */
  .u-93 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.025em;
    color: #f5eee0;
    margin: 0;
    text-shadow: 0 2px 34px rgba(0, 0, 0, 0.4);
  }

  /* ×4 surface */
  .u-94 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #b7e4a8;
    color: #24301c;
    padding: 15px 15px 15px 30px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    margin-top: clamp(32px, 3.6vw, 44px);
  }

  /* ×4 grid */
  .u-95 {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
  }

  /* ×4 grid */
  .u-96 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(16px, 1.8vw, 24px);
  }

  /* ×4 */
  .u-97 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

  /* ×4 surface */
  .u-98 {
    background: #29231b;
    color: #ede7d6;
    position: relative;
    overflow: hidden;
  }

  /* ×4 */
  .u-99 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  /* ×4 surface */
  .u-100 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(41, 35, 27, 0.74) 0%,
      rgba(41, 35, 27, 0.64) 45%,
      rgba(41, 35, 27, 0.82) 100%
    );
  }

  /* ×4 */
  .u-101 {
    position: relative;
    z-index: 1;
  }

  /* ×4 */
  .u-102 {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ×4 text */
  .u-103 {
    font-family: "Inter", sans-serif;
    color: #bcb29b;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
    margin: 0 0 36px;
    max-width: 46ch;
  }

  /* ×4 text */
  .u-104 {
    font-family: "Space Mono", monospace;
    color: #d8cbb4;
    font-size: 14px;
    line-height: 1.6;
    margin: 28px 0 0;
    max-width: 68ch;
  }

  /* ×4 */
  .u-105 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
  }

  /* ×4 text */
  .u-106 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: #f5eee0;
    margin: 0;
    text-shadow: 0 2px 34px rgba(0, 0, 0, 0.4);
  }

  /* ×4 grid */
  .u-107 {
    display: grid;
    grid-template-columns: clamp(58px, 6vw, 80px) minmax(140px, 165px) minmax(
        0,
        1fr
      );
    gap: clamp(20px, 3vw, 44px);
    align-items: stretch;
  }

  /* ×4 surface */
  .u-108 {
    flex: 1;
    width: 2px;
    background: #e4d8c6;
    margin: 0px 0 0;
  }

  /* ×4 text */
  .u-109 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #4a4034;
    margin: clamp(12px, 1.4vw, 20px) 0 clamp(44px, 5.5vw, 80px);
    max-width: 62ch;
  }

  /* ×4 */
  .u-110 {
    padding: 100px;
  }

  /* ×4 */
  .u-111 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
  }

  /* ×4 */
  .u-112 {
    border-top: 2px solid #b7e4a8;
    padding-top: 20px;
  }

  /* ×4 text */
  .u-113 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 10px;
  }

  /* ×4 text */
  .u-114 {
    font-family: "Inter", sans-serif;
    color: #bcb29b;
    font-size: 15.5px;
    margin: 0;
  }

  /* ×4 grid */
  .u-115 {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(28px, 5vw, 88px);
    align-items: start;
  }

  /* ×3 */
  .u-116 {
    padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 44px);
  }

  /* ×3 text */
  .u-117 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0 0 clamp(20px, 3.4vw, 44px);
    text-wrap: balance;
  }

  /* ×3 grid */
  .u-118 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(28px, 4.5vw, 72px);
    align-items: start;
  }

  /* ×3 surface */
  .u-119 {
    height: 1px;
    background: #e4d8c6;
    margin: clamp(30px, 5.5vw, 72px) 0;
  }

  /* ×3 */
  .u-120 {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #d9cdb8;
  }

  /* ×3 */
  .u-121 {
    padding: clamp(56px, 7.5vw, 104px) clamp(20px, 4vw, 44px);
  }

  /* ×3 */
  .u-122 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: clamp(22px, 2.6vw, 32px);
  }

  /* ×3 */
  .u-123 {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 6px 0;
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    color: #4a4034;
  }

  /* ×3 surface */
  .u-124 {
    flex: none;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #9f5432;
  }

  /* ×3 surface */
  .u-125 {
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 240px;
  }

  /* ×3 surface */
  .u-126 {
    position: relative;
    height: 158px;
    overflow: hidden;
    background: #241a12;
  }

  /* ×3 surface */
  .u-127 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #b7e4a8;
  }

  /* ×3 */
  .u-128 {
    padding: clamp(24px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* ×3 text */
  .u-129 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.08;
    margin: 0 0 6px;
  }

  /* ×3 text */
  .u-130 {
    font-family: "Inter", sans-serif;
    color: #8a7c68;
    margin: 0 0 26px;
    font-size: 16px;
  }

  /* ×3 */
  .u-131 {
    margin-top: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #24301c;
    font-family: "Space Mono", monospace;
    font-size: 13px;
    font-weight: 700;
  }

  /* ×3 */
  .u-132 {
    position: relative;
    display: block;
    min-height: clamp(360px, 40vw, 440px);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #f5eee0;
  }

  /* ×3 surface */
  .u-133 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      rgba(20, 14, 9, 0.9) 0%,
      rgba(20, 14, 9, 0.45) 48%,
      rgba(20, 14, 9, 0.15) 100%
    );
  }

  /* ×3 text */
  .u-134 {
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b7e4a8;
    margin-bottom: 12px;
  }

  /* ×3 text */
  .u-135 {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #e4d8c6;
    margin: 0 0 22px;
    max-width: 34ch;
  }

  /* ×3 */
  .u-136 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(245, 238, 224, 0.45);
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    font-size: 14px;
  }

  /* ×3 */
  .u-137 {
    display: flex;
    gap: 18px;
    align-items: baseline;
    padding: clamp(18px, 2vw, 26px) 0;
    border-top: 1px solid #e4d8c6;
  }

  /* ×2 */
  .u-138 {
    padding: clamp(24px, 3vw, 44px) clamp(20px, 4vw, 44px) clamp(64px, 9vw, 120px);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(32px, 5vw, 72px);
    align-items: flex-start;
  }

  /* ×2 */
  .u-139 {
    position: sticky;
    top: 24px;
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  /* ×2 text */
  .u-140 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: 14px;
    padding-left: 16px;
  }

  /* ×2 surface */
  .u-141 {
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    padding: 11px 16px;
    border-radius: 10px;
    background: #efe3d0;
    color: #9f5432;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #9f5432;
    transition:
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
  }

  /* ×2 */
  .u-142 {
    flex: 3 1 440px;
    min-width: 0;
  }

  /* ×2 */
  .u-143 {
    display: block;
  }

  /* ×2 surface */
  .u-144 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid #e4d8c6;
    border-radius: 999px;
    background: #fbf6ee;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #29231b;
    cursor: pointer;
  }

  /* ×2 */
  .u-145 {
    accent-color: #9f5432;
    width: 16px;
    height: 16px;
  }

  /* ×2 text */
  .u-146 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a6e5e;
    padding-top: clamp(20px, 2.4vw, 28px);
    border-top: 1px solid #e4d8c6;
    margin-bottom: clamp(18px, 2vw, 24px);
  }

  /* ×2 grid */
  .u-147 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 1.8vw, 22px);
    margin-bottom: 0;
  }

  /* ×2 */
  .u-148 {
    padding: clamp(26px, 3vw, 36px) 0;
    border-bottom: 1px solid #e4d8c6;
  }

  /* ×2 text */
  .u-149 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: 14px;
  }

  /* ×2 surface */
  .u-150 {
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 16px;
    padding: clamp(20px, 3vw, 40px);
    display: flex;
    flex-direction: column;
  }

  /* ×2 text */
  .u-151 {
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #24301c;
    margin-bottom: 16px;
  }

  /* ×2 text */
  .u-152 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(21px, 2.6vw, 30px);
    line-height: 1.08;
    margin: 0 0 14px;
  }

  /* ×2 text */
  .u-153 {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0 0 28px;
  }

  /* ×2 */
  .u-154 {
    margin-top: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #24301c;
    font-family: "Space Mono", monospace;
    font-size: 13.5px;
    font-weight: 700;
  }

  /* ×2 */
  .u-155 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #c9b99e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  /* ×2 surface */
  .u-156 {
    background: #efe3d0;
    border-top: 1px solid #e4d8c6;
    border-bottom: 1px solid #e4d8c6;
  }

  /* ×2 surface */
  .u-157 {
    position: relative;
    overflow: hidden;
    background: #241a12;
  }

  /* ×2 text */
  .u-158 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0;
    min-height: 2.12em;
    display: flex;
    align-items: flex-end;
  }

  /* ×2 surface */
  .u-159 {
    height: 1px;
    background: #d9cdb8;
    margin: clamp(16px, 1.8vw, 20px) 0 clamp(18px, 2vw, 24px);
  }

  /* ×2 */
  .u-160 {
    max-width: 46ch;
  }

  /* ×2 text */
  .u-161 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0 0 clamp(18px, 1.6vw, 22px);
  }

  /* ×2 surface */
  .u-162 {
    display: flex;
    flex-direction: column;
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 20px;
    padding: clamp(20px, 3vw, 42px);
  }

  /* ×2 text */
  .u-163 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #29231b;
  }

  /* ×2 text */
  .u-164 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #29231b;
    margin: clamp(18px, 2vw, 24px) 0 clamp(14px, 1.6vw, 18px);
    text-wrap: balance;
  }

  /* ×2 text */
  .u-165 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #9f5432;
    margin: 14px 0 0;
  }

  /* ×2 */
  .u-166 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }

  /* ×2 surface */
  .u-167 {
    position: relative;
    display: block;
    min-height: clamp(300px, 32vw, 380px);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #f5eee0;
    background: #241a12;
  }

  /* ×2 surface */
  .u-168 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      rgba(20, 14, 9, 0.92) 0%,
      rgba(20, 14, 9, 0.48) 55%,
      rgba(20, 14, 9, 0.18) 100%
    );
  }

  /* ×2 text */
  .u-169 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #e4d8c6;
    margin: 0 0 20px;
    max-width: 36ch;
  }

  /* ×2 */
  .u-170 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(245, 238, 224, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  /* ---- Single-use classes (externalised one-off styles) ---- */
  .u-171 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 58%;
  }
  .u-172 {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
  }
  .u-173 {
    padding: clamp(24px, 3.25vw, 48px) clamp(20px, 4vw, 44px)
      clamp(36px, 5vw, 60px);
  }
  .u-174 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #7a6e5e;
    margin-bottom: clamp(28px, 4vw, 48px);
  }
  .u-175 {
    max-width: 62ch;
    margin: 0 auto;
    text-align: center;
  }
  .u-176 {
    height: 1px;
    background: #e4d8c6;
    margin-top: clamp(34px, 4.5vw, 56px);
  }
  .u-177 {
    padding: clamp(24px, 3vw, 44px) clamp(20px, 4vw, 44px)
      clamp(64px, 9vw, 120px);
  }
  .u-178 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(36px, 5vw, 80px);
    align-items: flex-start;
  }
  .u-179 {
    flex: 1.6 1 380px;
    min-width: 0;
  }
  .u-180 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0 0 clamp(26px, 3vw, 38px);
  }

  .u-182 {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: #29231b;
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 8px;
    padding: 14px 15px;
    resize: vertical;
  }
  .u-183 {
    margin-bottom: clamp(26px, 3vw, 36px);
  }
  .u-184 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: 0px;
  }
  
  
  input:focus, textarea:focus {
    outline: 0;
    outline-offset: 0;
    border-color: #9f5432;
}

header.site-header.transparent.mob-open {
    background: #FBF6EE;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.u-185 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border: 0;
    padding: 0;
    margin: 0;
}
  
.u-186 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 1.8vw, 22px);
    margin-bottom: clamp(26px, 3vw, 25px);
    justify-content: center;
    align-items: self-start;
    margin-top: 15px;
}

.u-186 p {
    padding: 0;
    margin: 0;
}

.u-187 {
    text-transform: none;
    letter-spacing: 0;
    color: #a0937e;
}

.teliform .in .u-187,
.teliform .in .u-188 {
    color: #a0937e;
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 500;
}


  .u-188 {
    display: none;
    text-transform: none;
    letter-spacing: 0;
    color: #9f5432;
  }
  .u-189 {
    display: none;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #9f5432;
    margin-top: 8px;
  }
  .u-190 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 1.8vw, 22px);
    margin-bottom: clamp(10px, 1.2vw, 14px);
  }
  .u-191 {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #7a6e5e;
    margin: 0 0 clamp(28px, 3.2vw, 40px);
  }
  .u-192 {
    display: none;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #9f5432;
    margin: 0 0 14px;
  }
  .u-193 {
    display: flex;
    justify-content: flex-end;
  }
  
    .u-194 {
        border: none;
        cursor: pointer;
        background: url('../images/ep-right-v2.svg'), #b7e4a8;
        background-repeat: no-repeat;
        background-position: 93% 15px;
        background-size: 23px;
        color: #24301c;
        padding: 13px 49px 14px 28px;
        border-radius: 999px;
        font-family: "Space Mono", monospace;
        font-size: 15px;
        line-height: 25px;
        font-weight: 700;
        white-space: inherit;
        transition: .3s;
    }
    .u-194:hover {
          background: url('../images/ep-right-v2.svg'), #944D2E;
          color: #FBF6EE;
          border-color: #944D2E;
        background-repeat: no-repeat;
        background-position: 93% 15px;
        background-size: 23px;
        transition: .3s;
      }
      
  .u-195 {
    flex: 1 1 260px;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .u-196 {
    padding-bottom: clamp(26px, 3vw, 36px);
    border-bottom: 1px solid #e4d8c6;
  }
  .u-197 {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: 16px;
  }
  .u-198 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .u-199 {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(20px, 2vw, 32px) clamp(20px, 4vw, 44px)
      clamp(64px, 9vw, 120px);
  }
  .u-200 {
    border-bottom: 1px solid #e4d8c6;
  }
  .u-201 {
    color: #24301c;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .u-202 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: clamp(30px, 3.6vw, 52px);
  }
  .u-203 {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .u-204 {
    display: grid;
    grid-template-columns: clamp(58px, 6vw, 80px) minmax(140px, 165px) minmax(
        0,
        1fr
      );
    gap: clamp(20px, 3vw, 44px);
    align-items: start;
  }
  .u-205 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #4a4034;
    margin: clamp(12px, 1.4vw, 20px) 0 0;
    max-width: 62ch;
  }
  .u-206 {
    --vm-accent: #b7e4a8;
    background: #f3e9db;
    color: #29231b;
    font-family: "Newsreader", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  .u-207 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(251, 246, 238, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e4d8c6;
    transform: translateY(-102%);
    transition: transform 0.25s ease;
    will-change: transform;
  }
  .u-208 {
    padding: 11px clamp(20px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .u-209 {
    position: relative;
    overflow: hidden;
    background: #1c130c;
    min-height: clamp(600px, 86vh, 880px);
    display: flex;
    flex-direction: column;
  }
.u-210 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    transform: scaleX(-1);
    top: 0;
    left: 0;
}
  .u-211 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(24, 16, 10, 0.93) 0%,
      rgba(24, 16, 10, 0.74) 38%,
      rgba(24, 16, 10, 0.34) 72%,
      rgba(24, 16, 10, 0.12) 100%
    );
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
    .page-over-ons .u-41 {
        background: transparent;
    }
    
    .page-wilsbekwaamheid .u-41 {
        background: transparent;
    }

    .page-hoe-het-werkt .u-41 {
        background: transparent;
    }

    .u-40::after {
        position: absolute;
        content: " ";
        inset: 0;
        background: linear-gradient(90deg, rgba(24, 16, 10, 0.93) 0%, rgba(24, 16, 10, 0.74) 38%, rgba(24, 16, 10, 0.34) 72%, rgba(24, 16, 10, 0.12) 100%);
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

  .u-209::after {
    position: absolute;
    content: " ";
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 16, 10, 0.93) 0%, rgba(24, 16, 10, 0.74) 38%, rgba(24, 16, 10, 0.34) 72%, rgba(24, 16, 10, 0.12) 100%);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

  .u-212 {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(24, 16, 10, 0.6), transparent 44%);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .u-213 {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 24px clamp(20px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .u-214 {
    display: block;
    width: 168px;
    height: 31px;
  }
  .u-215 {
    transform-box: fill-box;
    transform-origin: center;
    animation: vm-logo-dot 0.7s cubic-bezier(0.34, 1.4, 0.5, 1) both;
  }
  .u-216 {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 44px)
      clamp(56px, 8vw, 104px);
  }
  .u-217 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: #f5eee0;
    margin: 0 0 24px;
    max-width: min(100%, 720px);
  }
  .u-218 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
    max-width: 46ch;
    margin: 0 0 36px;
  }
  .u-219 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .u-220 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #b7e4a8;
    color: #24301c;
    padding: 12px 12px 12px 26px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
  }
  .u-220:hover {
      background: #944D2E;
      color: #FBF6EE;
  }
  
  .u-221 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: transparent;
    color: #f5eee0;
    padding: 12px 12px 12px 26px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(245, 238, 224, 0.35);
  }
  .u-221:hover {
      background: #944D2E;
      color: #FBF6EE;
      border-color: #944D2E;
  }
  .u-222 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(245, 238, 224, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .u-223 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 14px 0 clamp(30px, 4vw, 48px);
  }
  .u-224 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 2.5vw, 28px);
  }
  .u-225 {
    padding: clamp(52px, 7vw, 92px) clamp(20px, 4vw, 44px);
  }
  .u-226 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b7e4a8;
  }
  .u-227 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: clamp(24px, 3vw, 44px);
    margin-top: clamp(28px, 3.5vw, 44px);
  }
  .u-228 {
    max-width: 52ch;
    margin-bottom: clamp(32px, 4vw, 48px);
  }
  .u-229 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 14px 0 16px;
  }
  .u-230 {
    text-decoration: underline;
    text-decoration-color: #9f5432;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
  }
  .u-231 {
    font-family: "Inter", sans-serif;
    color: #7a6e5e;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    margin: 0;
  }
  .u-232 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
  }
  .u-233 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 14px 0 clamp(34px, 4.5vw, 56px);
  }
  .u-234 {
    position: relative;
  }
  .u-235 {
    position: absolute;
    top: 21px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e4d8c6;
    z-index: 0;
  }
  .u-236 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 22px);
  }
  .u-237 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      0deg,
      rgba(24, 16, 10, 0.55),
      rgba(24, 16, 10, 0.42)
    );
  }
  .u-238 {
    position: relative;
    z-index: 1;
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px);
  }
  .u-239 {
    background: #fbf6ee;
    border: 1px solid #e4d8c6;
    border-radius: 20px;
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(24px, 3vw, 44px);
    align-items: center;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
  }
  .u-240 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 14px 0 14px;
  }
  .u-241 {
    font-family: "Inter", sans-serif;
    color: #7a6e5e;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
  .u-242 {
    justify-self: start;
  }
  .u-243 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #b7e4a8;
    color: #24301c;
    padding: 13px 13px 13px 26px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    font-weight: 700;
    transition: .3s;
  }
  
  .u-243:hover {
    background: #944D2E;
    color: #FBF6EE;
    transition: .3s;
}

  .u-244 {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px)
      clamp(28px, 3vw, 40px);
  }
  .u-245 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .u-246 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    max-width: 20ch;
  }
  .u-247 {
    font-family: "Inter", sans-serif;
    color: #bcb29b;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    margin: 0 0 36px;
    max-width: 46ch;
    transition: .3s;
  }
  
  .u-248:hover {
      background:#944D2E;
      color: #FBF6EE;
      transition: .3s;
  }
  
  .u-248 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #b7e4a8;
    color: #24301c;
    padding: 13px 13px 13px 28px;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 15.5px;
    font-weight: 700;
  }
  .u-249 {
    color: #d8cbb4;
    font-size: 14px;
    line-height: 1.6;
    font-family: "Space Mono", monospace;
    margin: 28px 0 0;
    max-width: 68ch;
  }
  .u-250 {
    border-top: 1px solid rgba(245, 238, 224, 0.14);
    margin-top: clamp(48px, 7vw, 88px);
  }
  .u-251 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    margin-top: clamp(56px, 8vw, 104px);
  }
  .u-252 {
    padding: clamp(26px, 3.5vw, 50px) clamp(20px, 4vw, 44px)
      clamp(30px, 4vw, 48px);
  }
  .u-253 {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(24px, 3.5vw, 56px);
    align-items: start;
  }
  .u-254 {
    height: 1px;
    background: #e4d8c6;
    margin-top: clamp(32px, 4.5vw, 56px);
  }
  .u-255 {
    padding: 0 clamp(20px, 4vw, 44px) clamp(52px, 7vw, 96px);
  }
  .u-256 {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin-bottom: clamp(20px, 2.4vw, 30px);
  }
  .u-257 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 1.8vw, 24px);
  }
  .u-258 {
    font-family: "Space Mono", monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #7a6e5e;
    margin: clamp(22px, 2.6vw, 30px) 0 0;
  }
  .u-259 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(40px, 6vw, 96px);
    max-width: 1160px;
  }
  .u-260 {
    padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px)
      clamp(20px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .u-261 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 30px;
    max-width: none;
  }
  .u-262 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  .u-263 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: clamp(280px, 32vw, 420px);
    background: #241a12;
  }
  .u-264 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(16, 11, 7, 0.22),
      rgba(16, 11, 7, 0.5)
    );
  }
  .u-265 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(24, 16, 10, 0.74) 0%,
      rgba(24, 16, 10, 0.58) 42%,
      rgba(24, 16, 10, 0.74) 100%
    );
  }
  .u-266 {
    position: relative;
    z-index: 1;
    padding: clamp(52px, 7vw, 96px) clamp(20px, 4vw, 44px);
  }
  .u-267 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #f5eee0;
    margin: 0 0 clamp(26px, 3vw, 40px);
    text-wrap: balance;
  }
  .u-268 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(18px, 2vw, 28px);
    align-items: stretch;
  }
  .u-269 {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }
  .u-270 {
    font-family: "Space Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9f5432;
  }
  .u-271 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
    margin: clamp(26px, 3vw, 40px) auto 0;
    max-width: 70ch;
    text-align: center;
  }
  .u-272 {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e4d8c6;
  }
  .u-273 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #e4d8c6;
    margin: 0;
    max-width: 46ch;
  }
  .u-274 {
    padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 44px);
  }
  .u-275 {
    height: 1px;
    background: #e4d8c6;
    margin-bottom: clamp(40px, 5vw, 64px);
  }
  .u-276 {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: clamp(28px, 5vw, 88px);
    align-items: baseline;
  }
  .u-277 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0;
    text-wrap: balance;
  }
  .u-278 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #24301c;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.5;
  }
  .u-279 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(41, 35, 27, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: none;
  }
  .u-280 {
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.8vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    margin: 0 0 clamp(28px, 3.5vw, 44px);
    text-wrap: balance;
  }
  .u-281 {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.5;
    color: #decfb4;
    margin: 0 0 clamp(24px, 2.6vw, 32px);
    max-width: 46ch;
  }

.teliform .in p {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.teliform .in p label.u-37 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.teliform p {
    margin: 10px 0 0px;
}


.u-185 .u-145 span.wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid #e4d8c6;
    border-radius: 999px;
    background: #fbf6ee;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #29231b;
    cursor: pointer;
}

.u-185 .u-145 span.wpcf7-list-item.first {
    margin: 0 !important;
}

.u-9 .logo_main {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.u-214 .logo_main {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* latest */

:root {
 --gutter: 80px;
}

.container {
 width: 100%;
 max-width: 1280px;
 margin-inline: auto;
 padding-inline: var(--gutter) !important;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #9f5432 !important;
    text-align: center;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #9f5432;
}

.u-98 img.u-99 {
    display: none;
}

.u-60 .u-2 {
    display: block;
}

.u-60 .u-2 .u-3 {
    display: none;
}

.u-120 .u-7 {
    display: block;
}

.u-120 .u-7 .u-8 {
    display: none;
}

.u-60 .u-2 .u-3 {
     display: none;
}

/* 404 */

body.error404, 
body.search.search-no-results, 
body.search.search-results {
    justify-content: center;
    align-items: center;
    background: radial-gradient(1100px 700px at 12% -10%, #f4f1e5 0%, transparent 60%), #efece2;
    min-height: 100vh;
    color: #1c2b2a;
    display: flex;
    flex-direction: column;
}

.page_not_found_main, .no-results.not-found {
    background: #f8f6ee;
    border: 1px solid #d8d2bf;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 18px 40px -24px rgba(28, 43, 42, 0.35);
    padding: clamp(32px, 5vw, 56px) clamp(28px, 6vw, 60px) clamp(36px, 5vw, 52px);
    text-align: center;
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.page_not_found_main::after {
    position: absolute;
    content: " ";
    right: -132px;
    top: -197px;
    height: 350px;
    width: 350px;
    background: #33473e;
    border-radius: 350px;
    mix-blend-mode: color-burn;
    opacity: 0.5;
}

.page_not_found_main h1.page-title, 
.no-results.not-found h1.page-title {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: clamp(30px, 4.6vw, 44px);
    line-height: 1.08;
    margin: 10px 0 18px;
}

body.error404 input.search-submit, 
body.search.search-no-results input.search-submit, 
body.search.search-results input.search-submit {
    border: 0;
    background: #33473e;
    color: #f2efe4;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 0 22px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-radius: 0 10px 10px 0;
}

body.search.search-results header.entry-header h2.entry-title {
    margin: 0;
    padding: 2px;
}

body.search.search-results header.entry-header h2.entry-title a {
    font-size: 18px;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body.search.search-results header.page-header h1.page-title {
    font-size: 25px;
}

.page_not_found_main .title_404 p {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: clamp(40px, 6.6vw, 94px);
    line-height: 1.08;
    margin: 10px 0 18px;
}

.page_not_found_main .suggestions .label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1c2b2a;
    margin-bottom: 0px;
    margin-top: 30px;
    font-weight: 700;
    border-bottom: 1px solid #d8d2bf;
    padding-bottom: 13px;
}

.page_not_found_main .links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page_not_found_main .suggestions {
    margin-top: 15px;
}


.page_not_found_main .suggestions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 17px;
    line-height: 0;
    font-weight: 500;
    color: #24301c;
    padding: 12px 4px;
    border-bottom: 1px solid #d8d2bf;
    transition: color 0.15s ease, padding-left 0.15s ease;
    width: max-content;
    margin: 0 auto;
    background: #b6e2a4;
    padding: 0 20px 0 14px;
    height: 50px;
    border-radius: 50px;
    gap: 10px;
}

.page_not_found_main .suggestions a:hover {
    background: #944D2E;
    color: #FBF6EE !important;
}

.page_not_found_main .suggestions a span.arrow {
    transform: rotate(-180deg);
    background: #24301c;
    color: #fff;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    font-size: 12px;
}

body.error404 header.site-header.transparent {
    background: #FBF6EE;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

body.error404 .site-header.transparent .logo img.logo_desk {
    display: none;
}

body.error404 .site-header.transparent .logo img.logo_mob {
    display: block;
}

body.error404 .site-header.transparent a {
    color: #222;
}

/* latest nave bar */

body.menu-open {
    overflow: hidden;
}

/* ====  HEADER ====== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .35s ease;
    padding: 16px 0;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled, .site-header.header-new {
    background: #FBF6EE;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo {
    height: 28px;
    width: 150px;
}

.site-header .logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.site-header.transparent img.logo_mob {
    display: none;
}

.site-header.header-new img.logo_mob {
    display: block;
}

.site-header.scrolled img.logo_desk, .site-header.header-new img.logo_desk {
    display: none;
}

header.site-header.transparent.mob-open img.logo_desk {
    display: none;
}

header.site-header.transparent.mob-open img.logo_mob {
    display: block;
}

.site-header.scrolled .logo {
    color: #222;
}

.desktop-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 26px);
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.desktop-menu a {
    color: #FBF6EE;
    text-decoration: none;
    transition: .3s;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.site-header.scrolled .desktop-menu a, .site-header.header-new a {
    color: #222;
}

.header-btn {
    padding: 4px 10px 4px 18px;
    border-radius: 40px;
    background: #B8E5A6;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.header-btn:hover {
    background: #944D2E;
    color: #FBF6EE !important;
}

.header-btn:hover svg path {
    fill: #FBF6EE;
}

.header-btn span {
    height: 25px;
    width: 25px;
    background: #24301c;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-btn span svg {
    height: 80%;
    width: 80%;
}

.header-btn span svg path {
    fill: #fff;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #FBF6EE;
}

.site-header.scrolled .menu-toggle {
    color: #222;
}

.page-medische-verklaringen .u-252 {
    padding-top: 15vh !important;
}

.u-173, .u-89  {
    padding-top: 11vh !important;
}

/* privacy policy */

.privacyverklaring {
    position: relative;
    padding: 57px 0;
}

.privacyverklaring .priva_row.m-done {
    display: grid;
    grid-template-columns: 33% 60%;
    gap: 7%;
}

.privacyverklaring .sticky_nave {
    position: sticky;
    top: 100px;
}

.privacyverklaring .left_nave_title p {
    font-family: "Space Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #29231b;
    margin-bottom: 7px;
    padding-left: 0px;
}

.privacyverklaring  .left_nave_title {
    position: relative;
    border-bottom: 1px solid #9f5432;
    margin-bottom: 15px;
}

.privacyverklaring .left_nave li.nave_v1 {
    position: relative;
    padding-left: 0;
}

.privacyverklaring .left_nave ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacyverklaring .left_nave li.nave_v1 a {
    cursor: pointer;
    border: none;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    padding: 11px 12px;
    border-radius: 10px;
    background: transparent;
    color: #7a6e5e;
    font-weight: 400;
    transition: background 0.16s ease, color 0.16s ease;
    text-decoration: none;
    display: block;
}

.privacyverklaring .left_nave li.nave_v1.m-done.active a {
    border-radius: 5px;
    background: rgb(239, 227, 208);
    color: rgb(159, 84, 50);
    font-weight: 600;
    box-shadow: rgb(159, 84, 50) 2px 0px 0px inset;
}

.privacyverklaring .content .detail p {
    font-family: "Inter", sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.5;
    color: #7a6e5e;
    margin: 0;
}

.privacyverklaring .content .sub_title p {
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a6e5e;
    margin: 0;
    padding: 0 0 10px;
}

.privacyverklaring .content {
    margin-bottom: 60px;
}

.privacyverklaring .content .title {
    margin: 0 !important;
    font-family: "Newsreader", serif;
    font-weight: 500;
    font-size: clamp(16px, 3vw, 30px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #29231b;
    text-wrap: balance;
    padding: 3px 0 8px;
}

.privacyverklaring .content .title p {
    margin: 0 !important;
    padding: 0 !important;
}

.privacyverklaring .content .title.u-21 p {
    margin: 0 !important;
}
/* end privacy policy */

/* ==== MOBILE MENU ===== */

.mobile-menu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    transition: .35s;
    padding: 80px 24px;
    z-index: 99;
}

.mobile-menu.active {
    top: 0;
    background: #FBF6EE;
}

.mobile-menu ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0px;
}

.mobile-menu li.nave_link.active a {
    color: #944D2E;
    text-decoration: underline;
}

.mobile-menu li {
    margin-bottom: 16px;
}

.mobile-menu a {
    text-decoration: none;
    color: #222;
    font-family: "Inter", sans-serif;
}

.site-header.mob-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
    display: block;
    background: black;
    position: absolute;
    top: 13px;
}

.site-header.mob-open .menu-toggle span:first-child {
    transform: rotate(45deg);
    display: block;
    background: black;
    position: absolute;
    top: 13px;
}

.site-header.mob-open .menu-toggle span {
    display: none;
}

.menu-toggle span {
    height: 2px;
    width: 95%;
    display: block;
    background: #FBF6EE;
    margin: 0 auto;
}

.site-header.header-new .menu-toggle span {
    background: #24301c;
}

.site-header.scrolled .menu-toggle span {
    background: #222222;
}

.desktop-menu .nave_link.active a {
    transition: color .18s ease;
}


.desktop-menu .nave_link.active a,
.desktop-menu .nave_link:hover a,
.desktop-menu .nave_link:hover a:focus-visible {
    color: #944D2E;
}

/* ===== HERO ==== */

.hero {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?w=1600") center/cover;
    background-size: cover;
    width: 100%;
}

.custom-from span.field-optional {
    color: #a0937e;
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 500;
}

.custom-from span.field-verplicht {
    color: #a0937e;
    font-family: "Space Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 500;
}

.custom-from .wpcf7-not-valid-tip {
    font-weight: normal !important;
    display: block !important;
    font-family: "Space Mono", monospace;
    font-size: 11px !important;
    letter-spacing: 0.02em;
    color: #9f5432 !important;
    margin-top: 10px;
}

.custom-from .wpcf7 form.sent .wpcf7-response-output {
    border-color: #b7e4a8;
    text-align: center;
    color: #358335;
    font-family: "Space Mono", monospace;
    font-size: 11px !important;
    letter-spacing: 0.02em;
}