:root {
    --bg-main: #f7f5f2;
    --bg-soft: #f2efeb;
    --text-dark: #2e2e2e;
    --text-muted: #8a8783;
    --accent: #8fa39a;
    --line: #e6e2dd;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-main);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s cubic-bezier(.77,0,.18,1), visibility 0.9s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.bg-c {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
}

.bg-c1 { width: 480px; height: 480px; bottom: -200px; right: -160px; opacity: .04; animation: flt 12s ease-in-out infinite; }
.bg-c2 { width: 240px; height: 240px; top: -90px; left: -70px; opacity: .05; animation: flt 9s ease-in-out infinite reverse; animation-delay: -3s; }
.bg-c3 { width: 100px; height: 100px; top: 30%; right: 10%; opacity: .04; animation: flt 7s ease-in-out infinite; animation-delay: -5s; }

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

.ripple-wrap {
    position: relative;
    width: clamp(90px, 25vw, 160px);
    height: clamp(90px, 25vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(20px, 5vw, 44px);
}

.rpl {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(143,163,154,0.45);
    width: 64px;
    height: 64px;
    opacity: 0;
    animation: rplOut 3.6s cubic-bezier(.4,0,.2,1) infinite;
}

.rpl:nth-child(1) { animation-delay: 0s; }
.rpl:nth-child(2) { animation-delay: .9s; }
.rpl:nth-child(3) { animation-delay: 1.8s; }
.rpl:nth-child(4) { animation-delay: 2.7s; }

@keyframes rplOut {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(2.8); opacity: 0; }
}

.orb {
    position: relative;
    z-index: 2;
    width: clamp(40px, 12vw, 60px);
    height: clamp(40px, 12vw, 60px);
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbB 4.8s cubic-bezier(.4,0,.2,1) infinite;
}

.orb img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.orb-fallback {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    display: none;
}

@keyframes orbB {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(143,163,154,.4); }
    40%       { transform: scale(1.18); box-shadow: 0 0 0 18px rgba(143,163,154,0); }
    50%       { transform: scale(1.18); }
    90%       { transform: scale(1);    box-shadow: 0 0 0 0 rgba(143,163,154,0); }
}

.pl-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 18px;
    animation: plFade 1s cubic-bezier(.77,0,.18,1) .3s both;
}

.breath-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: plFade 1s cubic-bezier(.77,0,.18,1) .4s both;
}

.breath-lbl {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    min-height: 16px;
    transition: opacity .5s;
}

.bar-track {
    width: 140px;
    height: 1.5px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
}

.pl-divider {
    width: 36px;
    height: 1px;
    background: var(--accent);
    margin: 24px 0 18px;
    opacity: .5;
    animation: plFade 1s cubic-bezier(.77,0,.18,1) .5s both;
}

.pl-name img {
    width: clamp(140px, 60vw, 260px);
    height: auto;
}

.pl-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 3.5vw, 15px);
    padding: 0 20px;    
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    max-width: 300px;
    text-align: center;
    line-height: 1.7;
    animation: plFade 1s cubic-bezier(.77,0,.18,1) .6s both;
}

.pl-dots {
    display: flex;
    gap: 6px;
    margin-top: 32px;
    animation: plFade 1s cubic-bezier(.77,0,.18,1) .7s both;
}

.pl-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .3;
    animation: dotP 1.4s ease-in-out infinite;
}

.pl-dots .dot:nth-child(1) { animation-delay: 0s; }
.pl-dots .dot:nth-child(2) { animation-delay: .2s; }
.pl-dots .dot:nth-child(3) { animation-delay: .4s; }

@keyframes dotP {
    0%, 80%, 100% { opacity: .3; transform: scale(1); }
    40%            { opacity: 1;  transform: scale(1.5); }
}

.pl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    opacity: .6;
    transition: width .15s linear;
}

