    :root {
      --gold:    #C9A84C;
      --gold2:   #E8C97A;
      --gold3:   #F5E4AC;
      --cream:   #FBF6EC;
      --cream2:  #F6EEDD;
      --cream3:  #F1E7D3;
      --dark:    #221605;
      --dark2:   #2E1E00;
      --blue:    #3A2A10;
      --blue2:   #3A2A10;
      --night:   #221605;
      --text:    #3A2A10;
      --textl:   #7A6438;
      --wine:    #7B1E26;
      --wine2:   #611620;
      --white:   #FFFFFF;
      --shadow:  rgba(34,22,5,0.18);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream2); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* LOADER - verborgen */
    #loader { display: none; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(34,22,5,0.93);
      backdrop-filter: blur(14px);
      padding: 14px 60px;
      box-shadow: 0 2px 24px rgba(0,0,0,0.35);
    }
    .nav-logo { display: flex; align-items: center; gap: 13px; }
    .nav-logo img {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid var(--gold); object-fit: cover;
      transition: transform 0.3s;
    }
    .nav-logo img:hover { transform: scale(1.06); }
    .nav-logo img.brandlogo { width: auto; height: 30px; border: none; border-radius: 0; object-fit: contain; }
    @media (max-width: 860px) { .nav-logo img.brandlogo { height: 26px; } }
    @media (max-width: 480px) { .nav-logo img.brandlogo { height: 23px; } }
    @media (max-width: 360px) { .nav-logo img.brandlogo { height: 21px; } }
    .nav-brand { display: flex; flex-direction: column; }
    .nav-brand b {
      font-family: 'Playfair Display', serif;
      color: var(--gold2); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.07em;
    }
    .nav-brand small {
      color: rgba(255,255,255,0.45); font-size: 0.62rem;
      letter-spacing: 0.14em; text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 34px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.82); font-size: 0.8rem;
      font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
      position: relative; transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
      height: 1px; background: var(--gold); transition: right 0.3s;
    }
    .nav-links a:hover { color: var(--gold2); }
    .nav-links a:hover::after { right: 0; }
    .nav-cta {
      background: transparent !important; border: 1.5px solid var(--gold) !important;
      color: var(--gold2) !important; padding: 8px 22px;
      border-radius: 2px; transition: all 0.3s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-burger span { width: 24px; height: 1.5px; background: var(--gold2); transition: all 0.3s; }

    /* HERO */
    #hero {
      height: 100vh; min-height: 660px;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../fotos/hero-poster.jpg');
      background-size: cover; background-position: center 30%;
    }
    .hero-video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
    }
    @keyframes kenBurns {
      0%   { transform: scale(1.0) translate(0%, 0%); }
      25%  { transform: scale(1.08) translate(-1%, 1%); }
      50%  { transform: scale(1.12) translate(1%, -1%); }
      75%  { transform: scale(1.06) translate(-0.5%, 0.5%); }
      100% { transform: scale(1.1) translate(0.5%, -0.5%); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(155deg, rgba(34,22,5,0.82) 0%, rgba(34,22,5,0.42) 52%, rgba(34,22,5,0.80) 100%);
    }
    .hero-glow {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
      animation: glowPulse 4s ease-in-out infinite;
    }
    @keyframes glowPulse { 0%,100%{opacity:0.5} 50%{opacity:1} }
    .hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .particle {
      position: absolute; border-radius: 50%; opacity: 0;
      background: var(--gold2); animation: floatUp linear infinite;
    }
    @keyframes floatUp {
      0%   { transform: translateY(0) scale(0); opacity: 0; }
      10%  { opacity: 0.7; transform: translateY(-10px) scale(1); }
      90%  { opacity: 0.2; }
      100% { transform: translateY(-100px) scale(0.2); opacity: 0; }
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 0 24px; max-width: 840px;
    }
    .hero-eye {
      font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
      color: var(--gold2); font-weight: 500;
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin-bottom: 22px; animation: fadeUp 0.8s ease 0.3s both;
    }
    .hero-eye::before, .hero-eye::after {
      content: ''; flex: 1; max-width: 55px; height: 1px; background: var(--gold);
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.2rem);
      color: var(--cream); line-height: 1.1; font-weight: 700;
      margin-bottom: 10px; animation: fadeUp 0.8s ease 0.5s both;
    }
    .hero-h1 em { color: var(--gold2); font-style: italic; }
    .hero-sub {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1rem, 2.4vw, 1.5rem);
      color: var(--gold3); font-style: italic; font-weight: 400;
      margin-bottom: 30px; animation: fadeUp 0.8s ease 0.7s both;
    }
    .hero-p {
      font-size: 0.93rem; color: rgba(255,255,255,0.72);
      line-height: 1.82; max-width: 540px; margin: 0 auto 46px;
      font-weight: 300; animation: fadeUp 0.8s ease 0.9s both;
    }
    .hero-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s ease 1.1s both;
    }
    .btn-gold {
      background: var(--gold); color: var(--dark);
      padding: 14px 38px; border: none; cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 700;
      font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
      border-radius: 2px; position: relative; overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    }
    .btn-gold::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transform: translateX(-100%); transition: transform 0.5s;
    }
    .btn-gold:hover::before { transform: translateX(100%); }
    .btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
    .btn-ghost {
      background: transparent; color: var(--cream);
      padding: 14px 38px; border: 1.5px solid rgba(255,255,255,0.38); cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 500;
      font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
      border-radius: 2px; transition: all 0.3s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: fadeUp 0.8s ease 1.4s both; cursor: pointer;
    }
    .hero-scroll span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
    .scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
    @keyframes scrollLine { 0%,100%{opacity:1} 50%{opacity:0.35} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

    /* SECTIONS */
    section { padding: 100px 60px; }
    .slabel {
      font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
      color: var(--gold); font-weight: 600;
      display: flex; align-items: center; gap: 11px; margin-bottom: 14px;
    }
    .slabel::before { content: ''; width: 38px; height: 1px; background: var(--gold); }
    .stitle {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      color: var(--dark); line-height: 1.2; font-weight: 700; margin-bottom: 18px;
    }
    .stitle em { color: var(--gold); font-style: italic; }
    .stitle.orn::after {
      content: '❖'; display: block; margin-top: 14px;
      color: var(--gold); font-size: 0.9rem; letter-spacing: 0.4em;
      position: relative;
    }
    .stitle.orn::before {
      content: ''; display: block; width: 66px; height: 2px; margin-top: 20px; margin-bottom: -30px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .tarieven-hd .stitle.orn::before, .aanm-hd .stitle.orn::before,
    #sfeer .stitle.orn::before, #reviews .stitle.orn::before, #faq .stitle.orn::before {
      margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 18px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .sdesc { font-size: 0.95rem; color: var(--textl); line-height: 1.84; max-width: 580px; font-weight: 300; }
    .reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.7s, transform 0.7s; }
    .reveal-l { opacity: 0; transform: translateX(-38px); transition: opacity 0.7s, transform 0.7s; }
    .reveal-r { opacity: 0; transform: translateX(38px); transition: opacity 0.7s, transform 0.7s; }
    .reveal.vis, .reveal-l.vis, .reveal-r.vis { opacity: 1; transform: none; }

    /* STATS */
    #stats {
      padding: 60px;
      position: relative;
      display: flex; justify-content: center; gap: 72px; flex-wrap: wrap;
      overflow: hidden;
    }
    #stats::before {
      content: ''; position: absolute; inset: 0;
      background-image: url('../fotos/Dakka Marrakchia .jpg');
      background-size: cover; background-position: center 40%;
      filter: brightness(0.18) saturate(0.6);
    }
    #stats > * { position: relative; z-index: 1; }
    .stat { text-align: center; opacity: 0; transform: translateY(18px); transition: opacity 0.6s, transform 0.6s; }
    .stat.vis { opacity: 1; transform: none; }
    .stat-n { font-family:'Playfair Display',serif; font-size: 2.8rem; color: var(--gold2); font-weight: 700; line-height: 1; }
    .stat-l { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 7px; }
    .stat-div { width: 1px; background: rgba(201,168,76,0.2); }

    /* FOTOBANNER */
    .foto-banner {
      display: grid; grid-template-columns: 1fr 1.6fr 1fr 1fr;
      height: 340px; gap: 4px; overflow: hidden;
    }
    .foto-banner-item { overflow: hidden; }
    .foto-banner-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; image-rendering: -webkit-optimize-contrast; }
    .foto-banner-item:hover img { transform: scale(1.04); }
    @media (max-width: 768px) {
      .foto-banner { grid-template-columns: 1fr 1fr; height: 220px; }
      .foto-banner-main { grid-column: span 2; }
    }

    /* DIENSTEN */
    #diensten { background: var(--cream2); }
    .diensten-hd { max-width: 1200px; margin: 0 auto 64px; }
    .diensten-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 30px; max-width: 1200px; margin: 0 auto;
    }
    .dcard {
      background: var(--white); border-radius: 3px;
      overflow: hidden; box-shadow: 0 4px 22px var(--shadow);
      transition: opacity 0.6s, transform 0.6s, box-shadow 0.4s;
      opacity: 0; transform: translateY(38px); cursor: default;
    }
    .dcard.vis { opacity: 1; transform: translateY(0); }
    .dcard:hover { transform: translateY(-7px); box-shadow: 0 14px 44px rgba(34,22,5,0.15); }
    .dcard-img { height: 290px; overflow: hidden; position: relative; }
    .dcard-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s; image-rendering: -webkit-optimize-contrast; }
    .dcard:hover .dcard-img img { transform: scale(1.06); }
    .dcard-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(34,22,5,0.48) 0%, transparent 50%); }
    .dcard-nr { display: none; }
    .dcard-body { padding: 26px 28px 30px; }
    .dcard-name { font-family:'Playfair Display',serif; font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 9px; }
    .dcard-desc { font-size: 0.86rem; color: var(--textl); line-height: 1.74; font-weight: 300; margin-bottom: 18px; }
    .dcard-tag { font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--gold); font-weight: 600; border-top: 1px solid rgba(201,168,76,0.18); padding-top: 14px; display: block; }

    /* GALERIE */
    #galerie { background: var(--cream); }
    .galerie-hd { max-width: 1200px; margin: 0 auto 54px; }

    /* Filter buttons */
    .gal-filters {
      display: flex; flex-wrap: wrap; gap: 10px;
      max-width: 1200px; margin: 0 auto 48px;
    }
    .gal-filter {
      padding: 8px 22px; border-radius: 2px; cursor: pointer;
      font-family: 'Jost', sans-serif; font-size: 0.74rem;
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--textl); background: transparent;
      transition: all 0.25s;
    }
    .gal-filter:hover { border-color: var(--gold); color: var(--gold); }
    .gal-filter.on { background: var(--gold); border-color: var(--gold); color: var(--dark); }

    /* Grid layout - gelijk formaat */
    .galerie-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 280px;
      gap: 10px;
      max-width: 1200px; margin: 0 auto;
    }
    .gitem {
      overflow: hidden; border-radius: 3px; cursor: pointer;
      position: relative;
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.5s, transform 0.5s, box-shadow 0.35s;
      box-shadow: 0 2px 12px rgba(34,22,5,0.08);
    }
    .gitem.vis { opacity: 1; transform: translateY(0); }
    .gitem.hidden-item { display: none; }
    .gitem img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
      transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .gitem:hover { box-shadow: 0 10px 36px rgba(34,22,5,0.18); }
    .gitem:hover img { transform: scale(1.06); }
    .gitem-ov {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(34,22,5,0.55) 0%, rgba(34,22,5,0) 55%);
      opacity: 0; transition: opacity 0.35s;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 16px;
    }
    .gitem:hover .gitem-ov { opacity: 1; }
    .gitem-label {
      font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gold2); font-weight: 600;
      transform: translateY(6px); transition: transform 0.35s;
    }
    .gitem:hover .gitem-label { transform: translateY(0); }
    .gz {
      position: absolute; top: 10px; right: 10px;
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,0.6); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s;
      background: rgba(0,0,0,0.15); backdrop-filter: blur(4px);
    }
    .gitem:hover .gz { opacity: 1; transform: scale(1); }
    .gz svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2; }

    @media (max-width: 900px) { .galerie-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; } }
    @media (max-width: 600px) { .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

    /* ===== MOBIEL VOLLEDIG ===== */
    @media (max-width: 768px) {
      /* Algemeen */
      section { padding: 60px 18px; }
      nav { padding: 14px 18px; }
      nav.scrolled { padding: 10px 18px; }

      /* Hero */
      .hero-h1 { font-size: 2.6rem; }
      .hero-sub { font-size: 1rem; }
      .hero-p { font-size: 0.88rem; }
      .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
      .btn-gold, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
      .hero-eye { font-size: 0.62rem; letter-spacing: 0.2em; }
      .hero-eye::before, .hero-eye::after { max-width: 30px; }

      /* Stats */
      #stats { flex-direction: column; gap: 28px; padding: 44px 18px; }
      .stat-div { display: none; }
      .stat-n { font-size: 2.2rem; }

      /* Diensten */
      .diensten-grid { grid-template-columns: 1fr; gap: 20px; }
      .diensten-hd { margin-bottom: 36px; }

      /* Galerij */
      .galerie-hd { margin-bottom: 30px; }
      .gal-filters { gap: 7px; }
      .gal-filter { padding: 7px 14px; font-size: 0.68rem; }
      .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 7px; }

      /* Tarieven */
      .tarieven-hd { margin-bottom: 36px; }
      .tab-nav { gap: 6px; }
      .tab-btn { padding: 9px 14px; font-size: 0.7rem; }
      .prijs-grid { grid-template-columns: 1fr; }
      .prijs-row { flex-direction: column; align-items: flex-start; gap: 6px; }
      .prijs-row-prijs { font-size: 1.2rem; }
      .pkt-grid { grid-template-columns: 1fr; }
      .extra-grid { grid-template-columns: 1fr; }

      /* Over ons */
      .over-inner { grid-template-columns: 1fr; gap: 40px; }
      .over-imgs { height: 300px; }
      .over-main { width: 75%; height: 78%; }
      .over-sub { width: 56%; height: 52%; }
      .over-badge { width: 70px; height: 70px; }
      .over-badge b { font-size: 1.2rem; }

      /* Aanmelding */
      .fgrid { grid-template-columns: 1fr; padding: 28px 20px; }
      .fg.full { grid-column: 1; }
      .f-submit { grid-column: 1; }
      .check-grid { grid-template-columns: repeat(2, 1fr); }
      .btn-submit { width: 100%; padding: 16px; }

      /* Footer */
      footer { padding: 40px 18px 22px; }
      .footer-inner { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

      /* Nav burger */
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(34,22,5,0.97); backdrop-filter: blur(12px); padding: 16px 18px; gap: 0; }
      .nav-links.open a { display: block; padding: 11px 0; border-bottom: 1px solid rgba(201,168,76,0.08); font-size: 0.88rem; }

      /* Titles */
      .stitle { font-size: 1.8rem; }
      .tarieven-hd .stitle { font-size: 1.7rem; }
    }

    @media (max-width: 480px) {
      .hero-h1 { font-size: 2rem; }
      .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
      .check-grid { grid-template-columns: 1fr; }
      .tab-btn { padding: 8px 10px; font-size: 0.64rem; letter-spacing: 0.04em; }
      .dcard-img { height: 220px; }
    }

    /* LIGHTBOX */
    #lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
    #lightbox.open { opacity: 1; visibility: visible; }
    #lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
    .lb-close { position: absolute; top: 22px; right: 28px; font-size: 2rem; color: rgba(255,255,255,0.65); cursor: pointer; transition: color 0.2s; }
    .lb-close:hover { color: var(--gold2); }
    .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; background: rgba(0,0,0,0.3); }
    .lb-nav:hover { border-color: var(--gold); }
    .lb-nav svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
    #lb-prev { left: 22px; }
    #lb-next { right: 22px; }

    /* TARIEVEN */
    #tarieven { position: relative; background:
        radial-gradient(1100px 500px at 50% -8%, rgba(201,168,76,0.10), transparent 70%),
        linear-gradient(160deg, #221605 0%, #2E1E00 55%, #221605 100%); }
    .tarieven-hd { max-width: 1100px; margin: 0 auto 70px; text-align: center; }
    .tarieven-hd .slabel { justify-content: center; }
    .tarieven-hd .slabel::before { display: none; }
    .tarieven-hd .stitle { color: var(--cream); }
    .tarieven-hd .stitle em { color: var(--gold2); }
    .tarieven-hd .sdesc { color: rgba(255,255,255,0.48); margin: 0 auto; }

    /* Tab navigation */
    .tab-nav {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
      max-width: 1100px; margin: 0 auto 56px;
    }
    .tab-btn {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.2);
      color: rgba(255,255,255,0.55);
      padding: 12px 26px; border-radius: 2px; cursor: pointer;
      font-family: 'Jost', sans-serif; font-size: 0.8rem;
      font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      transition: all 0.25s;
    }
    .tab-btn:hover { border-color: rgba(201,168,76,0.5); color: rgba(255,255,255,0.8); }
    .tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
    .tab-panel { display: none; max-width: 1100px; margin: 0 auto; animation: fadeUp 0.4s ease; }
    .tab-panel.active { display: block; }

    /* Klantvriendelijke prijskaarten */
    .prijs-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-bottom: 24px;
    }
    .prijs-row {
      position: relative; background: rgba(255,255,255,0.035); border: 1px solid rgba(201,168,76,0.16);
      border-radius: 4px; padding: 20px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
      overflow: hidden;
    }
    .prijs-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
    .prijs-row:hover { border-color: rgba(201,168,76,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.28); }
    .prijs-row:hover::before { transform: scaleY(1); }
    .prijs-row-info { flex: 1; }
    .prijs-row-naam { font-size: 0.92rem; color: var(--cream); font-weight: 500; margin-bottom: 4px; }
    .prijs-row-sub { font-size: 0.76rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.5; }
    .prijs-row-prijs {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--gold2); font-weight: 700;
      white-space: nowrap; text-align: right;
    }
    .prijs-row-prijs small { font-size: 0.65rem; display: block; color: rgba(255,255,255,0.3); font-family: 'Jost',sans-serif; font-weight: 300; margin-top: 2px; }
    .prijs-cat-title {
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); font-weight: 600; margin-bottom: 16px; padding-bottom: 10px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    /* Pakket tabel */
    .pktt {
      width: 100%; border-collapse: collapse; margin-bottom: 16px;
    }
    .pktt thead tr { background: rgba(201,168,76,0.1); }
    .pktt th {
      padding: 12px 18px; text-align: left;
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .pktt td {
      padding: 13px 18px; font-size: 0.87rem; color: rgba(255,255,255,0.7);
      font-weight: 300; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.5;
    }
    .pktt tr:hover td { background: rgba(255,255,255,0.03); }
    .pktt .price { color: var(--gold2); font-weight: 600; white-space: nowrap; }
    .pktt .note { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-style: italic; }

    /* Pakket cards (for dabke) */
    .pkt-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px;
      margin-bottom: 16px;
    }
    .pkt-card {
      border: 1px solid rgba(201,168,76,0.2); border-radius: 3px;
      padding: 28px 26px; background: rgba(255,255,255,0.03);
      transition: all 0.35s; position: relative; overflow: hidden;
    }
    .pkt-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0; transition: opacity 0.35s;
    }
    .pkt-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-4px); }
    .pkt-card:hover::before { opacity: 1; }
    .pkt-card.fav { border-color: var(--gold); }
    .pkt-card.fav::before { opacity: 1; }
    .pkt-badge {
      position: absolute; top: 16px; right: 16px;
      font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--dark); background: var(--gold);
      padding: 3px 9px; border-radius: 2px; font-weight: 700;
    }
    .pkt-nr { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; font-weight: 600; }
    .pkt-name { font-family:'Playfair Display',serif; font-size: 1.1rem; color: var(--cream); font-weight: 600; margin-bottom: 18px; }
    .pkt-price { font-family:'Playfair Display',serif; font-size: 2rem; color: var(--gold2); font-weight: 700; line-height: 1; margin-bottom: 4px; }
    .pkt-price sup { font-size: 0.95rem; vertical-align: super; }
    .pkt-from { font-size: 0.68rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
    .pkt-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
    .pkt-list li { font-size: 0.83rem; color: rgba(255,255,255,0.6); font-weight: 300; padding-left: 12px; position: relative; }
    .pkt-list li::before { content: '-'; position: absolute; left: 0; color: var(--gold); }
    .btn-pkt {
      width: 100%; padding: 11px;
      background: transparent; border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold2); font-family: 'Jost', sans-serif;
      font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 600; cursor: pointer; border-radius: 2px; transition: all 0.3s;
    }
    .btn-pkt:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
    .pkt-card.fav .btn-pkt { background: var(--gold); border-color: var(--gold); color: var(--dark); }
    .pkt-card.fav .btn-pkt:hover { background: var(--gold2); border-color: var(--gold2); }

    /* Extra diensten tabel */
    .extra-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
    }
    .extra-item {
      border: 1px solid rgba(201,168,76,0.18); border-radius: 2px;
      padding: 20px 22px; background: rgba(255,255,255,0.03);
      transition: all 0.3s;
    }
    .extra-item:hover { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.05); }
    .extra-name { font-size: 0.92rem; color: var(--cream); font-weight: 500; margin-bottom: 6px; }
    .extra-price { font-family:'Playfair Display',serif; font-size: 1.5rem; color: var(--gold2); font-weight: 700; margin-bottom: 4px; }
    .extra-note { font-size: 0.74rem; color: rgba(255,255,255,0.35); font-weight: 300; }

    .tarieven-note {
      max-width: 700px; margin: 54px auto 0; text-align: center;
      font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.85; font-weight: 300;
    }
    .tarieven-note strong { color: rgba(255,255,255,0.5); font-weight: 500; }

    /* OVER ONS */
    #over { background: var(--cream2); }
    .over-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .over-imgs { position: relative; height: 500px; }
    .over-main { position: absolute; top: 0; left: 0; width: 70%; height: 80%; border-radius: 3px; overflow: hidden; box-shadow: 0 14px 44px var(--shadow); }
    .over-main img { width: 100%; height: 100%; object-fit: cover; image-rendering: -webkit-optimize-contrast; transition: transform 0.6s; }
    .over-main:hover img { transform: scale(1.03); }
    .over-sub { position: absolute; bottom: 0; right: 0; width: 54%; height: 54%; border-radius: 3px; overflow: hidden; box-shadow: 0 10px 32px var(--shadow); border: 4px solid var(--cream2); }
    .over-sub img { width: 100%; height: 100%; object-fit: cover; image-rendering: -webkit-optimize-contrast; transition: transform 0.6s; }
    .over-sub:hover img { transform: scale(1.03); }
    .over-badge { position: absolute; top: 50%; left: 63%; transform: translate(-50%, -50%); background: var(--gold); border-radius: 50%; width: 86px; height: 86px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(201,168,76,0.45); z-index: 3; }
    .over-badge b { font-family:'Playfair Display',serif; font-size: 1.5rem; color: var(--dark); font-weight: 700; line-height: 1; }
    .over-badge small { font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark2); font-weight: 700; }
    .over-punten { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
    .over-punt { display: flex; gap: 16px; align-items: flex-start; }
    .over-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
    .over-punt h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
    .over-punt p { font-size: 0.82rem; color: var(--textl); font-weight: 300; line-height: 1.6; }

    /* AANMELDING */
    #aanmelding { position: relative; overflow: hidden; background:
        radial-gradient(1100px 500px at 50% -8%, rgba(201,168,76,0.10), transparent 70%),
        linear-gradient(160deg, #221605 0%, #2E1E00 55%, #221605 100%); }
    .aanm-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
    .aanm-hd { text-align: center; margin-bottom: 56px; }
    .aanm-hd .slabel { justify-content: center; }
    .aanm-hd .slabel::before { display: none; }
    .aanm-hd .stitle { color: var(--cream); }
    .aanm-hd .stitle em { color: var(--gold2); }
    .aanm-hd .sdesc { color: rgba(255,255,255,0.47); margin: 0 auto; }
    .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; background: rgba(255,255,255,0.025); border: 1px solid rgba(201,168,76,0.15); border-radius: 6px; padding: 44px 42px; }
    .fstep { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; margin: 4px 0 6px; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold2); font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid rgba(201,168,76,0.18); }
    .fstep:not(:first-child) { margin-top: 26px; }
    .fstep-nr { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.4); color: var(--gold2); font-size: 0.7rem; font-weight: 700; letter-spacing: 0; }
    .fg { display: flex; flex-direction: column; gap: 7px; }
    .fg.full { grid-column: 1 / -1; }
    .fg label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.46); font-weight: 600; }
    .fg label span { color: var(--gold); }
    .fc {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px; padding: 13px 16px;
      color: var(--cream); font-family: 'Jost', sans-serif;
      font-size: 0.88rem; font-weight: 300;
      transition: border-color 0.3s, background 0.3s;
      outline: none; width: 100%;
    }
    .fc:focus { border-color: var(--gold); background: rgba(255,255,255,0.07); }
    .fc::placeholder { color: rgba(255,255,255,0.22); }
    select.fc option { background: var(--dark2); }
    textarea.fc { resize: vertical; min-height: 110px; }
    .check-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 9px; }
    .chk-item { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.13); border-radius: 2px; padding: 9px 13px; cursor: pointer; transition: all 0.2s; }
    .chk-item:hover { border-color: rgba(201,168,76,0.35); background: rgba(255,255,255,0.06); }
    .chk-item:has(input:checked) { border-color: var(--gold); background: rgba(201,168,76,0.12); }
    .chk-item input { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }
    .chk-item { align-items: flex-start; }
    .chk-item input { margin-top: 2px; }
    .chk-item label { display: flex; flex-direction: column; gap: 3px; font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 400; cursor: pointer; line-height: 1.25; }
    .chk-prijs { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--gold2); font-weight: 700; letter-spacing: 0.02em; }
    .chk-item:has(input:checked) label { color: var(--cream); }
    #dienstenWrap .check-grid { margin-bottom: 8px; }
    .dienst-cat { grid-column: 1 / -1; margin: 20px 0 12px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; padding-bottom: 9px; border-bottom: 1px solid rgba(201,168,76,0.18); }
    .dienst-cat:first-child { margin-top: 4px; }
    #dienstenWrap { display: flex; flex-direction: column; gap: 10px; }
    .dienst-groep { border: 1px solid rgba(201,168,76,0.22); border-radius: 8px; overflow: hidden; background: rgba(201,168,76,0.04); }
    .dienst-kop { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; color: var(--gold2); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; transition: background 0.2s; }
    .dienst-kop:hover { background: rgba(201,168,76,0.08); }
    .dienst-kop > span:first-child { display: flex; align-items: center; gap: 10px; }
    .telbadge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: var(--gold); color: #221605; font-size: 0.7rem; font-weight: 800; letter-spacing: 0; opacity: 0; transition: opacity 0.2s; }
    .telbadge.on { opacity: 1; }
    .chev { color: var(--gold); font-size: 0.9rem; transition: transform 0.25s; }
    .dienst-body { display: none; padding: 4px 14px 14px; grid-template-columns: 1fr; gap: 2px; }
    .dienst-groep.open .dienst-body { display: grid; }
    .dienst-groep.open .chev { transform: rotate(180deg); }
    .dienst-rij { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 6px; cursor: pointer; transition: background 0.15s; }
    .dienst-rij:hover { background: rgba(201,168,76,0.07); }
    .dienst-rij input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
    .dienst-rij .nm { flex: 1; color: var(--cream2); font-size: 0.9rem; line-height: 1.3; }
    .dienst-rij .pr { color: var(--gold2); font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
    .dienst-rij:has(input:checked) { background: rgba(201,168,76,0.13); }
    .dienst-rij:has(input:checked) .nm { color: #fff; }
    .dienst-rij.solo { border: 1px solid rgba(201,168,76,0.22); border-radius: 8px; background: rgba(201,168,76,0.04); padding: 15px 18px; }
    .total-box { grid-column: 1 / -1; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.35); border-radius: 6px; padding: 20px 24px; margin-top: 4px; }
    .total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
    .total-label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }
    .total-bedrag { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold2); font-weight: 700; white-space: nowrap; }
    .total-note { font-size: 0.74rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.5; margin-top: 8px; }
    .f-submit { grid-column: 1 / -1; text-align: center; margin-top: 10px; }
    .btn-submit {
      background: var(--gold); color: var(--dark);
      padding: 16px 56px; border: none; cursor: pointer;
      font-family: 'Jost', sans-serif; font-weight: 700;
      font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
      border-radius: 2px; transition: all 0.3s;
      box-shadow: 0 4px 22px rgba(201,168,76,0.28);
    }
    .btn-submit:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.38); }
    .f-note { font-size: 0.76rem; color: rgba(255,255,255,0.28); margin-top: 14px; font-weight: 300; }

    /* FOOTER */
    footer { background: #160E02; padding: 56px 60px 36px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(201,168,76,0.08); }
    .footer-brand { }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .footer-logo img { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--gold); object-fit: cover; }
    .footer-logo b { font-family:'Playfair Display',serif; color: var(--gold2); font-size: 0.92rem; letter-spacing: 0.07em; display: block; }
    .footer-logo small { color: rgba(255,255,255,0.38); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; }
    .footer-p { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.75; font-weight: 300; max-width: 270px; }
    .fh { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
    .flinks { display: flex; flex-direction: column; gap: 9px; }
    .flinks a { font-size: 0.83rem; color: rgba(255,255,255,0.42); font-weight: 300; transition: color 0.2s; }
    .flinks a:hover { color: var(--gold2); }
    .fcontact { display: flex; flex-direction: column; gap: 11px; }
    .fci { font-size: 0.81rem; color: rgba(255,255,255,0.38); font-weight: 300; }
    .footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .fcopy { font-size: 0.73rem; color: rgba(255,255,255,0.2); font-weight: 300; }
    .fcopy a { color: var(--gold); }
    .fby { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 400; }
    .fby a { color: var(--gold2); font-weight: 600; text-decoration: none; }
    .fby a:hover { text-decoration: underline; }

    /* WHATSAPP FLOAT */
    .wa-btn {
      position: fixed; bottom: 28px; right: 28px; z-index: 900;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: waPop 0.6s ease 2.5s both;
    }
    .wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
    @keyframes waPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
    .wa-btn svg { width: 30px; height: 30px; fill: white; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      section { padding: 80px 40px; }
      nav { padding: 18px 40px; } nav.scrolled { padding: 12px 40px; }
      .over-inner { grid-template-columns: 1fr; gap: 56px; }
      .over-imgs { height: 360px; }
      footer { padding: 48px 40px 28px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 38px; }
      .footer-brand { grid-column: 1 / -1; }
      #stats { gap: 38px; padding: 50px 40px; }
    }
    @media (max-width: 768px) {
      section { padding: 66px 22px; }
      nav { padding: 15px 22px; } nav.scrolled { padding: 10px 22px; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(34,22,5,0.97); backdrop-filter: blur(12px); padding: 18px 22px; }
      .nav-links.open a { display: block; padding: 11px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
      #stats { gap: 32px; padding: 44px 22px; }
      .stat-div { display: none; }
      .diensten-grid { grid-template-columns: 1fr; }
      .galerie-grid { grid-template-columns: repeat(2, 1fr); }
      .gitem.lg { grid-column: span 1; grid-row: span 1; }
      .fgrid { grid-template-columns: 1fr; padding: 26px 18px; }
      .fg.full { grid-column: 1; }
      .f-submit { grid-column: 1; }
      footer { padding: 38px 22px 22px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .pkt-grid { grid-template-columns: 1fr; }
      .pktt td, .pktt th { padding: 10px 12px; font-size: 0.82rem; }
      .wa-btn { bottom: 20px; right: 20px; }
    }

    /* LANGUAGE SWITCHER */
    .lang-sw { display: flex; gap: 6px; align-items: center; margin-left: 20px; }
    .lang-btn {
      background: transparent; border: 1px solid rgba(201,168,76,0.3);
      color: rgba(255,255,255,0.55); padding: 4px 10px;
      font-family: 'Jost', sans-serif; font-size: 0.68rem;
      font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; border-radius: 2px; transition: all 0.25s;
    }
    .lang-btn:hover { border-color: var(--gold); color: var(--gold2); }
    .lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

    /* ===== SFEER SECTIE ===== */
    #sfeer { background: linear-gradient(160deg, #221605 0%, #2E1E00 55%, #221605 100%); position: relative; overflow: hidden; }
    #sfeer .sfeer-hd { text-align: center; max-width: 640px; margin: 0 auto 46px; }
    #sfeer .slabel { justify-content: center; }
    #sfeer .stitle { color: var(--cream); }
    #sfeer .sdesc { color: rgba(255,255,255,0.7); margin: 0 auto; }
    .sfeer-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; max-width: 1100px; margin: 0 auto; }
    .sfeer-grid figure { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid rgba(201,168,76,0.25); }
    .sfeer-grid figure:first-child { grid-row: 1 / 3; }
    .sfeer-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .sfeer-grid figure:hover img { transform: scale(1.06); }
    .sfeer-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; background: linear-gradient(transparent, rgba(34,22,5,0.85)); color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.05rem; }
    @media (max-width: 700px) { .sfeer-grid { grid-template-columns: 1fr 1fr; } .sfeer-grid figure:first-child { grid-row: auto; grid-column: 1 / 3; height: 220px; } .sfeer-grid figure { height: 150px; } }

    /* ===== REVIEWS ===== */
    #reviews { background: var(--cream); text-align: center; }
    #reviews .slabel { justify-content: center; }
    .rev-summary { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 26px; padding: 10px 20px; background: var(--white); border: 1px solid rgba(201,168,76,0.3); border-radius: 40px; box-shadow: 0 8px 22px rgba(34,22,5,0.06); }
    .rev-sum-stars { color: var(--gold); letter-spacing: 2px; }
    .rev-sum-score { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--night); font-size: 1.1rem; }
    .rev-sum-txt { font-size: 0.8rem; color: var(--textl); }
    .rev-track { max-width: 760px; margin: 34px auto 0; position: relative; min-height: 230px; }
    .rev-card { opacity: 0; visibility: hidden; position: absolute; inset: 0; transition: opacity 0.5s; padding: 38px 34px; background: var(--white); border: 1px solid rgba(201,168,76,0.28); border-radius: 12px; box-shadow: 0 18px 40px rgba(34,22,5,0.08); display: flex; flex-direction: column; justify-content: center; }
    .rev-card.on { opacity: 1; visibility: visible; position: relative; }
    .rev-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 16px; }
    .rev-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.22rem; line-height: 1.6; color: var(--night); margin-bottom: 18px; }
    .rev-name { font-weight: 600; color: var(--blue); letter-spacing: 0.04em; }
    .rev-role { font-size: 0.8rem; color: var(--textl); }
    .rev-dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
    .rev-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(34,22,5,0.22); border: none; cursor: pointer; transition: all 0.25s; padding: 0; }
    .rev-dot.on { background: var(--gold); transform: scale(1.25); }

    /* ===== FAQ ===== */
    #faq { background: var(--cream2); }
    #faq .faq-hd { text-align: center; max-width: 640px; margin: 0 auto 44px; }
    #faq .slabel { justify-content: center; }
    .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--white); border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; overflow: hidden; }
    .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 600; color: var(--night); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-q .fplus { color: var(--gold); font-size: 1.4rem; transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .fplus { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a p { padding: 0 24px 22px; color: var(--textl); line-height: 1.75; font-size: 0.95rem; }
    .faq-item.open .faq-a { max-height: 320px; }

    /* ===== MEEST GEKOZEN BADGE ===== */
    .best-badge { display: inline-block; margin-left: 10px; background: var(--gold); color: var(--night); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; vertical-align: middle; }
    .prijs-row.best { border-color: rgba(201,168,76,0.6); box-shadow: 0 0 0 1px rgba(201,168,76,0.3); }

    /* ===== STICKY OFFERTE KNOP (mobiel) ===== */
    .sticky-cta { display: none; }
    @media (max-width: 760px) {
      .sticky-cta { display: flex; position: fixed; left: 14px; right: 78px; bottom: 16px; z-index: 900;
        align-items: center; justify-content: center; gap: 8px;
        background: var(--gold); color: var(--night); font-family: 'Jost', sans-serif; font-weight: 800;
        font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
        padding: 15px 18px; border-radius: 40px; box-shadow: 0 8px 26px rgba(34,22,5,0.35);
        text-decoration: none; }
    }

    /* ===== LICHT THEMA: TARIEVEN + AANMELDING (zelfde look als reviews) ===== */
    #tarieven, #aanmelding {
      background: var(--cream) !important;
    }
    #tarieven .tarieven-hd .stitle, #aanmelding .aanm-hd .stitle { color: var(--night) !important; }
    #tarieven .tarieven-hd .stitle em, #aanmelding .aanm-hd .stitle em { color: var(--gold) !important; }
    #tarieven .tarieven-hd .sdesc, #aanmelding .aanm-hd .sdesc { color: var(--textl) !important; }

    /* Tabs */
    #tarieven .tab-btn { background: var(--white); border-color: rgba(201,168,76,0.35); color: var(--textl); }
    #tarieven .tab-btn:hover { border-color: var(--gold); color: var(--text); }
    #tarieven .tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

    /* Prijsrijen / kaarten */
    #tarieven .prijs-row, #tarieven .pkt-card, #tarieven .extra-item {
      background: var(--white); border-color: rgba(201,168,76,0.28);
      box-shadow: 0 8px 22px rgba(34,22,5,0.06);
    }
    #tarieven .prijs-row:hover, #tarieven .pkt-card:hover, #tarieven .extra-item:hover {
      border-color: rgba(201,168,76,0.6); background: var(--white); box-shadow: 0 12px 30px rgba(34,22,5,0.10);
    }
    #tarieven .prijs-row-naam, #tarieven .pkt-name, #tarieven .extra-name { color: var(--night) !important; }
    #tarieven .prijs-row-sub, #tarieven .pkt-nr, #tarieven .pkt-from, #tarieven .extra-note,
    #tarieven .pkt-list li { color: var(--textl) !important; }
    #tarieven .prijs-row-prijs, #tarieven .pkt-price, #tarieven .extra-price,
    #tarieven .prijs-row-prijs small, #tarieven .pkt-price sup { color: #9A7419 !important; }
    #tarieven .prijs-cat-title { color: var(--gold) !important; border-bottom-color: rgba(201,168,76,0.3); }

    /* Pakket-tabel */
    #tarieven .pktt thead tr { background: rgba(201,168,76,0.14); }
    #tarieven .pktt th { color: #7A5E12 !important; border-bottom-color: rgba(201,168,76,0.3); }
    #tarieven .pktt td { color: var(--text) !important; border-bottom-color: rgba(34,22,5,0.08); }
    #tarieven .pktt tr:hover td { background: rgba(201,168,76,0.05); }
    #tarieven .pktt .price { color: #9A7419 !important; }
    #tarieven .pktt .note { color: var(--textl) !important; }
    #tarieven .btn-pkt { color: #9A7419; border-color: rgba(201,168,76,0.5); }
    #tarieven .btn-pkt:hover, #tarieven .pkt-card.fav .btn-pkt { background: var(--gold); border-color: var(--gold); color: var(--dark); }
    #tarieven .tarieven-note { color: var(--textl) !important; }
    #tarieven .tarieven-note strong { color: var(--text) !important; }

    /* Aanmeldformulier op licht */
    #aanmelding .fgrid { background: var(--white); border-color: rgba(201,168,76,0.28); box-shadow: 0 12px 34px rgba(34,22,5,0.07); }
    #aanmelding .fstep { color: #7A5E12 !important; border-bottom-color: rgba(201,168,76,0.3); }
    #aanmelding .fstep-nr { background: rgba(201,168,76,0.16); border-color: rgba(201,168,76,0.5); color: #7A5E12; }
    #aanmelding .fg label { color: var(--textl) !important; }
    #aanmelding .fg label span { color: var(--gold); }
    #aanmelding .fc {
      background: var(--cream2); border-color: rgba(201,168,76,0.35);
      color: var(--text);
    }
    #aanmelding .fc:focus { border-color: var(--gold); background: #fff; }
    #aanmelding .fc::placeholder { color: rgba(58,42,16,0.4); }
    #aanmelding select.fc option { background: var(--white); color: var(--text); }
    #aanmelding .dienst-cat { color: var(--gold) !important; border-bottom-color: rgba(201,168,76,0.3); }
    #aanmelding .dienst-groep { background: var(--cream2); border-color: rgba(201,168,76,0.3); }
    #aanmelding .dienst-kop { color: #7A5E12 !important; }
    #aanmelding .dienst-kop:hover { background: rgba(201,168,76,0.1); }
    #aanmelding .dienst-rij .nm { color: var(--text) !important; }
    #aanmelding .dienst-rij .pr { color: #9A7419 !important; }
    #aanmelding .dienst-rij:has(input:checked) .nm { color: var(--night) !important; }
    #aanmelding .chk-item { background: var(--cream2); border-color: rgba(201,168,76,0.25); }
    #aanmelding .chk-item label { color: var(--text) !important; }
    #aanmelding .chk-item:has(input:checked) label { color: var(--night) !important; }
    #aanmelding .chk-prijs { color: #9A7419 !important; }
    #aanmelding .total-box { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.45); }
    #aanmelding .total-label { color: var(--textl) !important; }
    #aanmelding .total-bedrag { color: #9A7419 !important; }
    #aanmelding .total-note { color: var(--textl) !important; }
    #aanmelding .f-note { color: var(--textl) !important; }
    #aanmelding .btn-submit { background: var(--gold); color: var(--dark); box-shadow: 0 6px 22px rgba(201,168,76,0.32); }
    #aanmelding .btn-submit:hover { background: var(--gold2); }

    /* ===== GALERIJ GOED ZICHTBAAR OP TELEFOON ===== */
    @media (max-width: 640px) {
      #galerie .galerie-grid, .galerie-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 14px !important;
      }
      .galerie-grid .gitem, .galerie-grid .gitem.lg {
        grid-column: auto !important; grid-row: auto !important;
        aspect-ratio: 4 / 5;
      }
      .galerie-grid .gitem img {
        object-position: center center !important;
      }
      .gitem-ov { opacity: 1 !important; background: linear-gradient(to top, rgba(34,22,5,0.5) 0%, rgba(34,22,5,0) 45%) !important; }
      .gitem-label { transform: translateY(0) !important; }
    }

    /* ===== MULTI-PAGE (losse pagina's) ===== */
    body.inner nav {
      background: rgba(34,22,5,0.95);
      backdrop-filter: blur(14px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.30);
    }
    #navlinks a.active-page { color: var(--gold2); }
    #navlinks a.active-page::after { right: 0; }
    .nav-cta.active-page { background: var(--gold) !important; color: var(--dark) !important; }
    /* Eenvoudige CTA-band onderaan losse pagina's */
    .cta-band { background: var(--cream2); text-align: center; padding: 72px 24px 88px; }
    body.inner .cta-band { border-top: 1px solid rgba(201,168,76,0.16); }
    .cta-band h2 {
      font-family: 'Playfair Display', serif; color: var(--night);
      font-size: 1.7rem; font-weight: 600; margin-bottom: 10px;
    }
    .cta-band p { color: var(--textl); max-width: 620px; margin: 0 auto 26px; font-size: 0.98rem; }
    @media (max-width: 768px){ .cta-band { padding: 54px 20px 64px; } .cta-band h2 { font-size: 1.4rem; } }

    /* ===== VERHUUR & DECORATIE fotogalerij ===== */
    .vd-gallery { max-width: 1200px; margin: 0 auto 8px; }
    .vd-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .vd-item {
      position: relative; overflow: hidden; border-radius: 8px;
      aspect-ratio: 4 / 5; background: var(--cream2);
      border: 1px solid rgba(201,168,76,0.22);
      box-shadow: 0 6px 20px rgba(34,22,5,0.10);
      cursor: pointer;
    }
    .vd-item img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
      display: block; transition: transform 0.6s ease;
    }
    .vd-item:hover img { transform: scale(1.05); }
    .vd-item::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(34,22,5,0.28) 0%, rgba(34,22,5,0) 40%);
      opacity: 0; transition: opacity 0.4s;
    }
    .vd-item:hover::after { opacity: 1; }
    @media (max-width: 900px){ .vd-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
    @media (max-width: 520px){ .vd-grid { grid-template-columns: 1fr; gap: 14px; } }

/* Verhuur lightbox */
.vd-lb { display: none; position: fixed; inset: 0; z-index: 4000; background: rgba(20,13,2,0.94); align-items: center; justify-content: center; }
.vd-lb.open { display: flex; }
.vd-lb img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 10px 50px rgba(0,0,0,0.6); }
.vd-lb-close { position: absolute; top: 22px; right: 30px; color: var(--gold2); font-size: 2.4rem; cursor: pointer; line-height: 1; }
.vd-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--gold2); font-size: 2.2rem; cursor: pointer; padding: 16px; user-select: none; }
.vd-lb-prev { left: 14px; }
.vd-lb-next { right: 14px; }
@media (max-width: 600px){ .vd-lb-nav { font-size: 1.6rem; padding: 10px; } .vd-lb-close { font-size: 2rem; top: 14px; right: 18px; } }

