    /* ═══════════════════════════════════════════════════════════
   FORTUNA FEMME — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */
    :root {
      --wine: #2e0a18;
      --wine-mid: #3d1225;
      --wine-light: #521a32;
      --wine-soft: #6b2845;
      --wine-pale: #8a3d5c;

      --gold: #c9a96e;
      --gold-light: #d4b896;
      --gold-pale: #e8d5b4;
      --gold-glow: rgba(201, 169, 110, 0.10);

      --cream: #faf6f0;
      --cream-dark: #f0e8dc;
      --cream-mid: #f5efe5;

      --text-dark: #2e0a18;
      --text-body: #4a2535;
      --text-muted: #8a6575;
      --text-light: #b89aa8;
      --white: #ffffff;

      --font-display: 'Cormorant Garamond', 'Georgia', serif;
      --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text-body);
      line-height: 1.7;
      overflow-x: hidden;
      font-weight: 400;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px;
    }

    /* ── Typography ── */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
    }

    /* ── Utility ── */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .text-center {
      text-align: center;
    }

    .text-gold {
      color: var(--gold);
    }

    .text-cream {
      color: var(--cream);
    }

    /* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: var(--wine);
      border-top: 1px solid rgba(201, 169, 110, 0.2);
      box-shadow: 0 -4px 30px rgba(46, 10, 24, 0.3);
      transform: translateY(0);
      transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
    }

    .cookie-banner.hidden {
      transform: translateY(100%);
      opacity: 0;
      pointer-events: none;
    }

    .cookie-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .cookie-icon {
      font-size: 1.6rem;
      flex-shrink: 0;
    }

    .cookie-text {
      flex: 1;
    }

    .cookie-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.15rem;
    }

    .cookie-desc {
      font-size: 0.82rem;
      color: var(--gold-pale);
      opacity: 0.8;
      line-height: 1.5;
    }

    .cookie-actions {
      display: flex;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    .cookie-btn {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 0.6rem 1.4rem;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: all 0.25s var(--ease-smooth);
    }

    .cookie-btn-accept {
      background: var(--gold);
      color: var(--wine);
    }

    .cookie-btn-accept:hover {
      background: var(--gold-light);
    }

    .cookie-btn-decline {
      background: transparent;
      color: var(--gold-pale);
      border: 1px solid rgba(201, 169, 110, 0.25);
    }

    .cookie-btn-decline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    @media (max-width: 640px) {
      .cookie-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.5rem;
        gap: 0.8rem;
      }

      .cookie-icon {
        display: none;
      }

      .cookie-actions {
        width: 100%;
        justify-content: center;
      }

      .cookie-btn {
        flex: 1;
        max-width: 160px;
      }
    }

    /* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: background 0.4s, box-shadow 0.4s;
    }

    .nav.scrolled {
      background: rgba(46, 10, 24, 0.97);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 30px rgba(46, 10, 24, 0.2);
    }

    .nav-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 100px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
    }

    .nav-logo-img {
      height: 90px;
      width: auto;
      transition: height 0.3s;
    }

    .nav.scrolled .nav-logo-img {
      height: 62px;
    }

    .nav-links {
      display: flex;
      gap: 0.25rem;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.73rem;
      font-weight: 500;
      color: var(--gold-pale);
      padding: 0.5rem 0.85rem;
      border-radius: 6px;
      transition: all 0.25s;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .nav-links a:hover,
    .nav-links a.active {
      opacity: 1;
      background: rgba(201, 169, 110, 0.08);
      color: var(--gold);
    }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--wine) !important;
      opacity: 1 !important;
      font-weight: 600 !important;
      padding: 0.5rem 1.2rem !important;
    }

    .nav-cta:hover {
      background: var(--gold-light) !important;
    }

    /* Academy-link met transparant kader */
    .nav-academy {
      border: 1px solid rgba(201, 169, 110, 0.4);
      border-radius: 6px;
    }

    .nav-academy:hover,
    .nav-academy.active {
      border-color: var(--gold);
    }

    .nav-mobile {
      display: none;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--gold);
      font-size: 1.6rem;
      padding: 0.5rem;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--wine);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--cream);
      padding: 0.75rem 2rem;
      font-weight: 500;
      opacity: 0.8;
      transition: opacity 0.2s;
    }

    .mobile-menu a:hover {
      opacity: 1;
      color: var(--gold);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      background: none;
      border: none;
      color: var(--gold);
      font-size: 2rem;
      cursor: pointer;
    }

    /* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      background: var(--wine);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 100vh;
      padding: 8rem 0 4rem;
    }

    .hero-text {
      position: relative;
      z-index: 2;
    }

    .hero-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.5vw, 4.2rem);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.12;
      margin-bottom: 1.5rem;
      letter-spacing: -0.5px;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-sub {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.15rem;
      color: var(--gold-light);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
    }

    .hero-desc {
      font-size: 0.95rem;
      color: var(--gold-pale);
      opacity: 0;
      max-width: 440px;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
    }

    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.5s forwards;
    }

    .hero-image-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
    }

    .hero-image-wrap::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -16px;
      right: 16px;
      bottom: 16px;
      border: 1.5px solid rgba(201, 169, 110, 0.2);
      border-radius: 16px;
    }

    .hero-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 14px;
      background: var(--wine-light);
      position: relative;
      z-index: 1;
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.8rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: all 0.3s var(--ease-smooth);
      border: none;
      cursor: pointer;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--wine);
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid rgba(201, 169, 110, 0.3);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.06);
    }

    .btn-wine {
      background: var(--wine);
      color: var(--cream);
    }

    .btn-wine:hover {
      background: var(--wine-mid);
      transform: translateY(-2px);
    }

    .btn-outline-wine {
      background: transparent;
      color: var(--wine);
      border: 1.5px solid rgba(46, 10, 24, 0.2);
    }

    .btn-outline-wine:hover {
      border-color: var(--wine);
    }

    /* ═══════════════════════════════════════════════════════════
   SECTIONS — SHARED
   ═══════════════════════════════════════════════════════════ */
    .section {
      padding: 6rem 0;
    }

    .section-lg {
      padding: 7rem 0;
    }

    .section-label {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .section-label-wine {
      color: var(--wine-soft);
    }

    .section-label-gold {
      color: var(--gold);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-title em {
      font-style: italic;
      font-weight: 500;
      color: var(--gold);
    }

    .gold-line {
      width: 40px;
      height: 2px;
      background: var(--gold);
      margin: 1rem 0 1.5rem;
      opacity: 0.5;
    }

    .gold-line-center {
      margin-left: auto;
      margin-right: auto;
    }

    .section-intro {
      font-size: 1rem;
      line-height: 1.85;
      max-width: 600px;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════════════════════════
   FILOSOFIE
   ═══════════════════════════════════════════════════════════ */
    .filosofie {
      background: var(--cream);
    }

    .filosofie-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .filosofie-quote {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 400;
      font-style: italic;
      color: var(--wine);
      line-height: 1.5;
      margin: 2rem 0;
      padding-left: 1.5rem;
      border-left: 2px solid var(--gold);
    }

    .filosofie-values {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .value-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .value-icon {
      min-width: 42px;
      height: 42px;
      background: var(--gold-glow);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .value-item h4 {
      font-size: 1.05rem;
      color: var(--wine);
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .value-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .filosofie-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 14px;
      background: var(--cream-dark);
    }

    /* ═══════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════ */
    .team {
      background: var(--wine);
      position: relative;
      overflow: hidden;
    }

    .team::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
      border-radius: 50%;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .team-card {
      text-align: center;
      transition: transform 0.4s var(--ease-out);
    }

    .team-card:hover {
      transform: translateY(-6px);
    }

    .team-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 12px;
      background: var(--wine-light);
      margin-bottom: 1rem;
      border: 1px solid rgba(201, 169, 110, 0.08);
      transition: border-color 0.3s;
    }

    .team-card:hover .team-photo {
      border-color: rgba(201, 169, 110, 0.25);
    }

    .team-card h4 {
      font-size: 1.1rem;
      color: var(--cream);
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .team-card p {
      font-size: 0.8rem;
      color: var(--gold-pale);
      opacity: 0.6;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════════════════════════
   FINANCIËN / CURSUSSEN
   ═══════════════════════════════════════════════════════════ */
    .financien {
      background: var(--cream);
    }

    .cursus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .cursus-card {
      background: var(--white);
      border: 1px solid rgba(46, 10, 24, 0.06);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s var(--ease-out);
    }

    .cursus-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(46, 10, 24, 0.08);
      border-color: rgba(201, 169, 110, 0.2);
    }

    .cursus-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      background: var(--wine);
      position: relative;
    }

    .cursus-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--gold);
      color: var(--wine);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 0.3rem 0.8rem;
      border-radius: 4px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .cursus-body {
      padding: 1.75rem;
    }

    .cursus-body h3 {
      font-size: 1.3rem;
      color: var(--wine);
      font-weight: 700;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .cursus-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .cursus-meta {
      display: flex;
      gap: 1.5rem;
      font-size: 0.78rem;
      color: var(--text-light);
      margin-bottom: 1.5rem;
    }

    .cursus-meta span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .cursus-cta {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s;
    }

    .cursus-card:hover .cursus-cta {
      gap: 0.8rem;
      color: var(--wine);
    }

    /* Subtle funnel banner */
    .finance-note {
      margin-top: 3rem;
      background: var(--cream-mid);
      border-radius: 12px;
      padding: 2rem 2.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      border: 1px solid rgba(201, 169, 110, 0.12);
    }

    .finance-note-text h4 {
      font-size: 1.1rem;
      color: var(--wine);
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .finance-note-text p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════ */
    .events {
      background: var(--wine);
      position: relative;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.75rem;
      margin-top: 3rem;
    }

    @media (min-width: 769px) {
      .events-grid:has(.event-card:only-child) {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .event-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(201, 169, 110, 0.08);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.4s var(--ease-out);
    }

    .event-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(201, 169, 110, 0.18);
      transform: translateY(-3px);
    }

    .event-card-img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      background: var(--wine-light);
    }

    .event-body {
      padding: 1.5rem;
    }

    .event-date {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .event-body h3 {
      font-size: 1.2rem;
      color: var(--cream);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .event-body p {
      font-size: 0.85rem;
      color: var(--gold-pale);
      opacity: 0.65;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .event-details {
      display: flex;
      gap: 1.25rem;
      font-size: 0.78rem;
      color: var(--gold-pale);
      opacity: 0.5;
      margin-bottom: 1.25rem;
    }

    /* ═══════════════════════════════════════════════════════════
   COMMUNITY
   ═══════════════════════════════════════════════════════════ */
    .community {
      background: var(--cream);
    }

    .community-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .community-benefits {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .benefit {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .benefit-dot {
      min-width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      margin-top: 0.55rem;
      flex-shrink: 0;
    }

    .benefit h4 {
      font-size: 1rem;
      color: var(--wine);
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    .benefit p {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .community-form {
      background: var(--white);
      border-radius: 16px;
      padding: 2.5rem;
      border: 1px solid rgba(46, 10, 24, 0.06);
      box-shadow: 0 8px 32px rgba(46, 10, 24, 0.04);
    }

    .community-form h3 {
      font-size: 1.5rem;
      color: var(--wine);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .community-form>p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 1.75rem;
    }

    .form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-body);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-size: 0.88rem;
      padding: 0.7rem 1rem;
      border: 1.5px solid rgba(46, 10, 24, 0.1);
      border-radius: 8px;
      background: var(--cream);
      color: var(--text-body);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .form-submit {
      width: 100%;
      margin-top: 0.5rem;
    }

    /* ═══════════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════════ */
    .partners {
      background: var(--cream-mid);
    }

    .partners-intro {
      max-width: 640px;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .partner-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .partner-card {
      background: var(--white);
      border: 1px solid rgba(46, 10, 24, 0.05);
      border-radius: 14px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }

    .partner-card:hover {
      border-color: rgba(201, 169, 110, 0.25);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(46, 10, 24, 0.05);
    }

    .partner-icon {
      width: 52px;
      height: 52px;
      background: var(--gold-glow);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      font-size: 1.3rem;
    }

    .partner-card h4 {
      font-size: 1.1rem;
      color: var(--wine);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .partner-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .partner-cta {
      text-align: center;
      padding: 2.5rem;
      background: var(--wine);
      border-radius: 16px;
      position: relative;
      overflow: hidden;
    }

    .partner-cta::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .partner-cta h3 {
      font-size: 1.5rem;
      color: var(--cream);
      font-weight: 600;
      margin-bottom: 0.5rem;
      position: relative;
    }

    .partner-cta p {
      font-size: 0.9rem;
      color: var(--gold-pale);
      opacity: 0.6;
      margin-bottom: 1.5rem;
      position: relative;
    }

    /* ═══════════════════════════════════════════════════════════
   SPONSOR
   ═══════════════════════════════════════════════════════════ */
    .sponsor-section {
      padding: 2.5rem 0 3.5rem;
      background: var(--cream);
    }

    .sponsor-block {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      padding: 2rem 2.5rem;
      border: 1px solid rgba(46, 10, 24, 0.06);
      border-radius: 14px;
      background: var(--white);
    }

    .sponsor-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .sponsor-name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--wine);
      margin-bottom: 0.75rem;
    }

    .sponsor-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    .sponsor-details span {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    /* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
    .footer {
      background: var(--wine);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(201, 169, 110, 0.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .footer-tagline {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--gold-pale);
      opacity: 0.5;
      margin-bottom: 1.25rem;
    }

    .footer-desc {
      font-size: 0.85rem;
      color: var(--gold-pale);
      opacity: 0.4;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .footer-col a {
      display: block;
      font-size: 0.85rem;
      color: var(--gold-pale);
      opacity: 0.5;
      padding: 0.3rem 0;
      transition: opacity 0.2s;
    }

    .footer-col a:hover {
      opacity: 0.9;
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(201, 169, 110, 0.06);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: var(--gold-pale);
      opacity: 0.3;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(201, 169, 110, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--gold-pale);
      opacity: 0.5;
      transition: all 0.2s;
    }

    .footer-social a:hover {
      opacity: 1;
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.06);
    }

    /* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding-top: 7rem;
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .hero-image-wrap {
        max-width: 360px;
      }

      .filosofie-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .team-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .community-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .partner-benefits {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-mobile {
        display: block;
      }

      .section,
      .section-lg {
        padding: 4rem 0;
      }

      .container {
        padding: 0 1.25rem;
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .cursus-grid {
        grid-template-columns: 1fr;
      }

      .events-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .finance-note {
        flex-direction: column;
        text-align: center;
      }

      .partner-benefits {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════════════════════════════════
   EVENT MODAL
   ═══════════════════════════════════════════════════════════ */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(46, 10, 24, 0.6);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      animation: modalFadeIn 0.3s ease;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal {
      background: var(--white);
      border-radius: 18px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 24px 80px rgba(46, 10, 24, 0.25);
      animation: modalSlideUp 0.4s var(--ease-out);
    }

    .modal-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: var(--cream);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
      z-index: 1;
    }

    .modal-close:hover {
      background: var(--cream-dark);
      color: var(--wine);
    }

    .modal-header {
      padding: 2rem 2rem 1.25rem;
    }

    .modal-divider {
      height: 1px;
      background: rgba(46, 10, 24, 0.06);
      margin: 0 2rem;
    }

    .modal-body {
      padding: 1.5rem 2rem 2rem;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes modalSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Close modal on overlay click */
    .modal-overlay {
      cursor: pointer;
    }

    .modal {
      cursor: default;
    }

    @media (max-width: 768px) {
      .modal {
        max-width: 100%;
        margin: 1rem;
        border-radius: 14px;
      }

      .modal-header,
      .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

    /* ═══════════════════════════════════════════════════════════
   PLACEHOLDER IMAGES (vervang met echte foto's)
   ═══════════════════════════════════════════════════════════ */
    .placeholder {
      background: linear-gradient(135deg, var(--wine-light) 0%, var(--wine-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-pale);
      font-size: 0.78rem;
      font-weight: 500;
      opacity: 0.5;
      letter-spacing: 0.5px;
    }

    .placeholder-light {
      background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.78rem;
      font-weight: 500;
      opacity: 0.4;
      letter-spacing: 0.5px;
    }
  

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGES — Partners, Academy, Word lid
   (subhero onder de vaste nav + gedeelde helpers)
   ═══════════════════════════════════════════════════════════ */
.subhero {
  background: var(--wine);
  padding: 160px 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.subhero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.subhero .container {
  position: relative;
  z-index: 2;
}

.subhero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.subhero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.subhero p {
  font-size: 1rem;
  color: var(--gold-pale);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

.subhero .section-label {
  color: var(--gold);
}

@media (max-width: 768px) {
  .subhero {
    padding: 130px 0 3.5rem;
  }
}

/* ── Eventpagina (dynamisch) ── */
.event-photo {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--cream-dark);
  margin-bottom: 1.75rem;
}

.event-info .lead {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.event-info p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.event-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