@keyframes plFade {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== SCROLL PROGRESS BAR ========== */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 300;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========== HEADER ========== */
.header {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    background: rgba(242,239,235,0.96);
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-circle {
    width: auto;
    height: auto;
    max-height: 60px;
    overflow: visible;   /* dit is de sleutel — weg met de crop */
    border-radius: 0;
}

.logo-circle img {
    width: 200px;        /* stel gewenste hoogte in */
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-left { display: flex; align-items: center; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    margin: 0 18px;
    position: relative;
    letter-spacing: 0.5px;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: 0.4s cubic-bezier(.77,0,.18,1);
}

nav a:hover::after { width: 100%; }

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown { position: relative; display: inline-block; }

.lang-btn-header {
    background: none;
    border: 1px solid var(--line);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.lang-btn-header:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-1px);
}

.lang-menu {
    display: none;
    position: absolute;
    top: 115%; right: 0;
    background: white;
    border: 1px solid var(--line);
    min-width: 110px;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.lang-menu button {
    width: 100%;
    border: none;
    background: none;
    padding: 12px 16px;
    text-align: left;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.25s, color 0.25s, padding-left 0.3s;
    position: relative;
    border-left: 3px solid transparent;
}

.lang-menu button:hover {
    padding-left: 22px;
    color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(143,163,154,0.05);
}

.lang-menu button.active {
    color: var(--accent);
    font-weight: 500;
    border-left-color: var(--accent);
}

.lang-flag { font-size: 15px; margin-left: auto; }

/* ── MENU TOGGLE ── */
.menu-toggle { display: none; cursor: pointer; margin-left: auto; }

.menu-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.4s;
    letter-spacing: 0.5px;
}

.menu-circle:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* ========== FULLSCREEN MENU ========== */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(24px, 6vw, 60px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), visibility 0.7s;
    z-index: 999;
    overflow: hidden;
}

/* Decorative bg circles */
.fullscreen-menu::before,
.fullscreen-menu::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.fullscreen-menu::before {
    width: 500px; height: 500px;
    background: var(--accent);
    opacity: 0.04;
    bottom: -200px; right: -150px;
    animation: floatBubble 9s ease-in-out infinite;
}

.fullscreen-menu::after {
    width: 280px; height: 280px;
    background: var(--accent);
    opacity: 0.06;
    top: -80px; left: -80px;
    animation: floatBubble 12s ease-in-out infinite reverse;
}

.fullscreen-menu.active { opacity: 1; visibility: visible; }

.menu-top { display: flex; justify-content: space-between; align-items: center; }

.menu-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; letter-spacing: 2px; }

.menu-close {
    cursor: pointer;
    font-size: 18px;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: 0.35s;
}

.menu-close:hover { background: var(--accent); color: white; border-color: var(--accent); transform: rotate(90deg); }

/* ── MENU LINKS — spacious ── */
.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.menu-logo img {
    width: clamp(120px, 40vw, 220px);
    height: auto;
}

.menu-links a {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 8vw, 72px);
    font-weight: 300;
    text-decoration: none;
    color: var(--text-dark);
    line-height: 1.3;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(.77,0,.18,1), opacity 0.9s ease, color 0.3s;
    position: relative;
    letter-spacing: -1px;
}

.menu-links a::after {
    content: "";
    position: absolute;
    bottom: 6px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(.77,0,.18,1);
}

.menu-links a:hover { color: var(--accent); }
.menu-links a:hover::after { width: 100%; }

.fullscreen-menu.active .menu-links a { transform: translateY(0); opacity: 1; }
.fullscreen-menu.active .menu-links a:nth-child(1) { transition-delay: 0.08s; }
.fullscreen-menu.active .menu-links a:nth-child(2) { transition-delay: 0.16s; }
.fullscreen-menu.active .menu-links a:nth-child(3) { transition-delay: 0.24s; }

/* ── MENU BOTTOM — animated pill language buttons ── */
.menu-bottom { display: flex; justify-content: center; gap: 16px; }

.lang-btn {
    background: none;
    border: 1px solid var(--line);
    padding: 10px 28px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s, border-color 0.4s;
}