/* Home: waarom-wij */
.why { max-width: 1200px; margin: 0 auto; padding: 90px 24px 30px; }
.why-hd { text-align: center; margin-bottom: 46px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-item { background: var(--cream2); border: 1px solid rgba(201,168,76,0.22); border-radius: 12px; padding: 30px 24px; text-align: center; box-shadow: 0 6px 20px rgba(34,22,5,0.06); transition: transform .35s ease, box-shadow .35s ease; }
.why-item:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(34,22,5,0.12); }
.why-ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--dark); background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.why-t { font-family: 'Playfair Display', serif; color: var(--night); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.why-d { color: var(--textl); font-size: 0.92rem; line-height: 1.55; }

/* Home: proces */
.proces { max-width: 1100px; margin: 0 auto; padding: 60px 24px 90px; }
.proces-hd { text-align: center; margin-bottom: 46px; }
.proces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; text-align: center; padding: 30px 22px; }
.step-n { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); background: linear-gradient(135deg, var(--gold2), var(--gold)); box-shadow: 0 8px 22px rgba(201,168,76,0.35); }
.step-t { font-family: 'Playfair Display', serif; color: var(--night); font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.step-d { color: var(--textl); font-size: 0.94rem; line-height: 1.6; max-width: 300px; margin: 0 auto; }

@media (max-width: 900px){
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proces-grid { grid-template-columns: 1fr; gap: 14px; }
  .why { padding: 64px 20px 20px; }
  .proces { padding: 44px 20px 66px; }
}
@media (max-width: 520px){
  .why-grid { grid-template-columns: 1fr; }
}

/* Over ons: vierkante fotogalerij */
.oo-gallery { max-width: 1200px; margin: 46px auto 0; padding: 0 24px; }
.oo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.oo-item { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 10px; border: 1px solid rgba(201,168,76,0.22); box-shadow: 0 6px 18px rgba(34,22,5,0.10); }
.oo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.oo-item:hover img { transform: scale(1.06); }
@media (max-width: 900px){ .oo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 520px){ .oo-grid { grid-template-columns: repeat(2, 1fr); } }

/* Muziekknop */
.music-btn { position: fixed; left: 22px; bottom: 26px; z-index: 1200; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(135deg, var(--gold2), var(--gold)); color: var(--dark); box-shadow: 0 6px 20px rgba(0,0,0,0.28); display: flex; align-items: center; justify-content: center; transition: transform .3s ease; }
.music-btn:hover { transform: scale(1.08); }
.music-btn svg { width: 24px; height: 24px; }
.music-btn .ic-pause { display: none; }
.music-btn.playing .ic-play { display: none; }
.music-btn.playing .ic-pause { display: block; }
.music-btn.playing { animation: musicPulse 2s ease-in-out infinite; }
@keyframes musicPulse { 0%,100%{ box-shadow: 0 6px 20px rgba(201,168,76,0.35); } 50%{ box-shadow: 0 6px 30px rgba(201,168,76,0.7); } }
@media (max-width: 600px){ .music-btn { width: 46px; height: 46px; left: 16px; bottom: 84px; } }

.why-item .why-t { margin-top: 4px; }
.why-mail { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.5); word-break: break-word; }
.why-mail:hover { color: var(--night); }
@media (max-width: 1100px){ .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px){ .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .why-grid { grid-template-columns: 1fr; } }
html, body { overflow-x: hidden; max-width: 100%; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: rgba(201,168,76,0.25); }
img { max-width: 100%; }
@media (max-width: 760px){
  .nav-links.open a, .lang-btn, .nav-burger { min-height: 44px; }
  .btn, .nav-cta, .wa-float, .music-btn { touch-action: manipulation; }
}

/* Tekstlogo in de nav */
.brandtext { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.5px; padding-right: 20px; background: linear-gradient(135deg, var(--gold2), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gold); white-space: nowrap; }
@media (max-width: 600px){ .brandtext { font-size: 1.2rem; } }
