  /* ---------- PACKAGES ---------- */
  .packages {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .package-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
  .package-card.featured {
    border-color: var(--reef);
    background: white;
    box-shadow: var(--shadow);
  }
  .package-name {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    color: var(--ocean);
  }
  .package-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  .package-features li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--reef);
  }
  .package-price {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ocean);
    margin: 0 0 20px;
    text-align: center;
  }
  .package-cta {
    width: 100%;
    justify-content: center;
  }
  .packages-note {
    margin: 40px auto 0;
    max-width: 720px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .packages-note .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--reef);
    flex-shrink: 0;
  }
  @media (max-width: 980px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  }




  :root {
    --ink: #0c1f2b;
    --ink-soft: #324a59;
    --ink-mute: #6b8392;
    --line: #d9dee1;
    --line-soft: #e9ecee;
    --bg: #f6f3ec;          /* warm sand */
    --paper: #fbf9f4;
    --card: #ffffff;
    --ocean: #013547;       /* deep ocean */
    --ocean-2: #06556e;
    --tide: #1591b0;        /* mid blue */
    --foam: #cfe7ec;
    --reef: #2a9d8f;        /* tropical green */
    --reef-2: #1d6f66;
    --coral: #e76f51;       /* used sparingly */
    --sun: #f4c668;
    --shadow: 0 1px 2px rgba(12,31,43,.04), 0 8px 24px rgba(12,31,43,.06);
    --shadow-lg: 0 2px 4px rgba(12,31,43,.05), 0 20px 50px rgba(12,31,43,.10);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --maxw: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Raleway', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* ---------- TYPOGRAPHY ---------- */
  .display {
    font-weight: 700;
    font-size: clamp(44px, 7.4vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin: 0;
  }
  .display em {
    font-style: italic;
    font-weight: 500;
    color: var(--foam);
  }
  .h1 {
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
  }
  .h2 {
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0;
  }
  .h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .eyebrow {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-mute);
    margin: 0;
  }
  .lead {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0;
  }
  .mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(246, 243, 236, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.scrolled {
    background: rgba(246, 243, 236, 0.92);
    border-bottom-color: var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 17px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 30% 30%, var(--sun) 0 28%, transparent 28.5%),
      conic-gradient(from 200deg at 50% 60%, var(--ocean) 0 60%, var(--tide) 60% 80%, var(--reef) 80% 100%);
    box-shadow: inset 0 0 0 2px var(--paper), 0 1px 2px rgba(0,0,0,.08);
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .nav-links a {
    font-size: 14.5px;
    color: var(--ink-soft);
    font-weight: 500;
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--ocean); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lang-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
    background: var(--paper);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 500;
  }
  .lang-switch button {
    border: 0;
    background: transparent;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
  }
  .lang-switch button.on {
    background: var(--ocean);
    color: var(--paper);
  }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary {
    background: var(--ocean);
    color: var(--paper);
  }
  .btn-primary:hover { background: var(--ocean-2); }
  .btn-secondary {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,0.4);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
  .btn-ghost {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
  }
  .btn-ghost:hover { background: white; border-color: var(--ink-soft); }
  .btn-sm { padding: 9px 14px; font-size: 13px; }
  .btn .arrow {
    transition: transform .2s ease;
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    color: var(--paper);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(40px, 7vw, 90px) 0 0;
    background: var(--ocean);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .hero-bg .photo {
    position: absolute;
    inset: 0;
  }
  .hero-bg .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(1,53,71,0.55) 0%, rgba(1,53,71,0.35) 35%, rgba(1,53,71,0.85) 100%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    min-height: 86vh;
    padding-bottom: 56px;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 13px 7px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--paper);
    backdrop-filter: blur(8px);
    margin-bottom: 22px;
  }
  .hero-tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--reef);
    box-shadow: 0 0 0 4px rgba(42,157,143,.25);
  }
  .hero-headline {
    margin-bottom: 22px;
  }
  .hero-sub {
    color: rgba(251,249,244,0.82);
    font-size: clamp(16px, 1.3vw, 19px);
    max-width: 46ch;
    margin: 0 0 32px;
    line-height: 1.55;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(28px, 4vw, 64px);
  }
  .stat .num {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .stat .num sup {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--reef);
    margin-left: 6px;
    vertical-align: super;
  }
  .stat .lbl {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251,249,244,0.7);
    margin-top: 6px;
  }

  /* ---------- PLACEHOLDERS (striped, with optional image on top) ---------- */
  .ph {
    position: relative;
    background-color: var(--foam);
    background-image: repeating-linear-gradient(
      135deg,
      rgba(1,53,71,0.10) 0 1px,
      transparent 1px 9px
    );
    overflow: hidden;
    color: var(--ocean);
  }
  .ph > img.ph-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
    z-index: 0;
  }
  .ph > img.ph-img.loaded { opacity: 1; }
  .ph::after {
    content: attr(data-label);
    position: absolute;
    bottom: 10px; left: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(1,53,71,0.6);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(3px);
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: lowercase;
    z-index: 2;
  }
  .ph.has-img::after {
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.35);
  }
  .ph-dark {
    background-color: #024057;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.06) 0 1px,
      transparent 1px 11px
    );
  }
  .ph-dark::after {
    color: rgba(251,249,244,0.65);
    background: rgba(1,53,71,0.5);
  }
  .ph-reef {
    background-color: #c9e4dd;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(29,111,102,0.14) 0 1px,
      transparent 1px 9px
    );
  }
  .ph-sand {
    background-color: #ede4d0;
    background-image: repeating-linear-gradient(
      135deg,
      rgba(170,140,70,0.18) 0 1px,
      transparent 1px 9px
    );
  }

  /* ---------- ANIMATIONS ---------- */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
      will-change: opacity, transform;
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-fade {
      opacity: 0;
      transition: opacity 1s ease;
    }
    .reveal-fade.in { opacity: 1; }
    .stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    }
    .stagger.in > * { opacity: 1; transform: translateY(0); }
    .stagger.in > *:nth-child(1) { transition-delay: 0.00s; }
    .stagger.in > *:nth-child(2) { transition-delay: 0.06s; }
    .stagger.in > *:nth-child(3) { transition-delay: 0.12s; }
    .stagger.in > *:nth-child(4) { transition-delay: 0.18s; }
    .stagger.in > *:nth-child(5) { transition-delay: 0.24s; }
    .stagger.in > *:nth-child(6) { transition-delay: 0.30s; }
    .stagger.in > *:nth-child(7) { transition-delay: 0.36s; }
    .stagger.in > *:nth-child(8) { transition-delay: 0.42s; }
    .stagger.in > *:nth-child(9) { transition-delay: 0.48s; }
    .stagger.in > *:nth-child(10) { transition-delay: 0.54s; }
    .stagger.in > *:nth-child(11) { transition-delay: 0.60s; }
    .stagger.in > *:nth-child(12) { transition-delay: 0.66s; }
    .stagger.in > *:nth-child(13) { transition-delay: 0.72s; }
    .stagger.in > *:nth-child(14) { transition-delay: 0.78s; }

    /* Hero entrance */
    .hero-anim > * {
      opacity: 0;
      transform: translateY(24px);
      animation: heroIn .9s cubic-bezier(.2,.7,.2,1) forwards;
    }
    .hero-anim > *:nth-child(1) { animation-delay: 0.10s; }
    .hero-anim > *:nth-child(2) { animation-delay: 0.20s; }
    .hero-anim > *:nth-child(3) { animation-delay: 0.30s; }
    .hero-anim > *:nth-child(4) { animation-delay: 0.40s; }
    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hero floating cards */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
      50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
    }

    /* Hero background: static (no Ken Burns — scaling blurs the photo) */
    .hero-bg .photo-wrap {
      position: absolute; inset: 0;
      animation: none;
      transform: none;
      will-change: auto;
    }

    /* Hero scroll cue */
    @keyframes bob {
      0%, 100% { transform: translateY(0); opacity: 0.55; }
      50% { transform: translateY(4px); opacity: 0.9; }
    }

    /* Stat counter pulse on enter */
    .stat .num { transition: color .3s ease; }

    /* Pulse dot on hero tag */
    .hero-tag .dot { animation: pulseDot 2s ease-in-out infinite; }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 0 4px rgba(42,157,143,.25); }
      50% { box-shadow: 0 0 0 8px rgba(42,157,143,.08); }
    }


    /* FAQ open animation */
    .faq details[open] .a {
      animation: fadeSlide .35s ease;
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Marquee already animated; keep it */
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-fade, .stagger > *, .hero-anim > * {
      opacity: 1 !important;
      transform: none !important;
    }
    .marquee-track { animation: none !important; }
  }

  /* ---------- SECTION SHELL ---------- */
  section { scroll-margin-top: 80px; }
  .section {
    padding: clamp(80px, 10vw, 140px) 0;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
  }
  .section-head .left { display: flex; flex-direction: column; gap: 18px; }
  .section-head .right { color: var(--ink-soft); }
  .section-head .right p { margin: 0; max-width: 44ch; }
  .section-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }

  /* ---------- VACATURES ---------- */
  .vac {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
  }
  .vac-empty {
    margin-top: 0;
  }
  .vac-empty-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 64px);
    background:
      linear-gradient(135deg, rgba(1, 53, 71, 0.035) 0%, rgba(42, 157, 143, 0.07) 100%),
      var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: calc(var(--radius) + 6px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(1, 53, 71, 0.06);
  }
  .vac-empty-inner::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reef) 0%, var(--ocean) 100%);
  }
  .vac-empty-content {
    position: relative;
    z-index: 1;
  }
  .vac-empty-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(1, 53, 71, 0.06);
    color: var(--ocean);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .vac-empty-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--reef);
    flex-shrink: 0;
  }
  .vac-empty-title {
    margin: 20px 0 18px;
    max-width: min(100%, 480px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .vac-empty-text {
    margin: 0;
    max-width: 52ch;
    color: var(--ink-soft);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.7;
  }
  .vac-empty-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: min(100%, 240px);
    position: relative;
    z-index: 1;
  }
  .vac-empty-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }
  .btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid #25d366;
  }
  .btn-whatsapp:hover {
    background: #1fb75a;
    border-color: #1fb75a;
    color: #fff;
  }
  .vac-empty-actions .btn-secondary {
    background: var(--paper);
    color: var(--ocean);
    border-color: var(--ocean);
  }
  .vac-empty-actions .btn-secondary:hover {
    background: rgba(1, 53, 71, 0.06);
    border-color: var(--ocean-2);
    color: var(--ocean-2);
  }
  @media (max-width: 860px) {
    .vac-empty-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .vac-empty-actions {
      flex-direction: row;
      flex-wrap: wrap;
      min-width: 0;
    }
    .vac-empty-actions .btn {
      flex: 1 1 180px;
    }
  }

  /* ---------- OVER BONAIRE ---------- */
  .about {
    background: var(--ocean);
    color: var(--paper);
  }
  .about .eyebrow { color: rgba(251,249,244,0.55); }
  .about .section-head .right { color: rgba(251,249,244,0.72); }
  .about .section-num { color: rgba(251,249,244,0.45); }
  .island-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
  }
  .island-feature {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
  }
  .island-feature .caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--paper);
    z-index: 2;
  }
  .island-feature .caption h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 6px;
  }
  .island-feature .caption p {
    margin: 0;
    color: rgba(251,249,244,0.78);
    max-width: 36ch;
    font-size: 15px;
  }
  .island-feature .ph {
    position: absolute;
    inset: 0;
  }
  .island-feature .ph::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(1,30,40,0.85) 100%);
    z-index: 1;
  }
  .info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
  }
  .info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .15s;
  }
  .info-card:hover { background: rgba(255,255,255,0.09); }
  .info-card .lbl {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251,249,244,0.55);
  }
  .info-card .val {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.05;
  }
  .info-card .sub {
    font-size: 13.5px;
    color: rgba(251,249,244,0.7);
    margin-top: auto;
    line-height: 1.4;
  }
  .island-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 14px;
  }
  .island-strip .ph {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
  }
  .island-strip .ph[data-tall] {
    aspect-ratio: 3 / 4;
  }

  /* ---------- PRAKTISCH ---------- */
  .practical {
    background: var(--bg);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 80px;
    border-top: 1px solid var(--line);
  }
  .step {
    padding: 28px 22px 28px 0;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
  }
  .step:last-child { border-right: 0; }
  .step:not(:first-child) { padding-left: 22px; }
  .step .step-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--reef-2);
    font-weight: 500;
  }
  .step h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.2;
  }
  .step p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.5;
  }

  .practical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .practical-list { display: flex; flex-direction: column; gap: 24px; }
  .practical-list .item {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .practical-list .item:last-child { border-bottom: 0; padding-bottom: 0; }
  .practical-list .item h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .practical-list .item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .practical-list .item .ic {
    display: inline-block;
    margin-right: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    color: var(--reef-2);
    letter-spacing: 0.08em;
  }

  .faq { display: flex; flex-direction: column; }
  .faq details {
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }
  .faq details:last-child { border-bottom: 1px solid var(--line); }
  .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: -0.01em;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .plus {
    width: 22px; height: 22px;
    flex-shrink: 0;
    position: relative;
  }
  .faq summary .plus::before, .faq summary .plus::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--ink);
    transition: transform .25s ease;
  }
  .faq summary .plus::before { width: 14px; height: 1.5px; top: 0; bottom: 0; }
  .faq summary .plus::after { width: 1.5px; height: 14px; left: 0; right: 0; }
  .faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
  .faq .a {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 60ch;
  }

  /* ---------- AANMELDEN ---------- */
  .signup {
    background: var(--paper);
    border-top: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
  }
  .signup-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .signup-left .display {
    color: var(--ocean);
    font-size: clamp(40px, 5.4vw, 76px);
  }
  .signup-left .display em { color: var(--reef); }
  .signup-left .lead { margin: 24px 0 32px; color: var(--ink-soft); }
  .signup-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
  .signup-bullets .b {
    display: flex;
    gap: 14px;
    align-items: start;
  }
  .signup-bullets .b .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--reef);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .signup-bullets .b h4 { font-size: 15.5px; font-weight: 600; margin: 0 0 2px; }
  .signup-bullets .b p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

  .form-card {
    background: white;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
  }
  .form-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    letter-spacing: -0.015em;
  }
  .form-card .form-sub {
    font-size: 13.5px;
    color: var(--ink-mute);
    margin: 0 0 28px;
  }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .field label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
  }
  .field input, .field select {
    appearance: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0 10px;
    font: inherit;
    font-size: 16px;
    color: var(--ink);
    background: transparent;
    transition: border-color .15s ease;
  }
  .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23324a59' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
  }
  .field input:focus, .field select:focus {
    outline: 0;
    border-color: var(--ocean);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-card button[type="submit"] {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border-radius: 999px;
    background: var(--ocean);
    color: var(--paper);
    font-weight: 600;
    border: 0;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: background .15s ease;
  }
  .form-card button[type="submit"]:hover { background: var(--ocean-2); }
  .form-card .consent {
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 14px;
    line-height: 1.5;
  }

  .form-error {
    color: #b42318;
    font-size: 14px;
    margin: 0 0 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(180, 35, 24, 0.08);
    border: 1px solid rgba(180, 35, 24, 0.15);
  }
  .signup-hp {
    display: none !important;
  }
  .signup-submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--ocean);
    color: var(--paper);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
  }
  .signup-submit:hover { background: var(--ocean-2); }
  .signup-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  /* Signup success modal */
  .signup-success-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
  }
  .signup-success-modal[hidden] {
    display: none !important;
  }
  .signup-success-modal.open {
    display: flex;
    pointer-events: auto;
  }
  .signup-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 53, 71, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .signup-success-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    padding: clamp(30px, 5vw, 42px);
    background: var(--paper);
    border-radius: calc(var(--radius-lg) + 6px);
    box-shadow: 0 28px 72px rgba(1, 53, 71, 0.24);
    text-align: center;
    overflow: hidden;
    transform: translateY(18px) scale(0.97);
    transition: transform .36s cubic-bezier(.22,.84,.32,1);
  }
  .signup-success-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--reef) 0%, #3cb8a8 50%, var(--ocean) 100%);
  }
  .signup-success-modal.open .signup-success-panel {
    transform: translateY(0) scale(1);
  }
  .signup-success-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(1, 53, 71, 0.06);
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
  }
  .signup-success-close svg {
    width: 18px;
    height: 18px;
  }
  .signup-success-close:hover {
    background: rgba(1, 53, 71, 0.1);
    transform: rotate(90deg);
  }
  .signup-success-badge {
    width: 72px;
    height: 72px;
    margin: 4px auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--reef) 0%, #1d8a7d 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(42, 157, 143, 0.38);
    animation: signupPop .55s cubic-bezier(.22,.84,.32,1) both;
  }
  .signup-success-badge svg {
    width: 34px;
    height: 34px;
  }
  @keyframes signupPop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  .signup-success-eyebrow {
    margin: 0 0 8px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--reef);
  }
  .signup-success-title {
    margin: 0 0 10px;
    font-size: clamp(24px, 4.5vw, 30px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ocean);
    line-height: 1.15;
  }
  .signup-success-text {
    margin: 0 auto 22px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
    max-width: 38ch;
  }
  .signup-success-steps {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 10px;
  }
  .signup-success-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(1, 53, 71, 0.04);
    border: 1px solid rgba(1, 53, 71, 0.07);
  }
  .signup-success-steps .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--ocean);
    background: rgba(42, 157, 143, 0.14);
  }
  .signup-success-steps .step-text {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.45;
  }
  .signup-success-email-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(42, 157, 143, 0.08);
    color: var(--ocean);
    font-size: 13.5px;
    line-height: 1.45;
  }
  .signup-success-email-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.85;
  }
  .signup-success-btn {
    width: 100%;
    justify-content: center;
  }
  @media (max-width: 480px) {
    .signup-success-modal {
      padding: 16px;
      align-items: flex-end;
    }
    .signup-success-panel {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      width: 100%;
      max-width: none;
      transform: translateY(100%);
    }
    .signup-success-modal.open .signup-success-panel {
      transform: translateY(0);
    }
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ocean);
    color: var(--paper);
    padding: 80px 0 28px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .foot-grid h4 {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(251,249,244,0.5);
    margin: 0 0 18px;
    font-weight: 500;
  }
  .foot-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .foot-grid a {
    color: rgba(251,249,244,0.82);
    font-size: 14.5px;
    transition: color .15s ease;
  }
  .foot-grid a:hover { color: var(--paper); }
  .foot-brand .brand { color: var(--paper); margin-bottom: 16px; }
  .foot-brand p {
    color: rgba(251,249,244,0.72);
    max-width: 32ch;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 24px;
  }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 24px;
    color: rgba(251,249,244,0.5);
    font-size: 12.5px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.04em;
  }
  .foot-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
  }
  .foot-bottom a {
    color: rgba(251, 249, 244, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .foot-bottom a:hover {
    color: var(--paper);
  }
  .foot-dev {
    color: rgba(42, 157, 143, 0.9) !important;
  }
  .foot-dev:hover {
    color: var(--reef-2, #2a9d8f) !important;
  }
  .marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-top: 64px;
    padding: 28px 0;
  }
  .marquee-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    font-weight: 600;
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: -0.025em;
    line-height: 1;
    color: rgba(251,249,244,0.18);
    animation: marquee 40s linear infinite;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
  .marquee-track .sep {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--reef);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .island-grid { grid-template-columns: 1fr; }
    .practical-grid { grid-template-columns: 1fr; gap: 60px; }
    .signup-grid { grid-template-columns: 1fr; gap: 48px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(2) { border-right: 0; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .hero-meta-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .island-strip { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr; }
  }


html, body, button, input, textarea, select,
h1, h2, h3, h4, h5, h6, p, a, span, label, li,
em, strong, small, summary,
.display, .lead, .eyebrow, .section-num,
.btn, .field label, .nav-links a, .nav-mobile-links a,
.meta-line, .stat .lbl, .form-card, .faq,
*, *::before, *::after {
  font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.foot-brand .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.foot-brand .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(251, 249, 244, 0.9);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.foot-brand .social-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}
.foot-brand .social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.brand--image { gap: 0; font-size: 0; line-height: 0; }
.brand-logo {
  height: 40px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.foot-brand .brand-logo { height: 48px; max-width: 220px; }
.brand-mark { display: none !important; }

.ph::after { display: none !important; content: none !important; }


.field-cv .field-hint {
  margin: -2px 0 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-mute);
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
}
.cv-upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 0 4px;
  border-bottom: 1px solid var(--line);
}
.cv-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cv-upload-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--sand, #f6f3ec);
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.cv-upload-btn:hover {
  background: white;
  border-color: var(--ocean);
  transform: translateY(-1px);
}
.cv-filename {
  font-size: 13.5px;
  color: var(--ink-soft);
  word-break: break-all;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--ocean);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu: always in DOM on small screens; animate transform + opacity only */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(1, 53, 71, 0.45);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(320px, 88vw);
  height: 100dvh;
  padding: 72px 28px 32px;
  background: var(--paper);
  box-shadow: -12px 0 40px rgba(1, 53, 71, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  pointer-events: none;
  visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0.4s,
    box-shadow 0.4s ease;
  will-change: transform;
}

.nav.nav-open .nav-mobile-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s;
}

.nav.nav-open .nav-mobile-panel,
.nav-mobile-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  box-shadow: -16px 0 48px rgba(1, 53, 71, 0.22);
  transition:
    transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s,
    box-shadow 0.4s ease;
}
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-mobile-close svg {
  width: 20px;
  height: 20px;
}
.nav-mobile-close:hover {
  background: white;
  border-color: var(--ocean);
  transform: scale(1.05);
}
.nav-mobile-close:active {
  transform: scale(0.96);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.nav-mobile-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-links a:hover { color: var(--ocean); padding-left: 4px; }
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.nav-mobile-actions .btn { width: 100%; justify-content: center; }
@media (max-width: 980px) {
  html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }
  .nav-links, .nav-right { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-inner { gap: 12px; }
  .nav-mobile-overlay,
  .nav-mobile-panel {
    display: block;
  }
  .nav-mobile-panel {
    display: flex !important;
  }
}
@media (min-width: 981px) {
  .nav-toggle,
  .nav-mobile-panel,
  .nav-mobile-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-panel,
  .nav-mobile-overlay,
  .nav-toggle-bar {
    transition: none !important;
  }
  .nav.nav-open .nav-mobile-panel {
    transform: translateX(0);
  }
}

.nav-links a {
  position: relative;
  padding: 6px 4px;
  transition: color 0.22s ease, transform 0.22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--ocean);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-links a:hover {
  color: var(--ocean) !important;
  transform: translateY(-1px);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav a.brand {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav a.brand:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav .lang-switch button {
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}
.nav .lang-switch button:not(.on):hover {
  background: rgba(1, 53, 71, 0.1);
  color: var(--ocean);
  transform: scale(1.06);
}

.nav .btn-primary {
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease !important;
}
.nav .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(1, 53, 71, 0.28);
}
.nav .btn-primary:hover .arrow { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .nav-links a, .nav-links a::after, .nav a.brand,
  .nav .lang-switch button, .nav .btn-primary {
    transition: none !important;
    transform: none !important;
  }
  .nav-links a:hover::after { transform: none; }
}

/* Sharp hero background — no zoom animation, no GPU blur hacks */
.hero-bg .photo-wrap {
  position: absolute;
  inset: 0;
  animation: none !important;
  transform: none !important;
  will-change: auto;
  overflow: hidden;
}

.hero-bg .ph,
.hero-bg .ph-dark {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  filter: none !important;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  image-rendering: auto;
}

/* Gradient on wrapper (not scaled with the image) */
.hero-bg .photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(1, 53, 71, 0.55) 0%,
    rgba(1, 53, 71, 0.32) 42%,
    rgba(1, 53, 71, 0.7) 100%
  );
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 53, 71, 0.1);
  pointer-events: none;
  z-index: 2;
}