.lang-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 0;
}
input:not([type="radio"]):not([type="checkbox"]),
textarea,
select{
    width:100%;
    padding:14px 0;
    border:none;
    border-bottom:1px solid var(--line);
    background:transparent;
    font-family:'Inter',sans-serif;
    font-size:14px;
    color:var(--text-dark);
    transition:all .35s cubic-bezier(.77,0,.18,1);
}
input[type="radio"]{
    width:auto;
    padding:0;
    border:none;
}
.lang-btn span { position: relative; z-index: 1; }

.lang-btn:hover, .lang-btn.active { color: white; border-color: var(--accent); }
.lang-btn:hover::before, .lang-btn.active::before { transform: scaleX(1); }

/* ========== HERO ========== */
.hero {
    text-align: center;
    padding: 120px 20px 0px; /* ⬅️ onderkant van 60 → 0 */
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

/* Multiple floating image circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-circle-1 {
    width: 520px; height: 520px;
    top: 50px; right: 40px;
    opacity: 0.11;
    animation: floatBubble 14s ease-in-out infinite;
    box-shadow: 0 0 60px 15px rgba(143,163,154,0.2);
}

.hero-circle-2 {
    width: 240px; height: 240px;
    bottom: -40px; left: 30px;
    opacity: 0.09;
    animation: floatBubble 10s ease-in-out infinite;
    animation-delay: -3s;
    box-shadow: 0 0 40px 10px rgba(143,163,154,0.18);
}

.hero-circle-3 {
    width: 170px; height: 170px;
    top: 30px; left: 200px;
    opacity: 0.09;
    animation: floatBubble 17s ease-in-out infinite;
    animation-delay: -7s;
    box-shadow: 0 0 30px 8px rgba(143,163,154,0.15);
}

.hero-circle-4 {
    width: 100px; height: 100px;
    bottom: 60px; right: 280px;
    background: var(--accent);
    opacity: 0.08;
    animation: floatBubble 8s ease-in-out infinite;
    animation-delay: -2s;
    box-shadow: 0 0 50px 16px rgba(143,163,154,0.3);
}
.hero:hover .hero-circle-1 { box-shadow: 0 0 90px 25px rgba(143,163,154,0.32); transition: box-shadow 0.6s ease; }
.hero:hover .hero-circle-2 { box-shadow: 0 0 60px 18px rgba(143,163,154,0.26); transition: box-shadow 0.6s ease; }
.hero:hover .hero-circle-3 { box-shadow: 0 0 50px 14px rgba(143,163,154,0.22); transition: box-shadow 0.6s ease; }
.hero:hover .hero-circle-4 { box-shadow: 0 0 70px 24px rgba(143,163,154,0.42); transition: box-shadow 0.6s ease; }

/* Legacy hero-shape for small-hero subpages */
.hero-shape {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    top: 80px; right: 80px;
    background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=600') center/cover no-repeat;
    z-index: 0;
    opacity: 0.08;
    animation: slowRotate 30s linear infinite;
}

.hero-shape-2 {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    bottom: -80px; left: 60px;
    background: var(--accent);
    opacity: 0.06;
    animation: floatBubble 8s ease-in-out infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.05); }
    to   { transform: rotate(360deg) scale(1); }
}

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

.hero h1, .hero p { position: relative; z-index: 2; }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 76px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 3px;
    animation: heroFadeIn 1.4s cubic-bezier(.77,0,.18,1) both;
}
.ggz {
    margin-right:50px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 12px;
    color: var(--text-muted);
    font-size: 16px;
    animation: heroFadeIn 1.4s cubic-bezier(.77,0,.18,1) 0.3s both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-image {
    height: 700px;
    background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400') center/cover no-repeat;
    background-color: var(--bg-soft); /* of zelfde als hero */
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
margin-top: 0;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
background: none;
}

/* ========== SMALL HERO ========== */
.small-hero {
    padding: 120px 40px 80px;
    background: var(--bg-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;   /* voeg toe aan bestaande regel */
}
/* achtergrond afbeelding */
.small-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/logoimg.png') center no-repeat;
    background-size: 200px; /* 🔥 PAS DIT AAN */
    opacity: 0.2;
    z-index: 0;
}
/* zorg dat je content erboven blijft */
.small-hero * {
    position: relative;
    z-index: 1;
}
.small-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px; font-weight: 300;
    letter-spacing: 2px;
    position: relative; z-index: 2;
    animation: heroFadeIn 1.2s cubic-bezier(.77,0,.18,1) both;
}

