/*
==================================================
PUUR BEZIELD - Stylesheet
Versie: v11 - leesbare code
Opmerking: alleen geformatteerd en voorzien van commentaar.
==================================================
*/

/* Basis / variabelen */
:root {
    --cream:#fbf7ef;
    --cream2:#f4eadb;
    --white:#fffdf8;
    --sage:#aeb99e;
    --sage2:#dfe6d4;
    --green:#58634f;
    --dark:#394334;
    --sand:#e8dcc8;
    --gold:#b39162;
    --gold2:#d0b184;
    --text:#302c26;
    --muted:#6b655b;
    --line:rgba(57, 67, 52, .14);
    --shadow:0 28px 80px rgba(48, 44, 38, .13);
    --soft:0 14px 44px rgba(48, 44, 38, .08);
    --max:1180px;
    --radius:34px
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:Lato, Segoe UI, Arial, sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.72;
    overflow-x:hidden
}

body:before {
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background:radial-gradient(circle at 9% 4%, rgba(174, 185, 158, .42), transparent 30%), radial-gradient(circle at 88% 10%, rgba(179, 145, 98, .20), transparent 28%), linear-gradient(180deg, #fffaf2 0%, #fbf7ef 45%, #f4eadb 100%)
}

body:after {
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    opacity:.18;
    background-image:url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='90' height='90' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E")
}

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

a {
    color:inherit
}

.container {
    width:min(var(--max), calc(100% - 44px));
    margin:auto
}

/* Header / navigatie */
.header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(251, 247, 239, .78);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(57, 67, 52, .10);
    transition:.25s
}

.header.scrolled {
    box-shadow:0 12px 34px rgba(57, 67, 52, .08);
    background:rgba(251, 247, 239, .92)
}

.header-inner {
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px
}

.brand {
    display:inline-flex;
    align-items:center;
    text-decoration:none
}

.brand img {
    width:268px;
    height:auto;
    filter:drop-shadow(0 8px 14px rgba(57, 67, 52, .05))
}

.nav {
    display:flex;
    gap:8px;
    align-items:center;
    font-weight:800;
    font-size:14px
}

.nav a {
    text-decoration:none;
    padding:11px 13px;
    border-radius:999px;
    color:rgba(57, 67, 52, .82);
    transition:.18s
}

.nav a:hover, .nav a.active {
    background:rgba(255, 253, 248, .72);
    color:var(--dark)
}

.btn, .nav .cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 22px;
    border-radius:999px;
    background:var(--green);
    color:white!important;
    text-decoration:none;
    font-weight:900;
    box-shadow:0 16px 32px rgba(88, 99, 79, .20);
    border:1px solid rgba(88, 99, 79, .15);
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease
}

.btn:hover, .nav .cta:hover {
    transform:translateY(-2px);
    box-shadow:0 22px 42px rgba(88, 99, 79, .24);
    background:#4f5a47
}

.btn.alt {
    background:rgba(255, 253, 248, .76);
    color:var(--dark)!important;
    border:1px solid var(--line);
    box-shadow:none
}

.btn.alt:hover {
    background:#fff
}

.menu {
    display:none;
    background:rgba(255, 253, 248, .74);
    border:1px solid var(--line);
    border-radius:16px;
    width:48px;
    height:48px;
    font-size:26px;
    color:var(--dark)
}

h1, h2, h3 {
    font-family:"Cormorant Garamond", Georgia, serif;
    color:var(--dark);
    line-height:1.02;
    margin:0;
    font-weight:600;
    text-wrap:balance
}

h1 {
    font-size:clamp(58px, 7.8vw, 112px);
    letter-spacing:-.045em;
    margin-bottom:24px
}

h2 {
    font-size:clamp(40px, 5vw, 74px);
    letter-spacing:-.035em;
    margin-bottom:20px
}

h3 {
    font-size:32px;
    margin-bottom:10px
}

.kicker {
    display:inline-flex;
    gap:12px;
    align-items:center;
    text-transform:uppercase;
    letter-spacing:.19em;
    font-size:12px;
    font-weight:900;
    color:var(--gold);
    margin-bottom:18px
}