.hero-bg .ph-dark::after {
  display: none;
}
.hero-headline, .hero-sub, .hero-tag {
  text-shadow: 0 2px 18px rgba(1, 53, 71, 0.55);
}

/* Vertically center hero content (equal space top & bottom) */
.hero {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  min-height: min(86svh, 900px) !important;
}
.hero > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding-block: clamp(28px, 5vh, 56px);
  box-sizing: border-box;
}
.hero-grid {
  align-items: center !important;
  align-content: center !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  flex: 0 0 auto;
}
.hero-anim { align-self: center; width: 100%; }
.hero-meta {
  flex-shrink: 0;
  margin-top: clamp(28px, 4vh, 48px);
}
@media (max-width: 980px) {
  .hero { min-height: min(82svh, 820px) !important; }
  .hero > .container {
    justify-content: center;
    padding-block: clamp(32px, 6vh, 64px);
  }
  .hero-grid {
    align-items: center !important;
    justify-items: start;
  }
}

:root {
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --motion-spring: cubic-bezier(0.22, 0.84, 0.32, 1);
}

@media (prefers-reduced-motion: no-preference) {
  #root {
    animation: spPageIn 0.55s var(--motion-ease) both;
  }
  @keyframes spPageIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    transform: translateY(32px) scale(0.988);
    transition-duration: 1s;
  }
  .reveal.in { transform: translateY(0) scale(1); }
  .stagger > * {
    transform: translateY(22px) scale(0.99);
    transition-duration: 0.75s;
  }
  .stagger.in > * { transform: translateY(0) scale(1); }

  .nav.scrolled {
    box-shadow: 0 6px 28px rgba(1, 53, 71, 0.09);
    transition: box-shadow 0.35s var(--motion-ease), border-color 0.2s ease, background 0.2s ease;
  }


  .info-card {
    transition: transform 0.35s var(--motion-ease),
      background 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.35s ease;
  }
  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  .btn {
    transition: transform 0.22s var(--motion-ease),
      background 0.22s ease,
      color 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease !important;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(1, 53, 71, 0.14);
  }
  .btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
    transition-duration: 0.08s;
  }
  .btn .arrow { transition: transform 0.22s var(--motion-ease); }
  .btn:hover .arrow { transform: translateX(4px); }

  .btn .arrow { transition: transform 0.22s var(--motion-ease); }
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .faq summary { transition: color 0.2s ease; }
  .faq summary:hover { color: var(--ocean); }

  .form-card input:not([type="file"]),
  .form-card textarea,
  .form-card select {
    transition: border-color 0.2s ease,
      box-shadow 0.25s ease,
      background 0.2s ease;
  }
  .form-card input:not([type="file"]):focus,
  .form-card textarea:focus,
  .form-card select:focus {
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.22);
    outline: none;
  }

  .signup-bullets .b {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.55s var(--motion-ease), transform 0.55s var(--motion-ease);
  }
  .reveal.in .signup-bullets .b,
  .stagger.in .signup-bullets .b {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal.in .signup-bullets .b:nth-child(1),
  .stagger.in .signup-bullets .b:nth-child(1) { transition-delay: 0.08s; }
  .reveal.in .signup-bullets .b:nth-child(2),
  .stagger.in .signup-bullets .b:nth-child(2) { transition-delay: 0.16s; }
  .reveal.in .signup-bullets .b:nth-child(3),
  .stagger.in .signup-bullets .b:nth-child(3) { transition-delay: 0.24s; }
  .reveal.in .signup-bullets .b:nth-child(4),
  .stagger.in .signup-bullets .b:nth-child(4) { transition-delay: 0.32s; }



  footer a,
  .foot-grid a {
    transition: color 0.2s ease, opacity 0.2s ease;
  }
  footer a:hover,
  .foot-grid a:hover {
    opacity: 0.82;
    color: var(--reef, #2a9d8f);
  }

  .icon-btn {
    transition: transform 0.2s var(--motion-ease), background 0.2s ease, color 0.2s ease;
  }
  .icon-btn:hover { transform: scale(1.06); }
  .icon-btn:active { transform: scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  #root { animation: none !important; }
  .info-card:hover,
  .btn:hover,
  .btn:active,
  .icon-btn:hover,
  .icon-btn:active {
    transform: none !important;
    box-shadow: none !important;
  }
  .signup-bullets .b {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-tag .dot { animation: none !important; }
}
/* --- Site enhancements (nav mobile, motion, hero, etc.) --- */
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg, #f6f3ec); }

.nav-toggle { display: none; }
@media (max-width: 980px) {
  .nav-links, .nav-right { display: none !important; }
  .nav-toggle { display: flex !important; }
}

.lang-en { display: none; }
html[lang="en"] .lang-nl { display: none; }
html[lang="en"] .lang-en { display: revert; }

.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* Static site: always show sections & photos (no React motion runtime) */
.stagger > *,
.packages-grid > *,
.island-strip > *,
.packages-note {
  opacity: 1 !important;
  transform: none !important;
}

.ph > img.ph-img {
  opacity: 1 !important;
}

.signup-bullets .b {
  opacity: 1 !important;
  transform: none !important;
}

/* WhatsApp floating widget */
.wa-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.wa-widget > * {
  pointer-events: auto;
}

.wa-popup {
  width: min(300px, calc(100vw - 32px));
  padding: 20px 20px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(1, 53, 71, 0.18);
  display: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.wa-popup.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.wa-popup-close:hover {
  background: var(--line-soft);
  color: var(--ocean);
}

.wa-popup-title {
  margin: 0 28px 8px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1.3;
}

.wa-popup-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.wa-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wa-popup-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.wa-popup-btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

.wa-fab {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-fab[aria-expanded="true"] {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .wa-popup,
  .wa-fab {
    transition: none;
  }
}