.small-hero p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 16px auto 0;
    position: relative; z-index: 2;
    animation: heroFadeIn 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
}

/* Floating circles on subpages */
.small-hero .hero-circle {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.small-hero .circle-a {
    width: 320px; height: 320px;
    top: -80px; right: 60px;
    opacity: 0.08;
    animation: floatBubble 12s ease-in-out infinite;
}

.small-hero .circle-b {
    width: 160px; height: 160px;
    bottom: -40px; left: 100px;
    opacity: 0.07;
    animation: floatBubble 8s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.small-hero .circle-c {
    width: 100px; height: 100px;
    top: 20px; left: 300px;
    background: var(--accent);
    opacity: 0.07;
    animation: floatBubble 6s ease-in-out infinite;
    animation-delay: -2s;
}

/* ========== INTRO ========== */
.intro-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.intro-section p { font-size: 17px; color: var(--text-muted); line-height: 2; }

/* ========== VALUES SECTION ========== */
.values-section { padding: 120px 40px; background: var(--bg-main); position: relative;}
.values-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: #8fa39a;
    transform: translateX(-50%);
    transition: width 0.8s cubic-bezier(.77,0,.18,1);
}
.values-section:hover::after { width: 100%; }
.values-inner {
    max-width: 2000px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.values-heading {
    margin: 0 auto !important;
    text-align: center !important;
    margin-bottom: 80px; 
}

.values-heading h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 400;
    margin-bottom: 20px; line-height: 1.2;
    margin: 0 auto 80px auto;
    max-width: 700px;
    text-align: center;    align-items: center;
}

.values-heading h2 { font-size: 15px; font-weight: 300; color: var(--text-muted); max-width: 600px; line-height: 1.8; text-align: center; align-items: center; margin: 0 auto;}
.values-heading h2 strong { color: var(--text-dark); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; justify-content: center;}

.value-box {
    border: 1px solid var(--line);
    padding: 50px 40px;
    background: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.77,0,.18,1), border-color 0.4s, box-shadow 0.4s;
    align-items: center;
}

.value-box.revealed { opacity: 1; transform: translateY(0); }

.value-box::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(.77,0,.18,1);
}

.value-box:hover::before { width: 100%; }
.value-box:hover { border-color: var(--accent); box-shadow: 0 30px 60px rgba(143,163,154,0.12); }
.value-box.revealed:hover { transform: translateY(-8px); }

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; color: var(--line);
    line-height: 1; margin-bottom: 24px;
    transition: color 0.4s;
}

.value-box:hover .value-number { color: var(--accent); }

.value-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 16px; color: var(--text-dark); }
.value-box p { color: var(--text-muted); line-height: 1.8; font-size: 14px; }

.value-box:nth-child(1) { transition-delay: 0s; }
.value-box:nth-child(2) { transition-delay: 0.1s; }
.value-box:nth-child(3) { transition-delay: 0.2s; }
.value-box:nth-child(4) { transition-delay: 0.3s; }
.value-box:nth-child(5) { transition-delay: 0.4s; }
.value-box:nth-child(6) { transition-delay: 0.5s; }
.value-box:nth-child(7) { transition-delay: 0.6s; }
.value-box:nth-child(8) { transition-delay: 0.7s; }

/* ========== MID QUOTE ========== */
.mid-quote {
    text-align: center;
    padding: 100px 40px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.mid-quote::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: #8fa39a;
    transform: translateX(-50%);
    transition: width 0.7s cubic-bezier(.77,0,.18,1);
}
.mid-quote:hover::after { width: 70%; }

.mid-quote::before {
    content: "\201C";
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 320px; color: var(--accent); opacity: 0.06;
    top: -60px; left: 40px; line-height: 1;
}

.mid-quote h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 300; font-style: italic;
    max-width: 800px; margin: 0 auto 24px; line-height: 1.5;
    position: relative; z-index: 1;
}

