/* ============================================================
   GLOBAL TOURIST ATTRACTIONS, huisstijl
   Navy / goud / crème · Jost + Cormorant Garamond
   ============================================================ */

:root {
  --navy-900: #141B33;
  --navy-800: #1B2440;
  --navy-700: #243059;
  --gold: #BE9A5C;
  --gold-dark: #A8844A;
  --gold-light: #D2B279;
  --cream: #F2F5EC;
  --card: #FFFFFF;
  --line: #E3E4DC;
  --ink: #1B2440;
  --muted: #5A5E57;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy-900); }

img { display: block; max-width: 100%; }

a { color: inherit; }

em.accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0;
}

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }

/* ---------- animaties ---------- */
@keyframes gtaSpin    { to { transform: rotate(360deg); } }
@keyframes gtaSpinRev { to { transform: rotate(-360deg); } }
@keyframes gtaMarquee { to { transform: translateX(-50%); } }
@keyframes gtaFadeUp  { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gtaPulse   { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

[data-reveal] { opacity: 0; transform: translateY(42px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- kicker / sectiekoppen ---------- */
.kicker { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 500; letter-spacing: .4em; color: var(--gold-dark); }
.kicker::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
.kicker.centered::after { content: ""; width: 38px; height: 1px; background: var(--gold); }
.kicker.on-dark { color: var(--gold); }

h1, h2, h3 { font-weight: 600; }

.section-title { margin-top: 18px; font-size: clamp(40px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -.01em; color: var(--ink); text-wrap: balance; }
.section-title.on-dark { color: var(--cream); }

.lead { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.lead.on-dark { color: rgba(242, 245, 236, .72); }

/* ---------- knoppen ---------- */
.btn { display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: .14em; padding: 19px 40px; border-radius: 999px; text-decoration: none; transition: transform .3s, background .3s, box-shadow .3s, border-color .3s, color .3s; cursor: pointer; border: none; font-family: inherit; }
.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(190, 154, 92, .35); }
.btn-ghost { color: var(--cream); font-weight: 500; border: 1px solid rgba(242, 245, 236, .35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-ghost-dark { color: var(--ink); font-weight: 500; border: 1px solid rgba(27, 36, 64, .3); }
.btn-ghost-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-3px); }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 18px 56px; background: rgba(20, 27, 51, .55); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(242, 245, 236, .08); transition: background .4s, padding .4s; }
.site-nav.is-scrolled { background: rgba(20, 27, 51, .92); padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-name { display: block; }
.brand-name .l1 { display: block; font-size: 15px; font-weight: 600; letter-spacing: .18em; color: var(--cream); white-space: nowrap; }
.brand-name .l2 { display: block; font-size: 9px; font-weight: 400; letter-spacing: .42em; color: var(--gold); margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a:not(.btn) { font-size: 13px; font-weight: 500; letter-spacing: .16em; color: rgba(242, 245, 236, .75); text-decoration: none; transition: color .3s; }
.nav-links a:not(.btn):hover, .nav-links a.is-active { color: var(--gold); }
.nav-links .btn { padding: 12px 26px; font-size: 13px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; z-index: 130; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px auto; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--navy-900); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) { font-size: 24px; font-weight: 500; letter-spacing: .12em; color: var(--cream); text-decoration: none; }
.mobile-menu a:not(.btn):hover { color: var(--gold); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; min-height: 100vh; background: var(--navy-900); overflow: hidden; display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .55; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20, 27, 51, .96) 0%, rgba(20, 27, 51, .82) 38%, rgba(20, 27, 51, .25) 75%, rgba(20, 27, 51, .55) 100%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(1200px 800px at 75% 35%, rgba(36, 48, 89, .35) 0%, rgba(20, 27, 51, 0) 60%); }

.hero-wheel { position: absolute; right: -13vw; top: 50%; transform: translateY(-50%); width: 52vw; pointer-events: none; opacity: .5; }
.hero-wheel .glow { position: absolute; inset: -8%; border-radius: 50%; background: radial-gradient(circle, rgba(190, 154, 92, .18) 0%, rgba(190, 154, 92, 0) 65%); }
.hero-wheel svg.wheel { display: block; width: 100%; animation: gtaSpin 90s linear infinite; transform-origin: 50% 50%; }
.hero-wheel svg.ring { position: absolute; inset: -7%; width: 114%; animation: gtaSpinRev 140s linear infinite; transform-origin: 50% 50%; }

.hero-inner { position: relative; z-index: 5; width: 100%; padding-top: 140px; padding-bottom: 120px; }
.hero-kicker { display: flex; align-items: center; gap: 14px; animation: gtaFadeUp 1s var(--ease) .1s both; }
.hero-kicker .line { width: 38px; height: 1px; background: var(--gold); }
.hero-kicker .txt { font-size: 13px; font-weight: 500; letter-spacing: .4em; color: var(--gold); }

.hero h1 { margin-top: 28px; font-size: clamp(54px, 7.2vw, 102px); line-height: 1.0; letter-spacing: -.015em; color: var(--cream); max-width: 11ch; text-wrap: balance; animation: gtaFadeUp 1s var(--ease) .22s both; }
.hero .lead { margin-top: 30px; font-size: 19px; max-width: 480px; color: rgba(242, 245, 236, .72); animation: gtaFadeUp 1s var(--ease) .35s both; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 44px; animation: gtaFadeUp 1s var(--ease) .5s both; }

.scroll-cue { position: absolute; left: 56px; bottom: 42px; z-index: 5; display: flex; align-items: center; gap: 12px; animation: gtaPulse 3s ease-in-out infinite; }
.scroll-cue .bar { display: block; width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(242, 245, 236, 0) 0%, var(--gold) 100%); }
.scroll-cue .txt { font-size: 11px; letter-spacing: .34em; color: rgba(242, 245, 236, .6); writing-mode: vertical-rl; }

.hero-badge { position: absolute; right: 64px; bottom: 56px; z-index: 6; }
.hero-badge svg { display: block; animation: gtaSpin 26s linear infinite; transform-origin: 50% 50%; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--gold); overflow: hidden; padding: 17px 0; border-top: 1px solid rgba(20, 27, 51, .15); border-bottom: 1px solid rgba(20, 27, 51, .15); }
.marquee-track { display: flex; width: max-content; animation: gtaMarquee 32s linear infinite; }
.marquee-track span { white-space: nowrap; font-size: 14px; font-weight: 600; letter-spacing: .3em; color: var(--navy-900); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--cream); padding: 110px 0 90px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat .num { font-size: 70px; font-weight: 600; color: var(--ink); line-height: 1; }
.stat .label { margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: .3em; color: var(--gold-dark); }
.stat .sub { margin-top: 6px; font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.5; }

/* ============================================================
   KAARTEN (attracties / werkwijze)
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s; text-decoration: none; display: block; }
.card:hover { transform: translateY(-10px); box-shadow: 0 32px 64px rgba(27, 36, 64, .16); }
.card .photo { width: 100%; height: 250px; object-fit: cover; }
.card .body { padding: 30px 30px 34px; }
.card .idx { font-size: 12px; font-weight: 600; letter-spacing: .3em; color: var(--gold); }
.card h3 { margin-top: 10px; font-size: 26px; letter-spacing: .02em; color: var(--ink); }
.card p { margin-top: 10px; font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--muted); }
.card .more { margin-top: 22px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .18em; color: var(--ink); }
.card .more .arrow { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); transition: background .3s, color .3s; }
.card:hover .more .arrow { background: var(--gold); color: var(--navy-900); }

.step-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 36px 30px 40px; transition: transform .45s var(--ease), box-shadow .45s; }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 26px 52px rgba(27, 36, 64, .12); }
.step-card .num { font-size: 84px; font-weight: 700; line-height: 1; color: var(--gold); }
.step-card h3 { margin-top: 22px; font-size: 21px; color: var(--ink); }
.step-card p { margin-top: 10px; font-size: 14.5px; font-weight: 300; line-height: 1.6; color: var(--muted); }
.step-card.is-dark { background: var(--navy-800); border-color: var(--navy-800); }
.step-card.is-dark h3 { color: var(--cream); }
.step-card.is-dark p { color: rgba(242, 245, 236, .7); }
.step-card.is-dark:hover { box-shadow: 0 26px 52px rgba(27, 36, 64, .28); }

/* ============================================================
   SECTIES
   ============================================================ */
.section { padding: 120px 0; }
.section.tight { padding: 30px 0 130px; }
.section.dark { background: var(--navy-800); position: relative; overflow: hidden; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-head .intro { font-size: 16px; font-weight: 300; line-height: 1.65; color: var(--muted); max-width: 360px; padding-bottom: 8px; }
.section-head.centered { display: block; text-align: center; }

.bg-wheel { position: absolute; pointer-events: none; opacity: .1; animation: gtaSpin 120s linear infinite; transform-origin: 50% 50%; }

/* split: tekst + beeld */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.split-photo { position: relative; }
.split-photo img { width: 100%; height: 460px; object-fit: cover; border-radius: 26px; }
.split-photo .deco-ring { position: absolute; top: -26px; right: -26px; width: 150px; height: 150px; border: 1px dashed rgba(190, 154, 92, .6); border-radius: 50%; animation: gtaSpinRev 40s linear infinite; }
.split-photo .tag { position: absolute; left: 28px; bottom: 28px; background: rgba(20, 27, 51, .82); backdrop-filter: blur(10px); border: 1px solid rgba(190, 154, 92, .4); border-radius: 14px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.split-photo .tag .dot { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: gtaPulse 2s ease-in-out infinite; }
.split-photo .tag .txt { font-size: 12.5px; font-weight: 500; letter-spacing: .22em; color: var(--cream); }

.minifacts { display: flex; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.minifacts .num { font-size: 38px; font-weight: 600; color: var(--gold); }
.minifacts .lbl { margin-top: 4px; font-size: 11.5px; font-weight: 500; letter-spacing: .26em; color: rgba(242, 245, 236, .55); }
.minifacts.on-light .lbl { color: var(--muted); }

/* check-lijst */
.checklist { display: grid; gap: 16px; margin-top: 28px; }
.checklist li { list-style: none; display: flex; gap: 14px; font-size: 15.5px; font-weight: 300; line-height: 1.6; color: var(--muted); }
.checklist.on-dark li { color: rgba(242, 245, 236, .75); }
.checklist .tick { flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.checklist.on-dark .tick { color: var(--gold); }
.checklist b { color: var(--ink); font-weight: 600; }
.checklist.on-dark b { color: var(--cream); }

/* ============================================================
   GALERIJ
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery a { display: block; border-radius: 18px; overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 27, 51, .35), transparent 50%); opacity: 0; transition: opacity .4s; }
.gallery a:hover::after { opacity: 1; }
.g-span-7 { grid-column: span 7; height: 420px; }
.g-span-5 { grid-column: span 5; height: 420px; }
.g-span-4 { grid-column: span 4; height: 300px; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20, 27, 51, .94); display: flex; align-items: center; justify-content: center; padding: 5vmin; opacity: 0; pointer-events: none; transition: opacity .35s; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox .close { position: absolute; top: 26px; right: 34px; background: none; border: none; color: var(--cream); font-size: 40px; line-height: 1; cursor: pointer; font-family: inherit; }

/* ============================================================
   SUBPAGINA-HERO
   ============================================================ */
.page-hero { position: relative; background: var(--navy-900); padding: 200px 0 110px; overflow: hidden; }
.page-hero .hero-photo { opacity: .35; }
.page-hero .hero-shade { background: linear-gradient(100deg, rgba(20, 27, 51, .97) 0%, rgba(20, 27, 51, .75) 50%, rgba(20, 27, 51, .45) 100%); }
.page-hero .wrap { position: relative; z-index: 5; }
.page-hero h1 { margin-top: 24px; font-size: clamp(46px, 5.6vw, 82px); line-height: 1.02; letter-spacing: -.015em; color: var(--cream); max-width: 16ch; text-wrap: balance; }
.page-hero .lead { margin-top: 24px; max-width: 560px; color: rgba(242, 245, 236, .72); }

/* ============================================================
   SPECS
   ============================================================ */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 26px 26px 28px; }
.spec .lbl { font-size: 11.5px; font-weight: 600; letter-spacing: .28em; color: var(--gold-dark); }
.spec .val { margin-top: 10px; font-size: 19px; font-weight: 500; line-height: 1.45; color: var(--ink); }

/* tijdlijn */
.timeline { position: relative; margin-top: 26px; display: grid; gap: 0; }
.timeline .tl-item { position: relative; padding: 0 0 36px 42px; }
.timeline .tl-item::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: -4px; width: 1px; background: rgba(190, 154, 92, .45); }
.timeline .tl-item:last-child::before { display: none; }
.timeline .tl-item::after { content: ""; position: absolute; left: 4px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }
.timeline h4 { font-size: 17px; font-weight: 600; color: var(--cream); letter-spacing: .04em; }
.timeline p { margin-top: 6px; font-size: 14.5px; font-weight: 300; line-height: 1.6; color: rgba(242, 245, 236, .65); }

/* ============================================================
   CTA-BAND
   ============================================================ */
.cta-band { background: var(--cream); padding: 60px 0 150px; text-align: center; }
.cta-band h2 { font-size: clamp(50px, 7vw, 104px); line-height: 1.02; letter-spacing: -.015em; color: var(--ink); text-wrap: balance; }
.cta-band .lead { margin-top: 26px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-band .actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 44px; }
.cta-band .meta { margin-top: 26px; font-size: 14px; letter-spacing: .08em; color: var(--muted); }
.cta-band .meta a { color: inherit; text-decoration: none; }
.cta-band .meta a:hover { color: var(--gold-dark); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 40px; }
.contact-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .22em; color: var(--gold-dark); margin: 22px 0 8px; }
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; font-family: inherit; font-size: 15.5px; font-weight: 300; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; outline: none; transition: border-color .3s, box-shadow .3s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(190, 154, 92, .18); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { margin-top: 30px; width: 100%; }

.contact-info h3 { font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.contact-info .row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; font-weight: 300; color: var(--muted); align-items: baseline; }
.contact-info .row .lbl { flex: none; width: 110px; font-size: 11.5px; font-weight: 600; letter-spacing: .26em; color: var(--gold-dark); }
.contact-info .row a { text-decoration: none; color: var(--ink); }
.contact-info .row a:hover { color: var(--gold-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); padding: 70px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.footer-cols { display: flex; gap: 80px; flex-wrap: wrap; }
.footer-col .hd { font-size: 11px; font-weight: 600; letter-spacing: .3em; color: var(--gold); margin-bottom: 16px; }
.footer-col .links { display: grid; gap: 10px; font-size: 14px; font-weight: 300; color: rgba(242, 245, 236, .7); }
.footer-col .links a { color: rgba(242, 245, 236, .7); text-decoration: none; transition: color .3s; }
.footer-col .links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(242, 245, 236, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; font-weight: 300; color: rgba(242, 245, 236, .45); letter-spacing: .06em; }

/* ============================================================
   TAALSCHAKELAAR
   ============================================================ */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid rgba(242, 245, 236, .25); border-radius: 999px; padding: 3px; }
.lang-switch button { background: none; border: none; font-family: inherit; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; color: rgba(242, 245, 236, .6); padding: 6px 11px; border-radius: 999px; cursor: pointer; transition: color .3s, background .3s; }
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.is-active { background: var(--gold); color: var(--navy-900); }
.mobile-menu .lang-switch { margin-top: 10px; }

/* ============================================================
   BG-TOREN (abstracte torenanimatie, tegenhanger van het rad)
   ============================================================ */
.bg-tower { position: absolute; pointer-events: none; opacity: .13; }
.bg-tower .ride { animation: gtaTowerRide 15s ease-in-out infinite alternate; }
.bg-tower .ride.b { animation-delay: -15s; }
@keyframes gtaTowerRide { from { transform: translateY(0); } to { transform: translateY(-420px); } }

/* ============================================================
   FOTO-FRAMES (parallax-clip)
   ============================================================ */
.frame { border-radius: 26px; overflow: hidden; position: relative; }
.frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.08); }
.split-photo .frame { height: 460px; }
.split-photo .frame img { height: 100%; }
.gallery a img { will-change: transform; }

/* ============================================================
   KNOP-GLANS
   ============================================================ */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after { content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%; background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .45) 50%, transparent 100%); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn-gold:hover::after { left: 130%; }

