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

    /* Hide sections initially to prevent layout shift */
    main, #global-header, #global-footer {
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    /* Class to smoothly reveal the content once loaded */
    .components-ready main,
    .components-ready #global-header,
    .components-ready #global-footer {
      opacity: 1;
    }

    :root {
      --forest-deep:  #0A3318;
      --forest-mid:   #14522A;
      --forest-light: #1E6B38;
      --gold:         #C9A055;
      --gold-light:   #E8CFA0;
      --gold-pale:    #F5EDD6;
      --cream:        #FAF5EB;
      --blush:        #F0C4C4;
      --text-dark:    #0A1F10;
      --text-cream:   #F5EDD6;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--forest-deep);
      color: var(--text-cream);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── RUIS TEXTUUR OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 10;
    }

    /* Container die de twee tekstlagen netjes onder elkaar zet */
    .logo-text-container {
      display: flex;
      flex-direction: column;   /* Stapelt de tekst verticaal */
      align-items: flex-start;  /* Lijnt de tekst strak links uit */
      text-decoration: none;    /* Verwijdert de standaard onderstreping van de link */
    }

    /* De grote merknaam 'Medina' */
    .main-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1; 
      letter-spacing: 0.5px;
    }

    /* De kleinere ondertitel eronder */
    .logo-tagline {
      font-size: 10px; 
      color: var(--gold-pale);  
      opacity: 0.75; 
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-top: 5px;  
      font-weight: 400;
    }

    /* ── NAVIGATIE ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: linear-gradient(to bottom, rgba(10,51,24,0.95) 0%, transparent 100%);
      -webkit-backdrop-filter: blur(2px); /* For Safari */
      backdrop-filter: blur(2px);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.12em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--gold-light);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--gold); }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--gold);
      cursor: pointer;
      z-index: 110;
    }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 50% 10%, rgba(30,107,56,0.35) 0%, transparent 70%),
        var(--forest-deep);
      z-index: 105;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 74px 28px 44px;
      overflow-y: auto;
    }

    .nav-overlay.open { transform: translateY(0); }

    .overlay-close {
      position: absolute;
      top: 20px;
      right: 22px;
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(5,20,10,0.35);
      border: 1px solid rgba(201,160,85,0.24);
      color: var(--gold-light);
      font-family: 'Jost', sans-serif;
      font-size: 2rem;
      font-weight: 300;
      line-height: 1;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .overlay-close:hover,
    .overlay-close:focus-visible {
      color: var(--gold);
      border-color: rgba(201,160,85,0.55);
      background: rgba(5,20,10,0.6);
      outline: none;
    }

    .overlay-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: min(220px, 58vw);
      margin: 0 auto 52px;
      text-decoration: none;
    }

    .overlay-logo img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .overlay-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      width: 100%;
    }

    .overlay-link {
      color: var(--gold-light);
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: color 0.2s, opacity 0.2s;
    }

    .overlay-link:hover,
    .overlay-link:focus-visible {
      color: var(--gold);
      outline: none;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 50% 40%, rgba(30,107,56,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(10,51,24,0.8) 0%, transparent 60%);
      pointer-events: none;
    }

    .voorwaarden {
      position: relative;
      min-height: 10vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 60px;
      overflow: hidden;
      margin-bottom: -60px;
    }

    .voorwaarden::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 50% 40%, rgba(30,107,56,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(10,51,24,0.8) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-logo-container {
      position: relative;
      width: min(680px, 75vw);
      height: auto;
      margin-bottom: 80px;
      margin-top: 0px;
      z-index: 1;
      animation: floatLogo 6s ease-in-out infinite;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-logo-container img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 3.5vw, 1.7rem);
      font-style: italic;
      font-weight: 300;
      color: var(--gold-light);
      letter-spacing: 0.08em;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
      max-width: 700px;
    }

    .hero-sub {
      font-size: 0.8rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.85;
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
    }

    .btn-book {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 14px 40px;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      margin-top: 20px;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.35s, color 0.35s;
      position: relative;
      z-index: 1;
    }

    .btn-book:hover {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .petals {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .petal {
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50% 0;
      opacity: 0;
      animation: floatPetal linear infinite;
    }

    @keyframes floatPetal {
      0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
      10%  { opacity: 0.4; }
      90%  { opacity: 0.15; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }

    /* ── ALGEMENE VOORWAARDEN ── */
    .terms-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      line-height: 1.6;
    }

    .terms-section {
      margin-bottom: 40px;
    }

    .terms-section h2 {
      color: var(--gold)
    }

    .conditions-list {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .conditions-list li {
      margin-bottom: 6px;
    }

    /* ── LOTUS SCHEIDINGSLIJN ── */
    .lotus-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 48px;
      margin: 0 auto;
      max-width: 800px;
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.5;
    }

    .divider-lotus {
      color: var(--gold);
      font-size: 1.4rem;
      opacity: 0.7;
    }

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

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 96px 48px;
    }

    .section-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--gold-light);
      margin-bottom: 28px;
    }

    .section-body {
      font-size: 1rem;
      line-height: 1.85;
      color: rgba(245, 237, 214, 0.75);
      max-width: 600px;
    }

    /* ── BEHANDELINGEN ── */
    #services {
      background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-mid) 50%, var(--forest-deep) 100%);
    }

    .services-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .service-featured {
      max-width: 460px;
      margin: 0 auto 48px;
    }

    .service-featured .service-card {
      height: 100%;
      padding: 52px 42px;
    }

    .service-featured .service-name {
      font-size: 1.8rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .service-card {
      background: rgba(30,107,56,0.12);
      border: 1px solid rgba(201,160,85,0.18);
      padding: 40px 36px;
      transition: background 0.35s, border-color 0.35s, transform 0.35s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.35s;
    }

    .service-card:hover {
      background: rgba(30,107,56,0.25);
      border-color: rgba(201,160,85,0.4);
      transform: translateY(-4px);
    }

    .service-card:hover::before { opacity: 1; }

    .service-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      line-height: 1;
      color: var(--gold);
      opacity: 0.8;
    }

    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 0.88rem;
      color: rgba(245,237,214,0.65);
      margin-bottom: 24px;
      line-height: 1.75;
    }

    .service-duration-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(201,160,85,0.2);
      padding-top: 18px;
      gap: 16px;
    }

    .service-duration {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: rgba(245,237,214,0.5);
      text-transform: uppercase;
    }

    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--gold);
    }

    @media (max-width: 1020px) {
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* ── DETAILED OVERLAY / MODAL DIALOG ── */
    .service-modal {
      position: fixed;
      inset: 0;
      background: rgba(5, 20, 10, 0.85);
      -webkit-backdrop-filter: blur(8px); /* For Safari */
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 24px;
    }

    .service-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: linear-gradient(145deg, rgba(10,51,24,0.98), rgba(5,20,10,0.98));
      border: 1px solid rgba(201,160,85,0.32);
      max-width: 1020px;
      width: min(100%, 1020px);
      max-height: 85vh;
      overflow-y: auto;
      position: relative;
      display: grid;
      grid-template-columns: minmax(220px, 32%) 1fr;
      gap: 34px;
      padding: 42px;
      align-items: start;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-modal.open .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: rgba(5,20,10,0.35);
      border: 1px solid rgba(201,160,85,0.22);
      color: var(--gold-light);
      width: 38px;
      height: 38px;
      font-size: 1.8rem;
      cursor: pointer;
      z-index: 10;
      line-height: 1;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .modal-close:hover {
      color: var(--gold);
      border-color: rgba(201,160,85,0.55);
      background: rgba(5,20,10,0.6);
    }

    .modal-img-wrapper {
      width: 100%;
      max-width: 320px;
      height: auto;
      align-self: start;
      background: rgba(30,107,56,0.2);
      border: 1px solid rgba(201,160,85,0.16);
      overflow: hidden;
    }

    .modal-img-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
    }

    .modal-info {
      padding: 4px 24px 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-width: 0;
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--gold-light);
      margin: 0 42px 18px 0;
      line-height: 1.08;
      font-weight: 400;
    }

    .modal-full-desc {
      font-size: 0.96rem;
      color: rgba(245,237,214,0.76);
      line-height: 1.85;
      margin-bottom: 30px;
      max-width: 620px;
    }

    .modal-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(201,160,85,0.18);
      padding-top: 22px;
      margin-bottom: 28px;
      gap: 24px;
    }

    #modalBookBtn {
      width: 100%;
      max-width: 420px;
    }

    @media (max-width: 768px) {
      .service-modal {
        padding: 16px;
        align-items: flex-start;
        padding-top: 72px;
      }

      .modal-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 22px 30px;
        max-height: 86vh;
      }

      .modal-img-wrapper {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
      }

      .modal-img-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .modal-info {
        padding: 0;
      }

      .modal-title {
        margin-right: 42px;
      }

      .modal-meta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ── OVER ONS ── */
    #about {
      background: var(--forest-deep);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-image-wrapper {
      position: relative;
      width: 100%;
      height: 400px;
      background: rgba(30,107,56,0.2);
      border: 1px solid rgba(201,160,85,0.2);
      overflow: hidden;
    }

    .about-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      transition: transform 0.5s ease;
    }

    .about-image-wrapper:hover img {
      transform: scale(1.03);
    }

    .about-frame-overlay {
      position: absolute;
      top: 20px; left: 20px; right: -20px; bottom: -20px;
      border: 1px solid rgba(201,160,85,0.3);
      z-index: -1;
      pointer-events: none;
    }

    /* ── HOOGTEPUNTEN ── */
    #highlights {
      background: linear-gradient(180deg, var(--forest-deep) 0%, rgba(20,82,42,0.3) 50%, var(--forest-deep) 100%);
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      margin-top: 64px;
    }

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

    .highlight-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold);
      opacity: 0.4;
      line-height: 1;
      margin-bottom: 8px;
    }

    .highlight-label {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 12px;
    }

    .highlight-desc {
      font-size: 0.88rem;
      color: rgba(245,237,214,0.6);
      line-height: 1.7;
    }

    /* <!-- FAQ SECTIE --> */
    #faq {
      background: var(--forest-deep);
    }

    .faq-container {
      max-width: 750px;
      margin: 40px auto 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(201,160,85,0.2);
      padding: 18px 0;
    }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-icon {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
      color: var(--gold);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      font-size: 0.9rem;
      color: rgba(245,237,214,0.65);
      padding-top: 0;
    }

    .faq-item.active .faq-content {
      max-height: 300px;
      padding-top: 12px;
      transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* ── INFO: TIJDEN & LOCATIE ── */
    #info {
      background: var(--forest-deep);
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .info-block {
      background: rgba(30,107,56,0.1);
      border: 1px solid rgba(201,160,85,0.15);
      padding: 52px 48px;
    }

    .info-block-title {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
      margin-bottom: 28px;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(201,160,85,0.1);
      font-size: 0.9rem;
      color: rgba(245,237,214,0.75);
    }

    .hours-list li:last-child { border-bottom: none; }

    .hours-day { opacity: 0.7; }
    .hours-time { color: var(--gold-light); }

    .location-detail {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gold-light);
      margin-bottom: 6px;
    }

    .location-text {
      font-size: 0.9rem;
      color: rgba(245,237,214,0.65);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.2s;
    }

    .map-link:hover { opacity: 1; }

    /* ── BOEKINGS BANNER ── */
    #booking {
      background: linear-gradient(135deg, rgba(201,160,85,0.08) 0%, rgba(30,107,56,0.25) 100%);
      border-top: 1px solid rgba(201,160,85,0.2);
      border-bottom: 1px solid rgba(201,160,85,0.2);
    }

    .booking-inner {
      text-align: center;
      padding: 100px 48px;
    }

    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      color: var(--gold-light);
      margin-bottom: 16px;
    }

    .booking-sub {
      font-size: 0.9rem;
      color: rgba(245,237,214,0.6);
      margin-bottom: 44px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--forest-deep);
      padding: 16px 48px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      margin-top: 5px;
      margin-bottom: 5px;
      margin-right: 2px;
      margin-left: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }

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

    .btn-contact svg { width: 20px; height: 20px; }

    /* ── FOOTER ── */
    footer {
      background: rgba(5,20,10,0.95);
      padding: 48px;
      text-align: center;
      border-top: 1px solid rgba(201,160,85,0.1);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.12em;
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(245,237,214,0.4);
      margin-bottom: 28px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245,237,214,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(245,237,214,0.25);
    }

    /* ── WHATSAPP CHATVENSTER STYLING ── */
    .wa-chat-wrapper {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 999;
      font-family: 'Jost', sans-serif;
    }

    .float-wa-trigger {
      width: 60px;
      height: 60px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      color: var(--forest-deep);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      position: relative;
      transition: transform 0.2s, background-color 0.2s;
    }

    .float-wa-trigger:hover { transform: scale(1.05); background: var(--gold-light); }
    .float-wa-trigger svg { width: 28px; height: 28px; }

    .wa-rating {
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1px;
        padding: 2px 6px;
        border-radius: 999px;
        background: rgba(10, 51, 24, 0.92);
        border: 1px solid rgba(201,160,85,.28);
        box-shadow: 0 4px 12px rgba(0,0,0,.18);
        pointer-events: none;
    }

    .wa-rating span {
        color: var(--gold);
        font-size: 9px;
        line-height: 1;
    }

    .wa-chat-box {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 320px;
      background: var(--cream);
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.35);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transform: translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    }

    .wa-chat-box.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .wa-chat-header {
      background: var(--forest-deep);
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(201,160,85,0.2);
    }

    .wa-avatar {
      width: 40px;
      height: 40px;
      background: rgba(30,107,56,0.3);
      border: 1px solid var(--gold);
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .wa-avatar img {
      display: block;
      width: 82%;
      height: 82%;
      object-fit: contain;
    }

    .wa-header-info { flex: 1; }
    .wa-name { color: var(--gold-light); font-size: 0.9rem; font-weight: 500; line-height: 1.2; }
    .wa-status { color: rgba(245,237,214,0.6); font-size: 0.72rem; }

    .wa-close-btn {
      background: none;
      border: none;
      color: var(--gold-light);
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
    .wa-close-btn:hover { opacity: 1; }

    .wa-chat-body {
      background: #efeae2;
      padding: 20px 16px;
      max-height: 250px;
      overflow-y: auto;
    }

    .wa-msg {
      background: white;
      padding: 10px 12px;
      border-radius: 0 12px 12px 12px;
      max-width: 85%;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
      position: relative;
    }

    .wa-msg-text { color: #333; font-size: 0.85rem; line-height: 1.4; font-weight: 400; }
    .wa-msg-time {
      display: block;
      text-align: right;
      font-size: 0.65rem;
      color: #999;
      margin-top: 4px;
    }

    .wa-chat-footer {
      background: #f0f2f5;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .wa-chat-footer input {
      flex: 1;
      background: white;
      border: 1px solid #e1e1e1;
      padding: 10px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-family: inherit;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
    }

    .wa-chat-footer input:focus { border-color: var(--gold); }

    .wa-chat-footer button {
      background: var(--forest-deep);
      color: var(--gold-light);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }

    .wa-chat-footer button:hover { background: var(--forest-mid); color: var(--gold); }
    .wa-chat-footer button:active { transform: scale(0.95); }

    @media (max-width: 768px) {
      .wa-chat-wrapper { bottom: 20px; right: 20px; }
      .wa-chat-box { width: 290px; }
    }

    /* ── SCROLL ANIMATIE REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

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

    /* ── MOBIELE RESPONSIVENESS ── */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .nav-overlay { padding-top: 68px; }
      .overlay-logo { width: min(190px, 56vw); margin-bottom: 46px; }
      .overlay-nav { gap: 30px; }
      .overlay-link { font-size: 1.05rem; }
      .section-inner { padding: 72px 24px; }
      .service-featured {
        max-width: 100%;
        margin-bottom: 32px;
      }
      .service-featured .service-card {
        padding: 40px 36px;
      }
      .service-featured .service-name {
        font-size: 1.5rem;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .about-inner { grid-template-columns: 1fr; gap: 56px; }
      .highlights-grid { grid-template-columns: 1fr; gap: 32px; }
      .info-grid { grid-template-columns: 1fr; gap: 20px; }
      .info-block { padding: 40px 28px; }
      footer { padding: 40px 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-logo-container, .petal { animation: none; }
      .reveal { transition: none; }
    }
/* ── OVER MONA / ABOUT PAGINA ── */
/* Gebruik deze secties op over_mij.html/about.html. Voeg bij voorkeur class="about-page" toe aan <body>. */
body.about-page main {
  opacity: 1;
}

.hero-about {
  min-height: 72vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 55% at 75% 35%, rgba(30,107,56,0.32) 0%, transparent 70%),
    linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-mid) 54%, var(--forest-deep) 100%);
  position: relative;
  overflow: hidden;
}

.hero-about::after {
  content: '✿';
  position: absolute;
  right: 8vw;
  bottom: 4vh;
  color: rgba(201,160,85,0.08);
  font-size: clamp(9rem, 22vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-about .section-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
}

.hero-copy .intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: var(--gold-pale);
  line-height: 1.45;
  margin-bottom: 24px;
}

.hero-image-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(201,160,85,0.25);
  background: rgba(30,107,56,0.18);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,160,85,0.28);
  pointer-events: none;
}