.mid-quote h2 {
    font-size: 13px; font-weight: 400;
    letter-spacing: 2px; color: var(--text-muted);
    text-transform: uppercase; position: relative; z-index: 1;
}
.contact-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: #8fa39a;
    transform: translateX(-50%);
    transition: width 0.7s cubic-bezier(.77,0,.18,1);
}
.contact-section:hover::after { width: 60%; }
/* ========== TREATMENT ========== */
.treatment-section { background: var(--bg-soft); padding: 140px 0; position: relative; overflow: hidden; }

.organic-shape {
    position: absolute;
    width: 700px; height: 700px;
    background: #e9e5df; border-radius: 50%;
    bottom: -300px; left: -300px;
    animation: floatBubble 10s ease-in-out infinite;
}

.treatment-grid {
    max-width: 1100px; margin: auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 90px; align-items: center; padding: 0 40px;
}

.treatment-grid h2 { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; line-height: 1.3; }
.treatment-grid h3 { margin: 24px 0; color: var(--text-muted); font-weight: 400; }
.treatment-grid h5 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--accent); margin-top: 24px; }
.treatment-grid p { color: var(--text-muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.treatment-grid ul { list-style: none; margin-top: 10px; }

.treatment-grid li { margin-bottom: 16px; font-size: 15px; color: var(--text-muted); padding-left: 20px; position: relative; }
.treatment-grid li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

.treatment-image { height: 450px; border-radius: 4px; background: url('https://img.pixers.pics/pho_wat(s3:700/FO/70/25/72/43/700_FO70257243_61ddc488119ea8b43bc90d370a8fc382.jpg,700,544,cms:2018/10/5bd1b6b8d04b8_220x50-watermark.png,over,480,494,jpg)/fotobehang-psychologie.jpg.jpg') center/cover no-repeat; }

/* ========== CONTACT CTA ========== */
.contact-section { padding: 140px 20px; text-align: center; position: relative; overflow: hidden; }

.contact-section::before {
    content: "";
    position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: var(--accent); opacity: 0.05;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.05; }
    50%       { transform: translate(-50%,-50%) scale(1.3); opacity: 0.02; }
}

.contact-container { position: relative; z-index: 1; opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(.77,0,.18,1); }
.contact-container.revealed { opacity: 1; transform: translateY(0); }
.contact-container h2 { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; margin-bottom: 12px; letter-spacing: 1px; }
.contact-container p { color: var(--text-muted); font-size: 15px; }

.btn-primary { display: inline-block; margin-top: 36px; padding: 16px 52px; background: var(--accent); color: white; text-decoration: none; letter-spacing: 2px; font-size: 13px; transition: all 0.5s cubic-bezier(.77,0,.18,1); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(143,163,154,0.3); opacity: 0.9; }

/* ========== CONTACT PAGE ========== */
.contact-layout { max-width: 1200px; margin: 100px auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; padding: 0 40px; }

.contact-info h2, .contact-form-wrapper h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; position: relative; padding-bottom: 24px; margin-bottom: 48px; font-weight: 400; }

.contact-form-wrapper h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 1px;
    background: var(--accent);
    transition: width 0.6s cubic-bezier(.77,0,.18,1);
}

.contact-form-wrapper:hover h2::after { width: 100px; }

.info-block { margin-bottom: 36px; }
.info-block h4 { font-weight: 500; margin-bottom: 10px; font-size: 14px; letter-spacing: 0.5px; }
.info-block p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

.privacy-note { margin-top: 50px; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--line); padding-top: 24px; line-height: 1.7; }

.form-row > input,
.form-row > select {
    flex: 1;
    min-width: 0;
}

.luxury-form { position: relative; padding: 60px; background: white; box-shadow: 0 2px 0 0 var(--accent), 0 40px 100px rgba(0,0,0,0.05); overflow: hidden; transition: box-shadow 0.5s ease; }

.luxury-form:hover {
    box-shadow: 0 3px 0 0 var(--accent), 0 50px 120px rgba(143,163,154,0.1);
}

