*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #6e975f;
    --green-dark: #557a49;
    --black: #1a1a1a;
    --cream: #F3E5DC;
    --cream-faint: rgba(243,229,220,0.08);
    --glass: rgba(243,229,220,0.10);
    --glass-border: rgba(243,229,220,0.25);
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--green);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  .cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--black); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    mix-blend-mode: normal;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--black); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.6;
  }

  /* Hide custom cursor on mobile/touch screens and restore standard browser cursors */
  @media (max-width: 1024px) {
    .cursor, .cursor-ring {
      display: none !important;
    }
    body, .card, .yogareis-card {
      cursor: auto !important;
    }
    a, .btn-toggle, .btn-primary, .btn-whatsapp, button {
      cursor: pointer !important;
    }
  }

  /* ── PARALLAX CANVAS ── */
  #parallax-canvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0.55;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.4rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    transition: background 0.5s, backdrop-filter 0.5s;
  }
  nav.scrolled {
    background: rgba(85,122,73,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-logo {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 0.12em;
    text-decoration: none;
    line-height: 1;
  }
  .nav-logo span {
    color: var(--cream); font-size: 0.72rem; font-family: 'Montserrat', sans-serif;
    font-weight: 300; letter-spacing: 0.32em; display: block;
    margin-top: 2px; opacity: 0.7;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--cream); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 400; opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--cream);
    transition: width 0.35s;
  }
  .nav-links a:hover { opacity: 1; color: var(--cream); }
  .nav-links a:hover::after { width: 100%; }

  /* ── NAV TOGGLE ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 16px;
    cursor: pointer; z-index: 200;
  }
  .nav-toggle span {
    width: 100%; height: 2px;
    background: var(--black);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--cream);
  }
  .nav-toggle.active span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--cream);
  }

  /* ── MOBILE MENU OVERLAY ── */
  .mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--green-dark);
    z-index: 150; display: flex; align-items: center; justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  }
  .mobile-menu.active { transform: translateY(0); }
  .mobile-links { list-style: none; text-align: center; }
  .mobile-links li { margin: 2rem 0; opacity: 0; transform: translateY(20px); transition: all 0.4s; }
  .mobile-menu.active .mobile-links li { opacity: 1; transform: translateY(0); }
  .mobile-menu.active .mobile-links li:nth-child(1) { transition-delay: 0.3s; }
  .mobile-menu.active .mobile-links li:nth-child(2) { transition-delay: 0.4s; }
  .mobile-menu.active .mobile-links li:nth-child(3) { transition-delay: 0.5s; }
  .mobile-menu.active .mobile-links li:nth-child(4) { transition-delay: 0.6s; }
  .mobile-links a {
    color: var(--cream); font-family: 'Prata', serif; font-size: 2.2rem;
    text-decoration: none; letter-spacing: 0.05em;
  }
  body.no-scroll { overflow: hidden; }

  /* ── SECTIONS BASE ── */
  section { position: relative; z-index: 1; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
  }
  .hero-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 1.1rem; position: relative; z-index: 2;
    padding-top: 7rem;
  }
  .hero-eyebrow {
    font-size: 0.74rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--black); opacity: 0.85; font-weight: 400; margin-bottom: 2.2rem;
  }
  h1.hero-title {
    font-family: 'Prata', serif;
    font-size: clamp(3.4rem, 8.5vw, 7.8rem);
    color: var(--cream);
    line-height: 1.04;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 50px rgba(243,229,220,0.15);
  }
  h1.hero-title em { font-style: italic; color: var(--black); }
  .hero-sub {
    font-size: 1.05rem; color: var(--cream); opacity: 0.72;
    max-width: 460px; line-height: 1.75; letter-spacing: 0.04em; font-weight: 300;
  }

  /* BUTTON */
  .btn-primary {
    margin-top: 0.6rem;
    display: inline-block;
    padding: 1.1rem 3.2rem;
    border: 1.5px solid var(--black);
    color: var(--black);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
    text-decoration: none; cursor: none;
    position: relative; overflow: hidden;
    transition: color 0.4s;
    border-radius: 40px;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--cream); transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  }
  .btn-primary:hover { color: var(--black); }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary span { position: relative; z-index: 1; }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0.42; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
    z-index: 2;
  }

  /* ── ARCH DIVIDERS ── */
  .arch-divider {
    position: relative; z-index: 2;
    height: 110px; overflow: hidden; margin-top: -2px;
  }
  .arch-divider svg { width: 100%; height: 100%; }

  /* ── ABOUT ── */
  #about { padding: 7rem 2rem 8rem; background: var(--green-dark); }
  .about-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 45% 1fr; gap: 4rem; align-items: center;
  }
  .about-deco { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
  .about-photo-real {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .about-line { width: 1px; height: 70px; background: linear-gradient(to bottom, var(--cream), transparent); }
  h2.section-title {
    font-family: 'Prata', serif;
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    color: var(--cream); line-height: 1.12; margin-bottom: 1.8rem;
  }
  h2.section-title em {
    color: var(--black); font-style: normal;
  }
  .about-text p {
    opacity: 0.8; line-height: 1.88; margin-bottom: 1.1rem; font-size: 1.02rem;
  }

  /* ── OFFERINGS ── */
  #offerings { padding: 7rem 2rem; background: var(--green); }
  .section-head { text-align: center; margin-bottom: 4rem; }
  .eyebrow {
    font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--cream); opacity: 0.7; display: block; margin-bottom: 0.8rem;
  }
  .cards-grid {
    max-width: 1160px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  @media (min-width: 768px) {
    .cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .card {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s, border-color 0.35s;
    cursor: none; transform-style: preserve-3d;
  }
  .card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    transform: scaleX(0); transition: transform 0.5s;
  }
  .card:hover { transform: translateY(-10px) perspective(800px); box-shadow: 0 32px 64px rgba(0,0,0,0.15); border-color: rgba(26,26,26,0.3); }
  .card:hover::before { transform: scaleX(1); }
  .card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.6rem;
    border: 1px solid var(--glass-border);
  }
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .card:hover .card-image img {
    transform: scale(1.08);
  }
  .card-num {
    position: absolute; top: 1rem; right: 1.2rem;
    font-family: 'Prata', serif; font-size: 4.2rem; color: var(--black);
    opacity: 0.6; line-height: 1; user-select: none;
    z-index: 5;
    pointer-events: none;
  }
  h3.card-title {
    font-family: 'Prata', serif; font-size: 1.42rem; color: var(--black);
    margin-bottom: 0.8rem; letter-spacing: 0.02em;
  }
  .card-desc { font-size: 0.93rem; opacity: 0.76; line-height: 1.78; }
  .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
  .card-tag {
    display: inline-block;
    font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--black); border: 1px solid rgba(26,26,26,0.25); padding: 0.3rem 0.85rem;
  }

  /* ── GALLERY ── */
  #gallery {
    padding: 6rem 0 0;
    background: var(--green-dark);
    overflow: hidden;
    position: relative;
  }
  #gallery .swiper {
    width: 100%;
    height: 65vh;
  }

  .swiper-pagination-bullet {
    background: var(--cream) !important;
    opacity: 0.5;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--cream) !important;
  }

  /* ── SCHOLEN & BSO ── */
  #scholen-bso { padding: 7rem 2rem 8rem; background: var(--green-dark); }
  #yogareis { padding: 7rem 2rem 8rem; background: var(--green); }
  .scholen-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 45%; gap: 4rem; align-items: center;
  }
  .scholen-photo {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .scholen-slider-container {
    max-width: 1080px;
    margin: 3.5rem auto 0;
    position: relative;
    padding: 0 3rem;
  }
  .scholen-swiper {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }
  .scholen-swiper .swiper-slide {
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    background: var(--green-dark);
  }
  .scholen-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .scholen-swiper .swiper-slide:hover img {
    transform: scale(1.06);
  }
  .swiper-button-next.scholen-next,
  .swiper-button-prev.scholen-prev {
    color: var(--cream);
    background: rgba(26, 26, 26, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.35s, transform 0.35s;
    top: 50%;
    transform: translateY(-50%);
  }
  .swiper-button-prev.scholen-prev {
    left: 0.5rem;
  }
  .swiper-button-next.scholen-next {
    right: 0.5rem;
  }
  .swiper-button-next.scholen-next:hover,
  .swiper-button-prev.scholen-prev:hover {
    background: rgba(26, 26, 26, 0.7);
    transform: scale(1.05) translateY(-50%);
  }
  .swiper-button-next.scholen-next::after,
  .swiper-button-prev.scholen-prev::after {
    font-size: 0.95rem;
    font-weight: bold;
  }
  .scholen-text p {
    opacity: 0.8; line-height: 1.88; margin-bottom: 1.1rem; font-size: 1.02rem;
  }
  .btn-primary.btn-cream {
    border-color: var(--cream);
    color: var(--cream);
  }
  .btn-primary.btn-cream:hover {
    color: var(--black);
  }

  /* ── YOGAREIS SUB-SECTION ── */
  .yogareis-container {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
  }
  .yogareis-intro {
    max-width: 700px;
    margin: 1.5rem auto 0 !important;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
  }
  .yogareis-toggle-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .btn-toggle {
    background: transparent;
    border: 1.5px solid var(--cream);
    color: var(--cream);
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 40px;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.65;
  }
  .btn-toggle:hover {
    opacity: 1;
    border-color: var(--black);
    color: var(--black);
  }
  .btn-toggle.active {
    opacity: 1;
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  .yogareis-panel {
    display: none;
  }
  .yogareis-panel.active {
    display: block;
  }
  .yogareis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 3rem;
  }
  @media (min-width: 768px) {
    .yogareis-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .yogareis-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .yogareis-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.35s;
    cursor: none;
    transform-style: preserve-3d;
    border-radius: 0px; /* matched to standard offerings card border-radius */
  }
  .yogareis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
  }
  .yogareis-card:hover {
    transform: translateY(-8px) perspective(800px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 26, 26, 0.3);
  }
  .yogareis-card:hover::before {
    transform: scaleX(1);
  }
  .yr-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Prata', serif;
    font-size: 3rem;
    color: var(--black);
    opacity: 0.4;
    line-height: 1;
    user-select: none;
    pointer-events: none;
  }
  .yr-week {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
  }
  .yr-title {
    font-family: 'Prata', serif;
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
    line-height: 1.25;
  }
  .yr-desc {
    font-size: 0.92rem;
    opacity: 0.78;
    line-height: 1.75;
    color: var(--cream);
  }

  /* ── CONTACT ── */
  #contact { padding: 8rem 2rem 7rem; background: var(--green); text-align: center; }
  .contact-inner { max-width: 620px; margin: 0 auto; }
  .contact-inner p {
    font-size: 1.04rem; opacity: 0.74; line-height: 1.85;
    margin: 1.6rem auto 2.8rem;
  }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 0.9rem;
    padding: 1.1rem 3.2rem;
    background: transparent; border: 1.5px solid var(--cream);
    color: var(--cream); text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
    cursor: none; transition: background 0.38s, color 0.38s;
    border-radius: 40px;
  }
  .btn-whatsapp:hover { background: var(--cream); color: var(--black); }
  .contact-deco {
    margin-top: 4rem;
    display: flex; align-items: center; justify-content: center; gap: 1.8rem; opacity: 0.3;
  }
  .contact-deco span { width: 70px; height: 1px; background: var(--black); }

  /* ── FOOTER ── */
  footer {
    padding: 3rem 4rem;
    background: var(--green-dark);
    border-top: 1px solid rgba(243,229,220,0.12);
    display: flex; justify-content: space-between; align-items: flex-end;
    font-size: 0.8rem; opacity: 0.7; letter-spacing: 0.05em; line-height: 1.8;
  }
  footer a { color: var(--cream); text-decoration: none; transition: opacity 0.3s; }
  footer a:hover { opacity: 1; }

  /* ── REVEALS ── */
  .reveal { opacity: 0; transform: translateY(44px); }
  .reveal-left { opacity: 0; transform: translateX(-52px); }
  .reveal-right { opacity: 0; transform: translateX(52px); }

  /* ── RESPONSIVE ── */
  @media (max-width: 820px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .about-inner { grid-template-columns: 1fr; gap: 2.8rem; }
    .about-deco { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .about-line { display: none; }
    .scholen-inner { grid-template-columns: 1fr; gap: 2.8rem; }
    .scholen-inner .scholen-photo { order: -1; }
    .scholen-slider-container { padding: 0 1.5rem; margin-top: 3rem; }
    .swiper-button-next.scholen-next,
    .swiper-button-prev.scholen-prev {
      display: none; /* Hide navigation buttons on mobile, swipe is enough */
    }
    footer { flex-direction: column; gap: 0.7rem; text-align: center; padding: 2rem 1.5rem; }
    h1.hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
    .section-title { font-size: 2.4rem; }
  }

  /* ── LIGHTBOX MODAL ── */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9990; /* Vlak onder de custom cursor z-index (9999) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
  }
  .lightbox.active {
    display: flex;
    opacity: 1;
  }
  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  .lightbox.active .lightbox-content {
    transform: scale(1);
  }
  .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--cream);
    font-size: 3rem;
    font-weight: 300;
    cursor: none;
    transition: color 0.3s;
    user-select: none;
  }
  .lightbox-close:hover {
    color: #fff;
  }