.kicker:before {
    content:"";
    width:44px;
    height:1px;
    background:linear-gradient(90deg, var(--gold), transparent)
}

.lead {
    font-size:clamp(18px, 2vw, 24px);
    color:#4b463d;
    max-width:690px
}

/* Homepage hero */
.hero {
    min-height:calc(100svh - 92px);
    display:grid;
    align-items:center;
    position:relative
}

.hero:before {
    content:"";
    position:absolute;
    inset:34px 24px auto auto;
    width:220px;
    height:220px;
    border:1px solid rgba(179, 145, 98, .18);
    border-radius:50%;
    pointer-events:none
}

.hero-grid {
    display:grid;
    grid-template-columns:1fr minmax(390px, .94fr);
    gap:clamp(40px, 5vw, 70px);
    align-items:center;
    padding:70px 0
}

.actions {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px
}

.hero-photo {
    position:relative;
    border-radius:46px;
    overflow:hidden;
    box-shadow:var(--shadow);
    min-height:650px;
    isolation:isolate
}

.hero-photo:after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 48%, rgba(37, 32, 24, .28));
    pointer-events:none
}

.hero-photo img {
    width:100%;
    height:650px;
    object-fit:cover;
    transform:scale(1.015)
}

.glass {
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    background:rgba(255, 253, 248, .80);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255, 255, 255, .75);
    border-radius:28px;
    padding:24px;
    box-shadow:0 18px 42px rgba(48, 44, 38, .10);
    z-index:2
}

.glass strong {
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:33px;
    line-height:1;
    color:var(--dark);
    font-weight:600
}

.glass p {
    margin:8px 0 0;
    font-size:16px
}

.note {
    display:none
}

.strip {
    background:rgba(255, 253, 248, .72);
    border-block:1px solid var(--line)
}

.strip-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr)
}

.strip-item {
    padding:26px 30px;
    border-left:1px solid var(--line)
}

.strip-item:first-child {
    border:0
}

.strip-item b {
    display:block;
    color:var(--dark);
    font-size:16px
}

.strip-item span {
    font-size:14px;
    color:var(--muted)
}

.section {
    padding:108px 0
}

.alt {
    background:rgba(255, 253, 248, .48);
    box-shadow:inset 0 1px rgba(255, 255, 255, .7), inset 0 -1px rgba(57, 67, 52, .06)
}

.intro {
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:64px;
    align-items:start
}

.card {
    background:rgba(255, 253, 248, .88);
    border:1px solid rgba(57, 67, 52, .12);
    border-radius:var(--radius);
    padding:clamp(30px, 4vw, 48px);
    box-shadow:var(--soft);
    position:relative;
    overflow:hidden
}

.card:before {
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:4px;
    background:linear-gradient(90deg, var(--sage), var(--gold2), transparent);
    opacity:.7
}

p {
    font-size:18px;
    color:#4c473f
}

.signature {
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:40px;
    color:var(--gold);
    margin:12px 0 18px
}

.photo-stack {
    display:grid;
    gap:18px
}

.photo-stack img, .gallery img, .detail img {
    border-radius:32px;
    box-shadow:var(--shadow);
    width:100%;
    object-fit:cover;
    background:var(--sand)
}

.photo-stack .big {
    height:500px
}

.photo-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px
}

.photo-row img {
    height:220px
}

.services {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
    margin-top:36px
}

.service {
    background:rgba(255, 253, 248, .88);
    border:1px solid var(--line);
    border-radius:30px;
    padding:32px;
    text-decoration:none;
    min-height:295px;
    display:flex;
    flex-direction:column;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease
}

.service:hover {
    transform:translateY(-7px);
    box-shadow:var(--shadow);
    background:#fff
}

.icon {
    width:60px;
    height:60px;
    border-radius:22px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg, var(--sage2), var(--sand));
    font-size:28px;
    margin-bottom:22px;
    color:var(--green)
}

.read {
    margin-top:auto;
    color:var(--gold);
    font-weight:900
}

.detail {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:38px;
    align-items:center;
    margin-top:54px
}

.detail:first-child {
    margin-top:0
}

.detail:nth-child(even) .detail-img {
    order:2
}