.luxury-form::before { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(143,163,154,0.1) 0%, transparent 70%); top: -200px; right: -200px; z-index: 0; }

.luxury-form * { position: relative; z-index: 2; }

.intake-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: flex; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; position: relative; padding-top: 20px; }
.form-label {
    position: absolute;
    top: 34px; left: 0;
    font-size: 13px;
    color: var(--text-muted);
    pointer-events: none;
    transition: top 0.3s cubic-bezier(.77,0,.18,1),
                font-size 0.3s,
                color 0.3s,
                letter-spacing 0.3s;
    letter-spacing: 0.5px;
}
.form-group::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 1;
}

.form-group:focus-within::after { width: 100%; }

.form-group:focus-within .form-label,
.form-group.filled .form-label {
    top: 0;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.intake-form .form-row,
.intake-form .form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.77,0,.18,1);
}

.luxury-form.revealed .intake-form .form-row:nth-child(1),
.luxury-form.revealed .intake-form .form-group:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.luxury-form.revealed .intake-form .form-row:nth-child(2),
.luxury-form.revealed .intake-form .form-group:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.luxury-form.revealed .intake-form .form-row:nth-child(3),
.luxury-form.revealed .intake-form .form-group:nth-child(3) { opacity:1; transform:none; transition-delay: 0.19s; }
.luxury-form.revealed .intake-form .form-row:nth-child(4),
.luxury-form.revealed .intake-form .form-group:nth-child(4) { opacity:1; transform:none; transition-delay: 0.26s; }
.luxury-form.revealed .intake-form .form-row:nth-child(5),
.luxury-form.revealed .intake-form .form-group:nth-child(5) { opacity:1; transform:none; transition-delay: 0.33s; }
.luxury-form.revealed .intake-form .form-row:nth-child(6),
.luxury-form.revealed .intake-form .form-group:nth-child(6) { opacity:1; transform:none; transition-delay: 0.40s; }
.luxury-form.revealed .intake-form .form-row:nth-child(7),
.luxury-form.revealed .intake-form .form-group:nth-child(7) { opacity:1; transform:none; transition-delay: 0.47s; }
.luxury-form.revealed .intake-form .form-row:nth-child(8),
.luxury-form.revealed .intake-form .form-group:nth-child(8) { opacity:1; transform:none; transition-delay: 0.54s; }

input:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom-color: transparent;
    transform: translateY(-3px);
}
input:hover, textarea:hover, select:hover { border-bottom-color: var(--accent); }
textarea { resize: none; }

.radio-group { display: flex; gap: 32px; flex-wrap: wrap; }
.radio-group label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--text-muted); }

.radio-group input[type="radio"] {
    appearance: none;
    width: 16px; height: 16px;
    border: 1px solid var(--line);
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--accent);
}

.radio-group input[type="radio"]::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform 0.3s cubic-bezier(.77,0,.18,1);
}

.radio-group input[type="radio"]:checked::after { transform: translate(-50%, -50%) scale(1); }

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 16px; height: 16px;
    border: 1px solid var(--line);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
    margin-right: 10px;
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    line-height: 1;
}

.checkbox-group { font-size: 14px; color: var(--text-muted); }

input:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--accent);
    box-shadow: 0 2px 0 var(--accent);
}

.submit-btn { 
    margin-top: 10px; 
    padding: 18px 48px; 
    background: transparent; 
    color: var(--accent); 
    border: 1.5px solid var(--accent); 
    cursor: pointer; 
    font-family: 'Inter', sans-serif; 
    font-size: 13px;     
    letter-spacing: 3px;
    transition: color 0.4s cubic-bezier(.77,0,.18,1), box-shadow 0.4s; 
    align-self: flex-start; 
    position: relative;
    overflow: hidden; 
}

.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(.77,0,.18,1);
    z-index: 0;
}

.submit-btn span { position: relative; z-index: 1; }

.submit-btn:hover { color: white; box-shadow: 0 16px 40px rgba(143,163,154,0.35); }
.submit-btn:hover::before { transform: scaleX(1); }