.story-section {
  background: var(--forest-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.quote-card {
  border: 1px solid rgba(201,160,85,0.22);
  background: rgba(30,107,56,0.12);
  padding: 42px 38px;
  position: sticky;
  top: 40px;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 18px;
}

.quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--gold-light);
}

.story-content p {
  font-size: 1rem;
  color: rgba(245,237,214,0.72);
  margin-bottom: 24px;
}

.story-content strong {
  color: var(--gold-light);
  font-weight: 400;
}

.credentials-section {
  background: linear-gradient(180deg, var(--forest-deep) 0%, rgba(20,82,42,0.5) 50%, var(--forest-deep) 100%);
}

.credentials-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.credentials-header .section-body {
  margin: 0 auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.credential-card {
  padding: 36px 32px;
  border: 1px solid rgba(201,160,85,0.18);
  background: rgba(30,107,56,0.13);
  min-height: 220px;
}

.credential-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 22px;
}

.credential-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

.credential-card p {
  color: rgba(245,237,214,0.65);
  font-size: 0.92rem;
  line-height: 1.75;
}

.gallery-section {
  background: var(--forest-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 46px;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201,160,85,0.18);
  background: rgba(30,107,56,0.18);
  overflow: hidden;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.95;
}

.cta-section {
  border-top: 1px solid rgba(201,160,85,0.2);
  border-bottom: 1px solid rgba(201,160,85,0.2);
  background: linear-gradient(135deg, rgba(201,160,85,0.08) 0%, rgba(30,107,56,0.25) 100%);
}