.detail img {
    height:470px
}

.detail .card ul {
    padding-left:20px
}

.detail .card li {
    margin:6px 0;
    font-size:17px
}

.gallery {
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    grid-auto-rows:245px;
    gap:22px;
    margin-top:38px
}

.gallery img {
    height:100%;
    transition:transform .25s ease, filter .25s ease
}

.gallery img:hover {
    transform:translateY(-3px);
    filter:saturate(1.04)
}

.gallery img:first-child {
    grid-row:span 2
}

.prices {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px
}

.price {
    background:rgba(255, 253, 248, .9);
    border:1px solid var(--line);
    border-radius:30px;
    padding:32px;
    box-shadow:var(--soft)
}

.price strong {
    color:var(--green);
    font-size:20px
}

.faq {
    max-width:860px;
    margin:36px auto 0
}

details {
    background:rgba(255, 253, 248, .9);
    border:1px solid var(--line);
    border-radius:22px;
    padding:21px 25px;
    margin-bottom:14px;
    box-shadow:0 8px 24px rgba(48, 44, 38, .04)
}

summary {
    font-weight:900;
    color:var(--dark);
    cursor:pointer
}

/* Contactpagina */
.contact-grid {
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:34px;
    align-items:start
}

.contact-section {
    padding-top:44px
}

.contact-info, .contact-form-card {
    min-height:100%
}

.form-note {
    font-size:14px;
    color:var(--muted);
    margin:14px 0 0
}

input, textarea {
    width:100%;
    border:1px solid var(--line);
    border-radius:18px;
    background:white;
    padding:16px 17px;
    margin-bottom:14px;
    font:inherit;
    outline:none;
    transition:border .18s, box-shadow .18s
}

input:focus, textarea:focus {
    border-color:rgba(179, 145, 98, .55);
    box-shadow:0 0 0 4px rgba(179, 145, 98, .10)
}

textarea {
    min-height:155px;
    resize:vertical
}

.page-hero {
    text-align:center;
    padding:104px 0 48px
}

.page-hero .kicker:before {
    display:none
}

.page-hero p {
    max-width:760px;
    margin:18px auto 0;
    color:var(--muted);
    font-size:21px
}