/* ========== MAP SECTION ========== */
.map-section { max-width: 1200px; margin: 100px auto 0; padding: 80px 40px 0; text-align: center; border-top: 1px solid var(--line); opacity: 0; transform: translateY(50px); transition: opacity 1s ease, transform 1s cubic-bezier(.77,0,.18,1); }
.map-section.revealed { opacity: 1; transform: translateY(0); }
.map-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; margin-bottom: 10px; }
.map-section p { color: var(--text-muted); margin-bottom: 50px; font-size: 15px; }

.map-wrapper { max-width: 900px; margin: 0 auto 40px auto; padding: 20px; background: white; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,0.06); transition: 0.5s cubic-bezier(.77,0,.18,1); }
.map-wrapper:hover { transform: translateY(-6px); box-shadow: 0 50px 120px rgba(0,0,0,0.10); }
.map-wrapper iframe { border-radius: 14px; width: 100%; height: 420px; display: block; }

.route-btn { display: inline-block; padding: 14px 40px; background: var(--accent); color: white; text-decoration: none; letter-spacing: 1px; font-size: 13px; transition: 0.4s; }
.route-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(143,163,154,0.35); }

/* ========== FOOTER ========== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); margin-top: 120px; }
.footer-top { padding: 100px 40px; }
.footer-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 24px; }
.footer-col p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: var(--text-muted); }
.footer-col a { text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.footer-col a:hover { color: var(--text-dark); }
.footer-contact p { margin-bottom: 20px; }
.footer-opening { margin-top: 30px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 30px 40px; }
.footer-bottom-inner { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }
.footer-legal a { margin-left: 24px; text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.footer-legal a:hover { color: var(--text-dark); }
.footer-social { margin-top: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-social h5 { font-size: 12px; margin-bottom: 16px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ── SOCIAL ICON BUTTONS ── */
.social-links { display: flex; gap: 10px; }

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text-muted);
    transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.4s cubic-bezier(.77,0,.18,1), box-shadow 0.35s;
}

.social-links a svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.35s; display: block; }

.social-links a:hover { transform: translateY(-5px); }
.social-links a:hover svg { transform: scale(1.15); }