/* ============================================================
   HERO-TITEL, woord-voor-woord onthulling
   ============================================================ */
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .w > span { display: inline-block; transform: translateY(110%); animation: gtaWordUp .9s var(--ease) forwards; }
@keyframes gtaWordUp { to { transform: translateY(0); } }

/* ============================================================
   WERELDKAART
   ============================================================ */
.map-section { background: var(--navy-800); position: relative; overflow: hidden; }
.map-wrap { position: relative; margin-top: 60px; }
.map-wrap > img.dotmap { width: 100%; height: auto; display: block; }
.map-legend { display: inline-flex; align-items: center; gap: 10px; margin-top: 34px; font-size: 11.5px; font-weight: 600; letter-spacing: .28em; color: rgba(242, 245, 236, .55); }
.map-legend .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(190, 154, 92, .25); }

.map-marker { position: absolute; width: 12px; height: 12px; transform: translate(-50%, -50%); }
.map-marker .pin { position: absolute; inset: 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(190, 154, 92, .8); }
.map-marker .ring { position: absolute; inset: -7px; border-radius: 50%; border: 1px solid var(--gold); animation: gtaPing 2.6s ease-out infinite; }
@keyframes gtaPing { 0% { transform: scale(.4); opacity: .9; } 70%, 100% { transform: scale(1.7); opacity: 0; } }
.map-marker .tip { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(6px); background: rgba(20, 27, 51, .92); border: 1px solid rgba(190, 154, 92, .5); border-radius: 9px; padding: 7px 13px; font-size: 12px; font-weight: 500; letter-spacing: .14em; color: var(--cream); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.map-marker:hover { z-index: 5; }
.map-marker:hover .tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* inzet-cirkel Noordwest-Europa */
.map-inset { position: absolute; width: 21%; aspect-ratio: 1; border: 1px dashed rgba(190, 154, 92, .55); border-radius: 50%; background: rgba(20, 27, 51, .72); backdrop-filter: blur(4px); }
.map-inset .lbl { position: absolute; left: 50%; top: 12%; transform: translateX(-50%); font-size: 9.5px; font-weight: 600; letter-spacing: .24em; color: rgba(242, 245, 236, .55); white-space: nowrap; }
.map-inset-line { position: absolute; height: 1px; background: linear-gradient(to right, rgba(190, 154, 92, .8), rgba(190, 154, 92, .15)); transform-origin: left center; }

/* ============================================================
   SAMENWERKEN, brengen/vragen kolommen
   ============================================================ */
.bring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
.bring-col { border-radius: 22px; padding: 38px 34px 42px; }
.bring-col.is-gold { background: var(--gold); color: var(--navy-900); }
.bring-col.is-navy { background: var(--navy-900); color: var(--cream); border: 1px solid rgba(190, 154, 92, .3); }
.bring-col h3 { font-size: 24px; letter-spacing: .02em; margin-bottom: 22px; }
.bring-col ul { list-style: none; display: grid; gap: 13px; }
.bring-col li { display: flex; gap: 12px; font-size: 15px; font-weight: 400; line-height: 1.55; align-items: baseline; }
.bring-col.is-gold li::before { content: "\2713"; font-weight: 700; }
.bring-col.is-navy li { color: rgba(242, 245, 236, .85); font-weight: 300; }
.bring-col.is-navy li::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* ============================================================
   ZEPPELINO-TEKENING
   ============================================================ */
.zep-drawing { background: #FFFFFF; border: 1px solid var(--line); border-radius: 22px; padding: 34px; }
.zep-drawing img { width: 100%; height: auto; }
.zep-drawing .caption { margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: .3em; color: var(--gold-dark); text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 1080px) {
  .stats-grid, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .hero-wheel { opacity: .25; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .site-nav { padding: 14px 24px; }
  .hero-inner { padding-top: 120px; padding-bottom: 140px; }
  .hero .lead { font-size: 17px; }
  .scroll-cue { display: none; }
  .hero-badge { right: 24px; bottom: 24px; transform: scale(.72); transform-origin: bottom right; }
  .section, .stats { padding: 80px 0; }
  .section.tight { padding: 10px 0 90px; }
  .section-head { display: block; }
  .section-head .intro { margin-top: 18px; max-width: none; }
  .stats-grid { gap: 32px; }
  .stat .num { font-size: 52px; }
  .cards-3, .cards-4, .spec-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-span-7, .g-span-5, .g-span-4 { grid-column: auto; height: 260px; }
  .split-photo img { height: 340px; }
  .split-photo .frame { height: 340px; }
  .split-photo .deco-ring { display: none; }
  .bring-grid { grid-template-columns: 1fr; }
  .map-marker .tip { display: none; }
  .map-inset .lbl { display: none; }
  .page-hero { padding: 150px 0 80px; }
  .cta-band { padding: 30px 0 100px; }
  .contact-form { padding: 28px 22px; }
  .footer-cols { gap: 40px; }
}
