*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #0a0f1e;
      --navy2:   #0d1628;
      --blue:    #1a2a4a;
      --gold:    #b8976a;
      --gold2:   #d4af7a;
      --light:   #f5f3ef;
      --white:   #ffffff;
      --grey:    #8a8f9a;
      --border:  rgba(184,151,106,0.25);
      --section: #0c1220;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--navy);
      color: var(--light);
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      position: relative;
    }

    /* ── NAVIGATION ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: linear-gradient(to bottom, rgba(10,15,30,0.7), transparent);
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(10,15,30,0.97);
      box-shadow: 0 1px 0 var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      color: var(--white);
      text-transform: uppercase;
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245,243,239,0.75);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 0.55rem 1.6rem;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--navy); }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--light); transition: 0.3s; }

    /* mobile menu altijd verborgen op desktop */
    .mobile-menu { display: none; }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,15,30,0.5) 0%, rgba(10,15,30,0.25) 40%, rgba(10,15,30,0.75) 100%);
      z-index: 1;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--navy);
    }
    .hero-content {
      position: relative;
      text-align: center;
      max-width: 900px;
      padding: 0 2rem;
    }
    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 1.8rem;
    }
    .hero-title .h1-kicker {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold2);
    }
    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(245,243,239,0.8);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 3rem;
    }
    .hero-actions {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 0.9rem 2.6rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
    .btn-secondary {
      background: transparent;
      border: 1px solid rgba(245,243,239,0.4);
      color: var(--light);
      padding: 0.9rem 2.6rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,243,239,0.45);
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDown 2s ease infinite;
    }
    @keyframes scrollDown { 0%,100% { opacity:0.3; transform: scaleY(1); } 50% { opacity:1; transform: scaleY(0.6); } }

    /* ── STATS ── */
    #stats {
      background: var(--blue);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3.5rem 4rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.2rem;
      font-weight: 300;
      color: var(--gold2);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--grey);
      margin-top: 0.5rem;
    }

    /* ── SECTION SHARED ── */
    section { padding: 7rem 4rem; }
    .section-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--gold2); }
    .section-body {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(245,243,239,0.72);
      max-width: 560px;
    }
    .gold-line {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 2rem 0;
    }

    /* ── INTRO ── */
    #intro {
      background: var(--section);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .intro-img {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .intro-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(0.88) saturate(0.9);
      transition: transform 0.8s ease;
    }
    .intro-img:hover img { transform: scale(1.03); }
    .intro-img-badge {
      position: absolute;
      bottom: 2rem; right: -2rem;
      background: var(--gold);
      color: var(--navy);
      padding: 1.4rem 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      text-align: center;
      line-height: 1.2;
    }
    .intro-img-badge small {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 0.2rem;
    }

    /* ── WAAROM SPUITEN ── */
    #waarom {
      background: var(--blue);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .waarom-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4.5rem;
    }
    .waarom-header .section-body { margin: 0 auto; }
    .waarom-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .waarom-card {
      background: var(--navy);
      border: 1px solid var(--border);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s;
    }
    .waarom-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
    }
    .waarom-stat {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.4rem;
      font-weight: 300;
      color: var(--gold2);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .waarom-stat-sub {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
    }
    .waarom-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .waarom-card p {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--grey);
    }
    .waarom-cta {
      text-align: center;
      margin-top: 3.5rem;
    }

    /* ── PROCESS ── */
    #process {
      background: var(--navy);
    }
    .process-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 5rem;
    }
    .process-header .section-body { margin: 0 auto; }
    .process-flow {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
    }
    /* vertical connecting line through the number column */
    .process-flow::before {
      content: '';
      position: absolute;
      top: 2rem;
      bottom: 2rem;
      left: 31px;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--border) 8%, var(--border) 92%, transparent);
    }
    .flow-step {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 2rem;
      align-items: start;
      padding-bottom: 3rem;
    }
    .flow-step:last-child { padding-bottom: 0; }
    .flow-num {
      width: 64px;
      height: 64px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--gold);
      background: var(--navy);
      position: relative;
      z-index: 1;
      transition: background 0.3s, color 0.3s;
    }
    .flow-step:hover .flow-num {
      background: var(--gold);
      color: var(--navy);
    }
    .flow-body { padding-top: 0.3rem; }
    .flow-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .flow-body p {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,243,239,0.65);
      margin-bottom: 1.2rem;
      max-width: 620px;
    }
    .flow-body ul {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem 2rem;
    }
    .flow-body ul li {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(245,243,239,0.6);
      padding-left: 1.2rem;
      position: relative;
    }
    .flow-body ul li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--gold);
    }

    /* ── SERVICES ── */
    #services {
      background: var(--section);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 4rem;
    }
    .service-item {
      background: var(--blue);
      padding: 3rem 2.5rem;
      border: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }
    .service-item:hover {
      border-color: var(--border);
      background: var(--navy2);
    }
    .service-icon {
      display: block;
      margin-bottom: 1.5rem;
      color: var(--gold);
    }
    .service-icon svg {
      width: 40px;
      height: 40px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-item h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .service-item p {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--grey);
    }
    .service-item h3 a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    .service-item:hover h3 a { color: var(--gold2); }
    .service-link {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .service-link:hover { border-color: var(--gold); }

    /* ── NETWERK (compacte strook) ── */
    #netwerk {
      background: var(--section);
      padding-top: 0;
    }
    .netwerk-band {
      border: 1px solid var(--border);
      background: var(--navy);
      padding: 3rem 3.5rem;
      text-align: center;
      max-width: 980px;
      margin: 0 auto;
    }
    .netwerk-band .section-eyebrow { margin-bottom: 0.8rem; }
    .netwerk-band h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .netwerk-band h3 em { font-style: italic; color: var(--gold2); }
    .netwerk-band p {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(245,243,239,0.65);
      max-width: 620px;
      margin: 0 auto 2rem;
    }
    .netwerk-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.7rem;
    }
    .netwerk-tags span {
      font-size: 0.78rem;
      font-weight: 300;
      letter-spacing: 0.03em;
      color: rgba(245,243,239,0.8);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 0.5rem 1.1rem;
      transition: border-color 0.25s, color 0.25s;
    }
    .netwerk-tags span:hover { border-color: var(--gold); color: var(--gold); }

    /* ── WHY ── */
    #why {
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .why-img {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .why-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(0.8) saturate(0.85);
    }
    .why-features { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
    .feature {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1.2rem;
      align-items: start;
    }
    .feature-icon {
      width: 48px; height: 48px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .feature-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .feature h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .feature p {
      font-size: 0.84rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--grey);
    }

    /* ── FAQ ── */
    #faq {
      background: var(--section);
    }
    .faq-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-bottom: 4rem;
    }
    .faq-list { display: flex; flex-direction: column; gap: 1px; }
    .faq-item {
      background: var(--blue);
      border: 1px solid transparent;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item.open { border-color: var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.4rem 2rem;
      cursor: pointer;
      text-align: left;
      gap: 1rem;
    }
    .faq-q span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
    }
    .faq-arrow {
      font-size: 1rem;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner {
      padding: 0 2rem 1.4rem;
      font-size: 0.88rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--grey);
      border-top: 1px solid var(--border);
      padding-top: 1.2rem;
    }

    /* ── GALLERY ── */
    #gallery {
      background: var(--navy);
      padding: 7rem 0;
    }
    #gallery .gallery-header {
      text-align: center;
      padding: 0 4rem;
      margin-bottom: 4rem;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }
    .gallery-grid .g-item {
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--blue);
      position: relative;
    }
    .gallery-grid .g-item:first-child {
      grid-column: span 1;
    }
    .gallery-grid .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(0.85) saturate(0.9);
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .gallery-grid .g-item:hover img {
      transform: scale(1.06);
      filter: brightness(1) saturate(1);
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,15,30,0.7), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
    }
    .g-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      background: var(--blue);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
      padding: 7rem 4rem;
    }
    .testimonial-slider {
      max-width: 780px;
      margin: 3rem auto 0;
      position: relative;
      min-height: 200px;
    }
    .testimonial {
      display: none;
    }
    .testimonial.active { display: block; }
    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.55;
      color: var(--white);
      margin-bottom: 2rem;
    }
    .testimonial-author {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2.5rem;
    }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--grey);
      cursor: pointer;
      transition: background 0.2s;
    }
    .dot.active { background: var(--gold); }

    /* ── CONTACT ── */
    #contact {
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
    }
    .contact-info .section-body { margin-bottom: 2.5rem; }
    .contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .contact-detail-icon {
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 0.15rem;
      display: flex;
    }
    .contact-detail-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .contact-detail-text { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--grey); }
    .contact-detail-text strong { color: var(--light); font-weight: 400; display: block; margin-bottom: 0.2rem; }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    label {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey);
    }
    input, select, textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,151,106,0.2);
      color: var(--light);
      padding: 0.85rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      appearance: none;
    }
    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8976a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      cursor: pointer;
    }
    select option { background: var(--navy2); }
    input:focus, select:focus, textarea:focus { border-color: var(--gold); }
    textarea { resize: vertical; min-height: 130px; }
    input::placeholder, textarea::placeholder { color: rgba(138,143,154,0.5); }
    .form-submit {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 1rem 2rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--gold2); transform: translateY(-1px); }

    /* foto-hint */
    .photo-hint {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      background: rgba(184,151,106,0.06);
      border: 1px solid var(--border);
      padding: 0.9rem 1rem;
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.6;
      color: var(--grey);
    }
    .photo-hint svg {
      width: 18px; height: 18px;
      stroke: var(--gold); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    .photo-hint a { color: var(--gold2); text-decoration: none; border-bottom: 1px solid rgba(212,175,122,0.4); }
    .photo-hint a:hover { color: var(--gold); }
    .form-note {
      font-size: 0.72rem;
      color: var(--grey);
      line-height: 1.6;
      opacity: 0.7;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 4rem 4rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    .footer-brand .nav-logo { font-size: 1.1rem; display: block; margin-bottom: 1rem; }
    .footer-brand p {
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--grey);
      max-width: 260px;
    }
    .footer-col h4 {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul li a {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.72rem;
      color: rgba(138,143,154,0.5);
    }
    .footer-bottom a { color: inherit; text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      nav { padding: 1.2rem 2rem; }
      section { padding: 5rem 2rem; }
      #stats { grid-template-columns: repeat(2,1fr); padding: 3rem 2rem; }
      #intro { grid-template-columns: 1fr; gap: 3rem; }
      .intro-img { max-height: 500px; }
      .intro-img-badge { right: 0; }
      .flow-body ul { grid-template-columns: 1fr; }
      .waarom-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .netwerk-band { padding: 2.5rem 2rem; }
      #why { grid-template-columns: 1fr; }
      .why-img { max-height: 400px; }
      #contact { grid-template-columns: 1fr; gap: 4rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid .g-item:first-child { grid-column: span 1; }
      .faq-header { grid-template-columns: 1fr; gap: 2rem; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-title { font-size: 2.8rem; }
      #stats { grid-template-columns: repeat(2,1fr); }
      .hero-video { object-position: 30% center; }
      .flow-step { gap: 1.2rem; }
      .waarom-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .hero-scroll { display: none; }

      /* mobile menu */
      .mobile-menu {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100%;
        background: var(--navy2);
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
      }
      .mobile-menu.open { opacity: 1; visibility: visible; }
      .mobile-menu a {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 300;
        color: var(--white);
        text-decoration: none;
        letter-spacing: 0.08em;
      }
      .mobile-menu a:hover { color: var(--gold); }
      .mobile-close {
        position: absolute;
        top: 1.5rem; right: 2rem;
        background: none; border: none;
        color: var(--light);
        font-size: 2rem;
        cursor: pointer;
      }
    }

    /* Fade-in animations */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* ============================================
   SUBPAGINA'S (dienst- & werkgebiedpagina's)
   ============================================ */
.subpage-hero {
  position: relative;
  padding: 11rem 4rem 5rem;
  background: linear-gradient(180deg, rgba(10,15,30,0.78), rgba(10,15,30,0.92)),
              var(--blue);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.subpage-hero .breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.2rem;
}
.subpage-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.subpage-hero .breadcrumb a:hover { color: var(--gold2); }
.subpage-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 1.4rem;
}
.subpage-hero h1 em { font-style: italic; color: var(--gold2); }
.subpage-hero p.lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,243,239,0.8);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.subpage-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.subpage-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin: 2.8rem 0 1rem;
  line-height: 1.2;
}
.subpage-body h2:first-child { margin-top: 0; }
.subpage-body h2 em { font-style: italic; color: var(--gold2); }
.subpage-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin: 1.8rem 0 0.6rem;
}
.subpage-body p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,243,239,0.72);
  margin-bottom: 1.2rem;
}
.subpage-body ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.subpage-body ul li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,243,239,0.72);
  padding: 0.35rem 0 0.35rem 1.6rem;
  position: relative;
}
.subpage-body ul li::before {
  content: '›';
  position: absolute;
  left: 0.2rem;
  color: var(--gold);
}
.subpage-body .gold-line { margin: 1.5rem 0 2.5rem; }