/* Footer */
.footer {
    background:linear-gradient(135deg, #394334, #2e362a);
    color:#f9efe4;
    padding:62px 0 30px
}

.footer-grid {
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:38px
}

.footer p, .footer a {
    color:#f9efe4
}

.footer a {
    text-decoration-color:rgba(249, 239, 228, .4);
    text-underline-offset:4px
}

.footer-logo {
    width:260px;
    filter:brightness(0) invert(1);
    opacity:.95
}

.small {
    font-size:13px;
    opacity:.75;
    margin-top:26px
}

.reveal {
    opacity:0;
    transform:translateY(18px);
    transition:opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity:1;
    transform:none
}

@media(prefers-reduced-motion:reduce) {
* {
    scroll-behavior:auto!important;
    transition:none!important
}

.reveal {
    opacity:1;
    transform:none
}

}

@media(max-width:1040px) {
.hero-grid, .intro, .detail, /* Contactpagina */
.contact-grid {
    grid-template-columns:1fr
}

.services, .prices {
    grid-template-columns:1fr 1fr
}

.detail:nth-child(even) .detail-img {
    order:0
}

.hero-photo, .hero-photo img {
    min-height:540px;
    height:540px
}

.nav {
    gap:4px
}

.brand img {
    width:230px
}

}

@media(max-width:860px) {
.header-inner {
    height:78px
}

.brand img {
    width:206px
}

.menu {
    display:grid;
    place-items:center
}

.nav {
    display:none;
    position:absolute;
    top:88px;
    left:20px;
    right:20px;
    background:rgba(255, 253, 248, .96);
    border:1px solid var(--line);
    border-radius:26px;
    padding:22px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch
}

.nav.open {
    display:flex
}

.nav a {
    padding:13px 16px
}

.strip-grid {
    grid-template-columns:1fr 1fr
}

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

.gallery img:first-child {
    grid-row:span 1
}

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

}

@media(max-width:580px) {
.container {
    width:calc(100% - 28px)
}

h1 {
    font-size:52px
}

h2 {
    font-size:42px
}

.hero-grid {
    padding:46px 0
}

.hero-photo, .hero-photo img {
    min-height:390px;
    height:390px;
    border-radius:28px
}

.glass {
    left:16px;
    right:16px;
    bottom:16px;
    padding:18px;
    border-radius:22px
}

.strip-grid, .services, .prices, .gallery, .photo-row {
    grid-template-columns:1fr
}

.section {
    padding:70px 0
}

.page-hero {
    padding:76px 0 34px
}

.card {
    padding:28px
}

.photo-stack .big, .detail img {
    height:340px
}

.strip-item {
    border-left:0;
    border-top:1px solid var(--line)
}

.strip-item:first-child {
    border-top:0
}

}

/* Gekozen logo + KvK placeholder */
.brand img {
    width:210px;
    max-height:112px;
    object-fit:contain;
    filter:none
}

.header-inner {
    height:112px
}

.footer-logo {
    width:210px;
    max-height:112px;
    object-fit:contain;
    filter:none;
    background:rgba(255, 253, 248, .96);
    border-radius:24px;
    padding:12px;
    box-shadow:0 16px 34px rgba(0, 0, 0, .12)
}

.kvk-placeholder {
    margin-top:14px;
    font-size:15px;
    opacity:.92
}

.kvk-placeholder span {
    display:inline-block;
    border:1px dashed rgba(249, 239, 228, .55);
    border-radius:999px;
    padding:3px 10px;
    margin-left:4px;
    color:#f9efe4
}

@media(max-width:1040px) {
.brand img {
    width:190px
}

.footer-logo {
    width:190px
}

}

@media(max-width:860px) {
.header-inner {
    height:92px
}

.brand img {
    width:170px
}

.nav {
    top:102px
}

}

@media(max-width:580px) {
.brand img {
    width:150px
}

.footer-logo {
    width:170px
}

}

/* v8: handmatige focuspunten voor foto's - stijl blijft ongewijzigd */
.hero-photo img[src$="behandelkamer.jpg"] {
    object-position:center 52%;
}

.photo-stack img[src$="behandeltafel.jpg"] {
    object-position:center 58%;
}

.photo-stack img[src$="zithoek.jpg"] {
    object-position:center 52%;
}

.photo-stack img[src$="buddha.jpg"] {
    object-position:center 50%;
}

.photo-stack img[src$="diploma_holistisch.jpg"] {
    object-position:center 48%;
}

.photo-stack img[src$="certificaat_reiki.jpg"] {
    object-position:center 50%;
}

.photo-stack img[src$="koshi.jpg"] {
    object-position:center 52%;
}

.detail img[src$="biotensor.jpg"] {
    object-position:center 45%;
}

.detail img[src$="lotus.jpg"] {
    object-position:center 50%;
}

.detail img[src$="behandeltafel.jpg"] {
    object-position:center 58%;
}

.detail img[src$="spiegel.jpg"] {
    object-position:center 52%;
}

.detail img[src$="zithoek.jpg"] {
    object-position:center 53%;
}

.gallery img[src$="behandelkamer.jpg"] {
    object-position:center 55%;
}

.gallery img[src$="zithoek.jpg"] {
    object-position:center 52%;
}

.gallery img[src$="behandeltafel.jpg"] {
    object-position:center 58%;
}

.gallery img[src$="dreamcatcher.jpg"] {
    object-position:center 46%;
}

.gallery img[src$="klankschalen.jpg"] {
    object-position:center 52%;
}

/* Bij smallere schermen iets meer verticale ruimte, zodat de uitsnede rustiger blijft. */
@media(max-width:580px) {
.photo-stack .big, .detail img {
    height:380px;
}

.gallery {
    grid-auto-rows:285px;
}

}

/* v9: contactpagina is weer normale volledige pagina;
geen floating WhatsApp-knop */
body.contact-page {
    display:block;
}

.contact-form-card form {
    margin-top:8px;
}

.contact-form-card .btn {
    border:0;
    cursor:pointer;
}

/* v10 review additions */
.footer h3 {
    color:#f8f5ee !important;
}

/* Reviews */
.review-quote {
    font-style:italic;
    font-size:.95rem;
    color:#6d7468;
    border-left:3px solid #c8d0bf;
    padding-left:1rem;
    margin:1.5rem 0;
}

/* Reviews */
.reviews {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:1.5rem;
    margin-top:3rem
}

/* Reviews */
.review-card {
    background:#fff;
    border-radius:20px;
    padding:1.5rem;
    box-shadow:0 10px 30px rgba(0, 0, 0, .06)
}

/* Reviews */
.review-card .stars {
    color:#b08d57;
    font-size:1.1rem;
    margin-bottom:.5rem
}

/*
==================================================
V12 - Foto's makkelijker vervangen
Doel: geen harde fotomaten meer. De website gebruikt
vaste verhoudingen via aspect-ratio en knipt rustiger bij.

Aanbevolen bronformaten:
- Hero / grote sfeerfoto: 1920 x 2400 px of 1600 x 2000 px (4:5)
- Grote praktijkfoto: 1600 x 1200 px (4:3)
- Kleine foto's / kaarten: 1200 x 900 px (4:3)
- Galerij brede foto: 1600 x 1067 px (3:2)

Foto toch niet goed in beeld? Pas alleen object-position aan,
bijvoorbeeld: object-position: center top;
==================================================
*/

.hero-photo {
    min-height:0;
}

.hero-photo img {
    height:auto;
    min-height:0;
    aspect-ratio:4 / 5;
    object-fit:cover;
}

.photo-stack .big {
    height:auto;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.photo-row img {
    height:auto;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.detail img {
    height:auto;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.gallery {
    grid-auto-rows:auto;
}

.gallery img {
    height:auto;
    aspect-ratio:4 / 3;
    object-fit:cover;
}

.gallery img:first-child {
    aspect-ratio:3 / 4;
}

/* Behandelingsafbeeldingen als die later worden toegevoegd */
.service img,
.card img {
    height:auto;
    object-fit:cover;
}

@media(max-width:1040px) {
    .hero-photo,
    .hero-photo img {
        height:auto;
        min-height:0;
    }

    .hero-photo img {
        aspect-ratio:16 / 10;
    }
}

@media(max-width:580px) {
    .hero-photo,
    .hero-photo img,
    .photo-stack .big,
    .detail img {
        height:auto;
        min-height:0;
    }

    .hero-photo img,
    .photo-stack .big,
    .photo-row img,
    .detail img,
    .gallery img,
    .gallery img:first-child {
        aspect-ratio:4 / 3;
    }
}


/* ======================================
   v14 - Foto's en quote-ruimte
====================================== */

.over-koshi-photo {
    height: 100%;
    min-height: 500px;
}

.over-koshi-photo img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 32px;
    box-shadow: var(--shadow);
    background: var(--sand);
}

.detail img[src$="Reiki.jpg"] {
    object-position: center top;
}

.section-quote {
    margin: -8px 0 24px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    line-height: 1.35;
    font-style: italic;
    color: rgba(61, 74, 57, .72);
}

@media (max-width: 760px) {
    .over-koshi-photo,
    .over-koshi-photo img {
        min-height: 320px;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .section-quote {
        font-size: 21px;
    }
}

/* CAT-registratie en praktijkgegevens */
.cat-section{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:28px;
  align-items:center;
}
.cat-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}
.cat-logo-wrap img{
  width:150px;
  max-width:100%;
  height:auto;
  border-radius:50%;
  box-shadow:0 10px 28px rgba(51,63,51,.10);
}
.cat-card p:last-child{margin-bottom:0}
.cat-more a{font-weight:700}
.contact-divider{
  border:0;
  border-top:1px solid rgba(66,75,61,.14);
  margin:24px 0 20px;
}
.footer-registration{
  margin-top:12px;
  font-size:.92rem;
  line-height:1.65;
}
@media (max-width:720px){
  .cat-section{grid-template-columns:1fr;text-align:left}
  .cat-logo-wrap{justify-content:flex-start}
  .cat-logo-wrap img{width:125px}
}