.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 380px;
  }

  .quote-card {
    position: relative;
    top: 0;
  }

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

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

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

.hero-image-card .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.hero-image-card .hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease, transform 8s linear;
}

.hero-image-card .hero-slider img.active {
  opacity: 0.86;
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .hero-image-card .hero-slider {
    min-height: 380px;
  }
}

.contact-form {
  max-width: 720px;
  margin: 54px auto 0;
  padding: 42px;
  border: 1px solid rgba(201,160,85,0.22);
  background: rgba(30,107,56,0.12);
  text-align: left;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 15px 16px;
  border: 1px solid rgba(201,160,85,0.24);
  background: rgba(5,20,10,0.35);
  color: var(--gold-pale);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245,237,214,0.45);
}

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

.contact-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.booking-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: fit-content;
  margin: 0 auto 32px;
  padding: 10px 18px;

  background: rgba(10,51,24,.35);
  border: 1px solid rgba(201,160,85,.18);
  border-radius: 999px;

  font-size: .82rem;
  color: rgba(245,237,214,.75);
}

.booking-review-stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: .95rem;
}

.booking-review strong {
    color: var(--gold-light);
    font-weight: 500;
}

.booking-review a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity .2s;
}

.booking-review a:hover {
    opacity: .8;
}

@media (max-width: 520px) {
  .booking-review {
    flex-direction: column;
    gap: 4px;
    border-radius: 18px;
    text-align: center;
  }
}