/* ── Section 1 ── */
    .ct-section-1 {
      /* top = standard section pad; bottom = overlap space for Section 2 + card pull-up (desktop only) */
      padding: var(--section-pad-y) 0 280px;
      background: #fff;
    }
    .ct-grid-1 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 64px);
      align-items: center;
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    .ct-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--e-global-color-primary, #38C4EA);
      margin: 0 0 16px;
    }
    .ct-heading {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(30px, 3.8vw, 52px);
      line-height: 1.1;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }
    .ct-lead {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--e-global-color-text-dim, #4A5568);
      margin: 0 0 36px;
    }
    .ct-divider {
      height: 1px;
      background: var(--e-global-color-border, #E2E8F0);
      margin: 0 0 36px;
    }
    .ct-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px 32px;
    }
    .ct-info-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .ct-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }
    .ct-info-header svg {
      width: 16px;
      height: 16px;
      color: var(--e-global-color-primary, #38C4EA);
      flex-shrink: 0;
    }
    .ct-info-header span {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: var(--e-global-color-text, #0F1A2E);
    }
    .ct-info-item p {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--e-global-color-text-mute, #8A92A3);
      margin: 0 0 4px;
    }
    .ct-info-item a {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: var(--e-global-color-text-dim, #4A5568);
      text-decoration: none;
      display: inline-block;
      align-self: flex-start;
      position: relative;
      transition: color .2s;
    }
    .ct-info-item a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--e-global-color-primary, #38C4EA);
      transition: width .35s cubic-bezier(.4,0,.2,1);
    }
    .ct-info-item a:hover {
      color: var(--e-global-color-primary, #38C4EA);
    }
    .ct-info-item a:hover::after {
      width: 100%;
    }

    /* Photo grid */
    .ct-photos {
      display: grid;
      grid-template-columns: 56% 44%;
      gap: 12px;
    }
    .ct-photos__col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ct-photos__col--offset {
      padding-top: 72px;
    }
    .ct-photos img {
      width: 100%;
      border-radius: 0;
      object-fit: cover;
      display: block;
    }
    .ct-photos__col:first-child img:nth-child(1) { height: 310px; }
    .ct-photos__col:first-child img:nth-child(2) { height: 190px; }
    .ct-photos__col--offset img:nth-child(1) { height: 195px; }
    .ct-photos__col--offset img:nth-child(2) { height: 305px; }

    /* ── Section 2 ── */
    .ct-section-2 {
      /* top pad large to clear the desktop overlap; bottom = standard section pad */
      padding: 150px 0 var(--section-pad-y);
      background: var(--e-global-color-bg-soft, #F7F8FB);
      position: relative;
      z-index: 2;
      margin-top: -160px;
    }
    .ct-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 64px);
      align-items: start;
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    .ct-label--white {
      color: var(--e-global-color-text-mute, #8A92A3);
    }
    .ct-form-heading {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(36px, 4vw, 54px);
      line-height: 1.1;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 20px;
      letter-spacing: -0.02em;
    }
    .ct-form-lead {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: var(--e-global-color-text-dim, #4A5568);
      margin: 0;
    }

    /* Form card */
    .ct-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      margin-top: -260px;
      position: relative;
      z-index: 3;
    }
    .ct-card-title {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 22px;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 8px;
    }
    .ct-card-sub {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--e-global-color-text-mute, #8A92A3);
      margin: 0 0 28px;
    }
    .ct-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .ct-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .ct-field label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--e-global-color-text, #0F1A2E);
    }
    .req {
      color: var(--e-global-color-primary, #38C4EA);
    }
    .ct-field input,
    .ct-field textarea,
    .ct-field select {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding: 12px 16px;
      border-radius: 10px;
      border: 1.5px solid var(--e-global-color-border, #E2E8F0);
      background: transparent;
      color: var(--e-global-color-text, #0F1A2E);
      outline: none;
      transition: border-color .2s, background .2s;
      width: 100%;
      box-sizing: border-box;
    }
    .ct-field input:focus,
    .ct-field textarea:focus,
    .ct-field select:focus {
      border-color: var(--e-global-color-primary, #38C4EA);
      background: #fff;
    }
    .ct-field textarea {
      resize: vertical;
    }
    .ct-submit {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 10px;
      background: var(--e-global-color-primary, #38C4EA);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: background .2s;
      margin-top: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .ct-submit:hover {
      background: #28aed0;
    }

    /* ── Section 3: Locations ── */
    .ct-section-3 {
      /* shares grey bg with Section 2 above; reduced top keeps the gap deliberate, bottom = standard pad */
      padding: clamp(24px, 3vw, 40px) 0 var(--section-pad-y);
      background: var(--e-global-color-bg-soft, #F7F8FB);
    }
    .ct-section-3-inner {
      max-width: var(--content-max);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    .ct-loc-heading {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 40px);
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 clamp(28px, 4vw, 48px);
      letter-spacing: -0.02em;
    }
    .ct-loc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .ct-loc-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .ct-loc-map-wrap {
      padding: 16px 16px 0;
    }
    .ct-loc-map {
      width: 100%;
      height: 220px;
      display: block;
      border: none;
      border-radius: 8px;
    }
    .ct-loc-body {
      padding: 28px 32px 32px;
    }
    .ct-loc-city {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 22px;
      color: var(--e-global-color-text, #0F1A2E);
      margin: 0 0 16px;
    }
    .ct-loc-divider {
      height: 1px;
      background: var(--e-global-color-border, #E2E8F0);
      margin: 0 0 20px;
    }
    .ct-loc-detail {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--e-global-color-text-dim, #4A5568);
      margin: 0 0 6px;
      line-height: 1.5;
    }
    .ct-loc-link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      margin-top: 24px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--e-global-color-text, #0F1A2E);
      border: 1.5px solid var(--e-global-color-border, #E2E8F0);
      border-radius: 8px;
      padding: 10px 20px;
      text-decoration: none;
      transition: border-color .2s, color .2s;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
    .ct-loc-link:hover {
      border-color: var(--e-global-color-primary, #38C4EA);
      color: var(--e-global-color-primary, #38C4EA);
    }

    /* ── Responsive ── breakpoints: TABLET <=1024, PHONE <=640, +<=420 for largest headings */
    @media (max-width: 1024px) {
      /* Two-column text+visual rows stack on tablet (visuals too wide to sit beside text here) */
      .ct-grid-1,
      .ct-grid-2 {
        grid-template-columns: 1fr;
        gap: clamp(40px, 6vw, 48px);
      }
      .ct-photos img:nth-child(2) { margin-top: 0; }
      .ct-photos img:nth-child(3) { margin-top: 0; }

      /* Neutralise desktop overlap once columns stack: standard section pad top & bottom */
      .ct-section-1 { padding: var(--section-pad-y) 0; }
      .ct-section-2 {
        margin-top: 0;
        padding: var(--section-pad-y) 0;
      }
      .ct-card {
        margin-top: 0;
        order: 2;
      }
      /* Right intro column: drop the desktop pull-up / left padding, sit above the card */
      .ct-grid-2 > div:last-child {
        padding-left: 0 !important;
        margin-top: 0 !important;
        order: 1;
      }
    }
    @media (max-width: 640px) {
      /* Titel niet onder de fixed header: extra ruimte boven de hero */
      .ct-section-1 { padding-top: calc(var(--section-pad-y) + 72px); }
      .ct-info-grid { grid-template-columns: 1fr; gap: 24px; }

      /* Photos: 2-aan-2 met subtiele offset, compacter dan desktop */
      .ct-photos { grid-template-columns: 1fr 1fr; }
      .ct-photos__col--offset { padding-top: 36px; }
      .ct-photos img,
      .ct-photos__col:first-child img:nth-child(1),
      .ct-photos__col:first-child img:nth-child(2),
      .ct-photos__col--offset img:nth-child(1),
      .ct-photos__col--offset img:nth-child(2) {
        height: auto;
        max-width: 100%;
        aspect-ratio: 4 / 3;
      }

      /* Form card */
      .ct-card { padding: 24px; }

      /* Locations: maps + cards stack on phone */
      .ct-section-3 { padding-top: var(--section-pad-y); }
      .ct-loc-grid { grid-template-columns: 1fr; }
      .ct-loc-body { padding: 22px 22px 24px; }
    }
    @media (max-width: 420px) {
      .ct-heading { font-size: clamp(20px, 6.2vw, 30px); }
      .ct-form-heading { font-size: clamp(28px, 8vw, 36px); }
    }
    /* FAQ-kaart: wit op deze pagina (sectie is hier al grijs) */
    .faq__card {
      background: var(--e-global-color-bg);
      border: 1px solid var(--e-global-color-border);
    }