.social-links a.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; color: white; box-shadow: 0 8px 25px rgba(214,36,159,0.3); }
.social-links a.linkedin:hover  { background: #0077b5; border-color: transparent; color: white; box-shadow: 0 8px 25px rgba(0,119,181,0.3); }
.social-links a.facebook:hover  { background: #1877f2; border-color: transparent; color: white; box-shadow: 0 8px 25px rgba(24,119,242,0.3); }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1s ease, transform 1s cubic-bezier(.77,0,.18,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
/* HERO BUTTONS */
.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-hero-primary{
    padding:14px 40px;
    background:var(--accent);
    color:white;
    text-decoration:none;
    font-size:13px;
    letter-spacing:2px;
    transition:all .4s cubic-bezier(.77,0,.18,1);
}

.btn-hero-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(143,163,154,0.35);
}

.btn-hero-secondary{
    padding:14px 40px;
    border:1px solid var(--accent);
    color:var(--accent);
    text-decoration:none;
    font-size:13px;
    letter-spacing:2px;
    transition:all .4s cubic-bezier(.77,0,.18,1);
}

.btn-hero-secondary:hover{
    background:var(--accent);
    color:white;
    transform:translateY(-4px);
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
    .nav-left, .nav-right { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 52px; }
    .small-hero h1 { font-size: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .values-heading h1 { font-size: 38px; }
    .treatment-grid { grid-template-columns: 1fr; text-align: center; padding: 0 30px; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .form-row { flex-direction: column; gap: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal a { margin: 0 10px; }
    .fullscreen-menu { padding: 40px; }
    .menu-links a { font-size: 56px; }
}

@media (max-width: 700px) {
    .hero h1 { font-size: 38px; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .mid-quote h1 { font-size: 28px; }
    .luxury-form { padding: 40px 30px; }
    .contact-container h2 { font-size: 40px; }
    .fullscreen-menu { padding: 36px 28px; }
    .menu-links a { font-size: 44px; }

.hero-circle-1{
    width:260px;
    height:260px;
    right:-60px;
    top:40px;
}

.hero-circle-2{
    width:140px;
    height:140px;
    left:-40px;
    bottom:-20px;
}

.hero-circle-3{
    width:100px;
    height:100px;
    left:40px;
    top:20px;
}

.hero-circle-4{
    width:70px;
    height:70px;
    right:40px;
    bottom:40px;
}
.hero{
    padding:120px 20px 60px;
}

.hero-image{
    height:420px;
}
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.social-links a.email:hover { 
    background: #ea4335; 
    border-color: transparent; 
    color: white; 
    box-shadow: 0 8px 25px rgba(234,67,53,0.3); 
}

.social-links a.whatsapp:hover { 
    background: #25d366; 
    border-color: transparent; 
    color: white; 
    box-shadow: 0 8px 25px rgba(37,211,102,0.3); 
}

/* RADIO + TEXTAREA LABEL FIX */
.form-group.has-radio .form-label,
.form-group.has-textarea .form-label {
    position: static;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}
.social-links a.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}
.social-links a.phone svg:hover {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.social-links a.phone:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
}

/* minder padding bovenaan */
.form-group.has-radio,
.form-group.has-textarea {
    padding-top: 8px;
}

/* textarea focus fix */
.form-group.has-textarea textarea:focus {
    transform: none;
}

/* geen underline animatie bij radio */
.form-group.has-radio::after {
    display: none;
}

@media (max-width: 500px) {

    /* minder ruimte boven/onder */
    #preloader {
        padding: 20px;
    }

    /* ripple compacter */
    .rpl {
        width: 40px;
        height: 40px;
    }

    /* progress bar subtieler */
    .pl-progress {
        height: 1px;
    }

    /* menu links dichter op elkaar */
    .menu-links {
        gap: 10px;
    }

    /* taal buttons kleiner */
    .lang-btn {
        padding: 8px 18px;
        font-size: 11px;
    }
}

/* ========== VERGOEDING SECTION ========== */
.vergoeding-section{
    padding:120px 40px;
    background:var(--bg-main);
    position:relative;
}

.vergoeding-inner{
    max-width:1100px;
    margin:auto;
}

.vergoeding-heading{
    text-align:center;
    margin-bottom:80px;
}

.vergoeding-heading h1{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    font-weight:400;
    margin-bottom:16px;
}

.vergoeding-heading p{
    color:var(--text-muted);
    max-width:600px;
    margin:auto;
}

.vergoeding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.vergoeding-box{
    background:white;
    border:1px solid var(--line);
    padding:40px;
    transition:.4s;
    position:relative;
}

.vergoeding-box:hover{
    border-color:var(--accent);
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(143,163,154,0.12);
}

.vergoeding-box::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--accent);
    transition:.4s;
}

.vergoeding-box:hover::after{
    width:100%;
}

.vergoeding-step{
    font-size:12px;
    letter-spacing:2px;
    color:var(--accent);
    text-transform:uppercase;
}

.vergoeding-box h3{
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    margin:12px 0;
}

.vergoeding-box p{
    color:var(--text-muted);
    font-size:14px;
}

.vergoeding-text{
    max-width:750px;
    margin:0 auto 80px;
    text-align:center;
}

.vergoeding-text p{
    margin-bottom:20px;
    color:var(--text-muted);
}

.vergoeding-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin:40px 0 10px;
}

/* responsive */
@media(max-width:900px){
    .vergoeding-grid{
        grid-template-columns:1fr;
    }
}
input[type="date"] {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
}
.form-group.has-date .form-label {
    position: static;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
    color: var(--text-muted);
}
/* Tijdelijke fix: altijd zichtbaar */
.intake-form .form-row,
.intake-form .form-group {
    opacity: 1 !important;
    transform: none !important;
}
.insta-follow{
    text-align:center;
    position:relative;
    z-index:1;
}

.insta-follow .social-links{
    justify-content:center;
    margin-top:30px;
}

.insta-follow h2{
    margin-top:10px;
}
.values-section {
    display: block !important;
    text-align: center !important;
}