.subpage-cta {
  background: var(--blue);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
  margin-top: 3.5rem;
}
.subpage-cta h2 {
  margin: 0 0 0.8rem;
}
.subpage-cta p {
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

.related-services {
  background: var(--section);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.related-services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}
.related-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}
.related-grid a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,243,239,0.8);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.related-grid a:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .subpage-hero { padding: 9rem 1.5rem 3.5rem; }
  .subpage-body { padding: 3rem 1.5rem; }
  .subpage-cta { padding: 2rem 1.5rem; }
}

/* ============================================
   JURIDISCHE PAGINA (algemene voorwaarden)
   ============================================ */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.legal-body .legal-intro {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,243,239,0.72);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 3rem;
}
.legal-article {
  margin-bottom: 2.6rem;
}
.legal-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.legal-article h2 span {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.legal-article p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,243,239,0.72);
  margin-bottom: 0.8rem;
}
.legal-article ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}
.legal-article ol li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,243,239,0.72);
  margin-bottom: 0.7rem;
  padding-left: 0.4rem;
}
.legal-article ol li::marker { color: var(--gold); }
.legal-article ul {
  list-style: none;
  margin: 0.4rem 0 1rem;
  padding: 0;
}
.legal-article ul li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,243,239,0.72);
  padding: 0.25rem 0 0.25rem 1.4rem;
  position: relative;
}
.legal-article ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-body { padding: 2.5rem 1.5rem 3.5rem; }
}
