/*
 * Homeopathie Harderwijk - VC Blocks CSS v2.0
 * Kleuren: #073220 (donkergroen), #07a763 (groen), #ebc912 (goud), #f1f5f3 (lichtgroen)
 * Fonts: Playfair Display (koppen), Lato (bodytekst)
 */
:root {
    --hh-dark:      #073220;
    --hh-green:     #07a763;
    --hh-green-h:   #059a58;
    --hh-gold:      #ebc912;
    --hh-light:     #f1f5f3;
    --hh-white:     #ffffff;
    --hh-text-m:    #4a5568;
    --hh-text-l:    #718096;
    --hh-heading:   'Playfair Display', Georgia, serif;
    --hh-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;
    --hh-radius:    8px;
    --hh-shadow:    0 4px 20px rgba(7,50,32,0.10);
    --hh-trans:     all 0.25s cubic-bezier(0.23,1,0.32,1);
}

/* ============================================================
   GLOBALE TYPOGRAFIE — lettertype, grootte en gewicht overal consistent
   ============================================================ */
body,
.entry-content,
.page-content,
.hh-page-active,
.site-wrap {
    font-family: var(--hh-body);
    font-size: 1rem;          /* 16px basis */
    font-weight: 400;
    color: var(--hh-text-m);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------
   Heading schaal — desktop (> 768px)
   h1: ~51px | h2: ~35px | h3: ~26px | h4: ~19px | h5/h6: 16/14px
   clamp() zorgt voor vloeiende overgang tussen breakpoints
   ------------------------------------------------------- */
h1, .entry-content h1 {
    font-family: var(--hh-heading);
    font-size: clamp(1.75rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

h2, .entry-content h2 {
    font-family: var(--hh-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

h3, .entry-content h3 {
    font-family: var(--hh-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h4, .entry-content h4 {
    font-family: var(--hh-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

h5, .entry-content h5 {
    font-family: var(--hh-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

h6, .entry-content h6 {
    font-family: var(--hh-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hh-text-l);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Body tekst */
p, .entry-content p {
    font-family: var(--hh-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--hh-text-m);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Grote intro alinea */
.hh-lead {
    font-family: var(--hh-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: var(--hh-text-m);
    line-height: 1.85;
}

/* Kleine bijschriften */
.hh-small, small {
    font-family: var(--hh-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--hh-text-l);
    line-height: 1.6;
}

ul, ol, .entry-content ul, .entry-content ol {
    font-family: var(--hh-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--hh-text-m);
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

strong, b {
    font-weight: 700;
    color: var(--hh-dark);
}

a {
    color: var(--hh-green);
    text-decoration: none;
}

a:hover {
    color: var(--hh-green-h);
    text-decoration: underline;
}

/* -------------------------------------------------------
   Responsive typografie — tablet (≤ 768px)
   ------------------------------------------------------- */
@media (max-width: 768px) {
    body, .entry-content, .page-content { font-size: 0.9375rem; } /* 15px */
    h1, .entry-content h1 { font-size: 1.875rem; line-height: 1.2; }   /* 30px */
    h2, .entry-content h2 { font-size: 1.5rem;   line-height: 1.25; }  /* 24px */
    h3, .entry-content h3 { font-size: 1.25rem;  line-height: 1.3; }   /* 20px */
    h4, .entry-content h4 { font-size: 1.1rem; }
    p, ul, ol,
    .entry-content p, .entry-content ul, .entry-content ol { font-size: 0.9375rem; }
    .hh-lead { font-size: 1rem; }
}

/* -------------------------------------------------------
   Responsive typografie — mobiel (≤ 480px)
   ------------------------------------------------------- */
@media (max-width: 480px) {
    body, .entry-content, .page-content { font-size: 0.9rem; }          /* 14.4px */
    h1, .entry-content h1 { font-size: 1.625rem; line-height: 1.2; }   /* 26px */
    h2, .entry-content h2 { font-size: 1.35rem;  line-height: 1.25; }  /* 21.6px */
    h3, .entry-content h3 { font-size: 1.15rem;  line-height: 1.3; }   /* 18.4px */
    h4, .entry-content h4 { font-size: 1rem; }
    p, ul, ol,
    .entry-content p, .entry-content ul, .entry-content ol { font-size: 0.9rem; }
    .hh-lead { font-size: 0.9375rem; }
}


.hh-page-active .site-header, .hh-page-active header.site-header,
.hh-page-active .site-footer, .hh-page-active footer.site-footer,
.hh-page-active .footer-wrap, .hh-page-active #masthead, .hh-page-active #colophon { display: none !important; }
.hh-page-active .entry-content, .hh-page-active .page-content,
.hh-page-active .wpb_content_element, .hh-page-active .vc_row,
.hh-page-active .vc_column_container, .hh-page-active .vc_col-sm-12 { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
.hh-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; box-sizing: border-box; }
.hh-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--hh-body); font-size: 1rem; font-weight: 600; padding: 0.85rem 1.75rem; border-radius: var(--hh-radius); text-decoration: none; transition: var(--hh-trans); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.hh-btn--primary { background-color: var(--hh-green); color: #fff; border-color: var(--hh-green); }
.hh-btn--primary:hover { background-color: var(--hh-green-h); border-color: var(--hh-green-h); transform: translateY(-2px); color: #fff; text-decoration: none; }
.hh-btn--outline { background-color: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.hh-btn--outline:hover { background-color: rgba(255,255,255,0.15); transform: translateY(-2px); color: #fff; text-decoration: none; }
.hh-btn--outline-green { background-color: transparent; color: var(--hh-green); border-color: var(--hh-green); }
.hh-btn--outline-green:hover { background-color: var(--hh-green); color: #fff; text-decoration: none; }
.hh-btn--dark { background-color: var(--hh-dark); color: #fff; border-color: var(--hh-dark); }
.hh-btn--dark:hover { background-color: var(--hh-green); border-color: var(--hh-green); color: #fff; text-decoration: none; }
.hh-section-title { font-family: var(--hh-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--hh-dark); text-align: center; margin-bottom: 0.75rem; line-height: 1.25; }
.hh-section-sub { font-family: var(--hh-body); font-size: 1rem; color: var(--hh-text-l); text-align: center; margin-bottom: 3rem; }
.hh-label { display: inline-block; background-color: rgba(7,167,99,0.1); color: var(--hh-green); font-family: var(--hh-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 20px; margin-bottom: 1rem; }
.hh-fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.hh-fade-in.hh-visible { opacity: 1; transform: translateY(0); }
/* NAV */
.hh-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; background-color: rgba(7,50,32,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: box-shadow 0.3s ease, background-color 0.3s ease; }
.hh-nav.hh-nav--scrolled { background-color: rgba(7,50,32,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.hh-nav__inner { max-width: 1380px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.hh-nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.hh-nav__logo img { height: 48px; width: auto; }
.hh-nav__logo-text { font-family: var(--hh-heading); font-size: 1.1rem; font-weight: 700; color: #fff; }
.hh-nav__menu { display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; }
.hh-nav__link { font-family: var(--hh-body); font-size: 1rem; font-weight: 500; color: var(--hh-gold); text-decoration: none; padding: 0.5rem 0.65rem; border-radius: 4px; transition: color 0.2s; white-space: nowrap; }
.hh-nav__link:hover { color: var(--hh-gold); text-decoration: none; }
.hh-nav__dropdown { position: relative; }
.hh-nav__sub { display: none; position: absolute; top: 100%; left: 0; background-color: var(--hh-dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 0.5rem 0; min-width: 240px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 200; }
.hh-nav__dropdown:hover .hh-nav__sub { display: block; }
.hh-nav__sub a { display: block; padding: 0.5rem 1rem; font-family: var(--hh-body); font-size: 0.85rem; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s, background-color 0.2s; }
.hh-nav__sub a:hover { color: var(--hh-gold); background-color: rgba(255,255,255,0.05); text-decoration: none; }
.hh-nav__cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-left: auto; background-color: var(--hh-green); color: #fff; font-family: var(--hh-body); font-size: 0.875rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 6px; text-decoration: none; transition: background-color 0.2s; white-space: nowrap; }
.hh-nav__cta:hover { background-color: var(--hh-green-h); color: #fff; text-decoration: none; }
.hh-nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hh-nav__burger span { display: block; width: 24px; height: 2px; background-color: #fff; transition: var(--hh-trans); }
/* HERO */
.hh-hero { position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background-size: cover; background-position: center; background-color: var(--hh-dark); padding-top: 72px; }
.hh-hero__overlay { position: absolute; inset: 0; background-color: rgba(7,50,32,0.65); }
.hh-hero__inner { position: relative; z-index: 2; text-align: center; padding: 3rem 1.5rem; max-width: 800px; width: 100%; }
.hh-hero__title { font-family: var(--hh-heading); font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.hh-hero__subtitle { font-family: var(--hh-body); font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 2.5rem; }
.hh-hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* OVER CO */
.hh-over-co { background-color: var(--hh-white); padding: 5rem 1.5rem; }
.hh-over-co__inner { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
.hh-over-co__portrait img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid var(--hh-light); box-shadow: var(--hh-shadow); }
.hh-over-co__content p { font-family: var(--hh-body); font-size: 1rem; color: var(--hh-text-m); line-height: 1.8; margin-bottom: 1rem; }
.hh-over-co__content strong { color: #073220; font-size: 1.1rem; }
.hh-over-co__buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
/* QUOTE */
.hh-quote { position: relative; padding: 0; min-height: 85vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center top; background-color: var(--hh-dark); }
.hh-quote__overlay { position: absolute; inset: 0; background-color: rgba(10, 30, 10, 0.05); }
.hh-quote__inner { position: relative; z-index: 2; text-align: center; max-width: 700px; }
.hh-quote__text { font-family: var(--hh-heading); font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 400; color: #ffffff; font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; border: none; padding: 0; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hh-quote__sub { font-family: var(--hh-body); font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hh-quote__sub a { color: #7ed4a0; text-decoration: none; font-weight: 600; }
/* DIENSTEN */
.hh-diensten { background-color: var(--hh-light); padding: 5rem 1.5rem; }
.hh-diensten__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.hh-diensten__card { background-color: var(--hh-white); border-radius: 12px; padding: 2rem 1.5rem; box-shadow: var(--hh-shadow); text-decoration: none; transition: var(--hh-trans); display: flex; flex-direction: column; gap: 0.75rem; border: 1px solid rgba(7,50,32,0.06); }
.hh-diensten__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(7,50,32,0.15); text-decoration: none; }
.hh-diensten__card-icon { width: 52px; height: 52px; background-color: rgba(7,167,99,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--hh-green); flex-shrink: 0; }
.hh-diensten__card h3 { font-family: var(--hh-heading); font-size: 1.1rem; font-weight: 700; color: var(--hh-dark); margin: 0; }
.hh-diensten__card p { font-family: var(--hh-body); font-size: 0.9rem; color: var(--hh-text-m); line-height: 1.7; margin: 0; flex: 1; }
.hh-diensten__card-link { font-family: var(--hh-body); font-size: 0.85rem; font-weight: 600; color: var(--hh-green); margin-top: auto; }
/* WAAROM */
.hh-waarom { position: relative; padding: 6rem 1.5rem; background-size: cover; background-position: center; background-color: var(--hh-dark); overflow: hidden; }
.hh-waarom__overlay { position: absolute; inset: 0; background-color: rgba(7,50,32,0.85); }
.hh-waarom__inner { position: relative; z-index: 2; max-width: 700px; text-align: center; }
.hh-waarom__inner h2 { font-family: var(--hh-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.hh-waarom__inner p { font-family: var(--hh-body); font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.85; font-style: italic; margin-bottom: 1.25rem; }
.hh-waarom__highlight { color: var(--hh-gold) !important; font-weight: 600 !important; }
/* KINDER */
.hh-kinder { background-color: var(--hh-white); padding: 5rem 1.5rem; }
.hh-kinder__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hh-kinder__content h2 { font-family: var(--hh-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--hh-dark); line-height: 1.3; margin-bottom: 1.25rem; }
.hh-kinder__content p { font-family: var(--hh-body); font-size: 1rem; color: var(--hh-text-m); line-height: 1.8; margin-bottom: 1rem; }
.hh-kinder__image { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(7,50,32,0.15); }
.hh-kinder__image img { width: 100%; height: 380px; object-fit: cover; display: block; }
/* RECENSIES */
.hh-recensies { background-color: var(--hh-light); padding: 5rem 1.5rem; }
.hh-recensies__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.hh-recensie { background-color: var(--hh-white); border-radius: 12px; padding: 1.75rem; box-shadow: 0 2px 16px rgba(7,50,32,0.07); }
.hh-recensie__sterren { color: var(--hh-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.hh-recensie__tekst { font-family: var(--hh-body); font-size: 0.9rem; color: var(--hh-text-m); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.hh-recensie__naam { font-family: var(--hh-body); font-size: 0.85rem; font-weight: 700; color: var(--hh-dark); margin: 0; }
/* TARIEVEN */
.hh-tarieven { background-color: var(--hh-dark); padding: 5rem 1.5rem; }
.hh-tarieven__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.hh-tarieven__col h2 { font-family: var(--hh-heading); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.hh-tarieven__sub { font-family: var(--hh-body); font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.hh-tarieven__list { display: flex; flex-direction: column; gap: 0.75rem; }
.hh-tarief { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background-color: rgba(255,255,255,0.06); border-radius: var(--hh-radius); border: 1px solid rgba(255,255,255,0.08); }
.hh-tarief span { font-family: var(--hh-body); font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.hh-tarief__prijs { font-family: var(--hh-heading); font-size: 1.05rem; font-weight: 700; color: var(--hh-gold) !important; }
.hh-tarieven__note { font-family: var(--hh-body); font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 1rem; }
.hh-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.hh-contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background-color: rgba(255,255,255,0.06); border-radius: var(--hh-radius); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: background-color 0.2s; }
.hh-contact-item:hover { background-color: rgba(255,255,255,0.1); text-decoration: none; }
.hh-contact-item__icon { width: 40px; height: 40px; background-color: rgba(7,167,99,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--hh-green); flex-shrink: 0; }
.hh-contact-item small { display: block; font-family: var(--hh-body); font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.15rem; }
.hh-contact-item strong { display: block; font-family: var(--hh-body); font-size: 0.95rem; color: #fff; font-weight: 500; }
/* WAAROM BLOEM */
.hh-waarom { display: none; }
.hh-waarom-bloem { background-color: #fff; padding: 5rem 1.5rem; }
.hh-waarom-bloem__inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.hh-waarom-bloem__tekst p { font-family: var(--hh-body); font-size: 1.1rem; color: var(--hh-text); line-height: 1.9; font-style: italic; margin-bottom: 1.5rem; }
.hh-waarom-bloem__afbeelding img { height: 320px; width: auto; object-fit: contain; }
/* FOOTER */
.hh-footer { background-color: var(--hh-dark); padding: 4rem 0 0; }
.hh-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hh-footer__logo { height: 50px; width: auto; opacity: 0.9; margin-bottom: 1rem; display: block; }
.hh-footer__brand p { font-family: var(--hh-body); font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 280px; margin: 0; }
.hh-footer__quote { font-family: var(--hh-body); font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; margin-top: 1rem !important; font-style: italic; }
.hh-footer__col h4 { font-family: var(--hh-heading); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.hh-footer__col ul { list-style: none; padding: 0; margin: 0; }
.hh-footer__col ul li { margin-bottom: 0.5rem; }
.hh-footer__col ul li a { font-family: var(--hh-body); font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.hh-footer__col ul li a:hover { color: var(--hh-gold); text-decoration: none; }
.hh-footer__bottom { max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem; }
.hh-footer__bottom p { font-family: var(--hh-body); font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: center; margin: 0; }
.hh-footer__bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.hh-footer__bottom a:hover { color: var(--hh-gold); }
/* RESPONSIVE */
@media (max-width: 1024px) {
    .hh-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hh-nav__menu { display: none; }
    .hh-nav__burger { display: flex; }
    .hh-nav--open .hh-nav__menu { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: 0; right: 0; background-color: var(--hh-dark); padding: 1rem 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.1); gap: 0; }
    .hh-nav--open .hh-nav__link { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; display: block; }
    .hh-nav--open .hh-nav__cta { margin: 1rem 0 0; }
    .hh-nav--open .hh-nav__sub { position: static; background: none; border: none; box-shadow: none; padding: 0; min-width: unset; display: block; }
    .hh-nav--open .hh-nav__sub a { padding: 0.75rem 0 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
}
@media (max-width: 768px) {
    .hh-over-co__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hh-over-co__portrait { margin: 0 auto; }
    .hh-over-co__buttons { justify-content: center; }
    .hh-kinder__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hh-tarieven__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hh-waarom-bloem__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hh-waarom-bloem__afbeelding { text-align: center; }
    .hh-waarom-bloem__afbeelding img { height: 140px; }
    .hh-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hh-footer__brand p { max-width: 100%; }
}

/* ===== HIDE THEME HEADER (dubbele navigatie) ===== */
.nav-wrapper,
.header,
.site-nav,
.mobile-nav {
    display: none !important;
}

/* ===== REMOVE ORANJE/ROZE GLOED (flexx-client-plugin) ===== */
.has-bg-color--purple,
.has-bg-color--black-to-purple,
.has-bg-color--purple-to-black {
    background: none !important;
}
a:focus,
button:focus,
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Remove any red/orange accent colors from flexx theme */
:root {
    --color-accent: #07a763 !important;
    --color-primary: #07a763 !important;
}

/* ===== OVERRIDE FLEXX THEME RODE/ORANJE KLEUREN ===== */
.has-bg-color--purple { background-color: var(--hh-dark) !important; }
.has-bg-color--black-to-purple { background: linear-gradient(180deg, transparent, var(--hh-dark) 50%) !important; }
.has-bg-color--purple-to-black { background: linear-gradient(0deg, transparent, var(--hh-dark) 50%) !important; }
.video-block .video-embed__play-button { background-color: var(--hh-green) !important; }
.video-block .video-embed__play-button:hover { background-color: var(--hh-green-h) !important; }
.gfield_radio .gchoice label:after { background: var(--hh-green) !important; }
a { color: var(--hh-green); }
a:hover { color: var(--hh-green-h); }

/* ===== RESET BODY MARGIN/PADDING ===== */
body { margin: 0 !important; padding: 0 !important; }
.site-wrap { margin: 0 !important; padding: 0 !important; }

/* =============================================
   DIENSTPAGINA STIJLEN
   ============================================= */

/* PAGE HERO */

/* DIENSTPAGINA */
.hh-page-hero { position: relative; height: 340px !important; min-height: 340px !important; margin-top: 72px !important; background-size: cover; background-position: center center; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.hh-page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,50,32,0.55) 0%, rgba(7,50,32,0.82) 100%); }
.hh-page-hero__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hh-page-hero__breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.hh-page-hero__breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.hh-page-hero__breadcrumb a:hover { color: #fff; }
.hh-page-hero__title { font-family: var(--hh-heading); font-size: 2.5rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem 0; line-height: 1.2; }
.hh-page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin: 0; }
.hh-dienst-intro { background: var(--hh-light); padding: 3rem 2rem; text-align: center; }
.hh-dienst-intro__inner { max-width: 800px; margin: 0 auto; }
.hh-dienst-intro blockquote { font-family: var(--hh-heading); font-size: 1.2rem; font-style: italic; color: var(--hh-dark); line-height: 1.7; margin: 0; padding: 0; border: none; }
.hh-dienst-content { background: #fff; padding: 4rem 2rem; }
.hh-dienst-content__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.hh-dienst-main h2 { font-family: var(--hh-heading); font-size: 1.6rem; font-weight: 700; color: var(--hh-dark); margin: 2rem 0 1rem 0; padding-bottom: 0.5rem; border-bottom: 2px solid var(--hh-green); }
.hh-dienst-main h2:first-child { margin-top: 0; }
.hh-dienst-main h3 { font-family: var(--hh-heading); font-size: 1.25rem; font-weight: 600; color: var(--hh-dark); margin: 1.5rem 0 0.75rem 0; }
.hh-dienst-main p { font-size: 1rem; line-height: 1.75; color: #3a3a3a; margin: 0 0 1.25rem 0; }
.hh-dienst-main strong { color: var(--hh-dark); }
.hh-dienst-main .hh-portret { float: right; margin: 0 0 1.5rem 2rem; width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid var(--hh-green); box-shadow: 0 4px 20px rgba(7,50,32,0.15); }
.hh-dienst-sidebar { position: sticky; top: 90px; }
.hh-sidebar-card { background: var(--hh-light); border-radius: 12px; padding: 1.75rem; margin-bottom: 1.5rem; border-left: 4px solid var(--hh-green); }
.hh-sidebar-card h4 { font-family: var(--hh-heading); font-size: 1.05rem; font-weight: 700; color: var(--hh-dark); margin: 0 0 1rem 0; }
.hh-sidebar-card p { font-size: 0.9rem; line-height: 1.6; color: #4a4a4a; margin: 0 0 1rem 0; }
.hh-sidebar-card .hh-btn { display: inline-block; background: var(--hh-green); color: #fff; font-size: 0.875rem; font-weight: 600; padding: 0.6rem 1.25rem; border-radius: 6px; text-decoration: none; transition: background-color 0.2s; }
.hh-sidebar-card .hh-btn:hover { background: var(--hh-green-h); color: #fff; text-decoration: none; }
.hh-sidebar-card .hh-btn--outline { background: transparent; border: 2px solid var(--hh-green); color: var(--hh-green); margin-top: 0.5rem; display: block; text-align: center; }
.hh-sidebar-card .hh-btn--outline:hover { background: var(--hh-green); color: #fff; }
.hh-sidebar-nav { list-style: none; margin: 0; padding: 0 !important; padding-left: 0 !important; }
.hh-sidebar-nav li { border-bottom: 1px solid rgba(7,50,32,0.1); list-style: none; padding-left: 0; }
.hh-sidebar-nav li:last-child { border-bottom: none; }
.hh-sidebar-nav a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0; font-size: 0.9rem; color: var(--hh-dark); text-decoration: none; transition: color 0.2s; }
.hh-sidebar-nav a:hover { color: var(--hh-green); text-decoration: none; }
.hh-sidebar-nav a::before { content: "→"; font-size: 0.75rem; color: var(--hh-green); flex-shrink: 0; }
.hh-kennisbank { background: var(--hh-dark); padding: 4rem 2rem; }
.hh-kennisbank__inner { max-width: 1280px; margin: 0 auto; }
.hh-kennisbank__header { margin-bottom: 2rem; }
.hh-kennisbank__title { font-family: var(--hh-heading); font-size: 1.75rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem 0; }
.hh-kennisbank__sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin: 0; }
.hh-kb-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 0; }
.hh-kb-tab { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.25rem; background: transparent; border: none; border-bottom: 3px solid transparent; color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: color 0.2s, border-color 0.2s; margin-bottom: -1px; font-family: var(--hh-body); }
.hh-kb-tab:hover { color: rgba(255,255,255,0.85); }
.hh-kb-tab--active { color: #fff; border-bottom-color: var(--hh-green); }
.hh-kb-tab__count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 6px; background: rgba(255,255,255,0.12); border-radius: 11px; font-size: 0.75rem; font-weight: 700; }
.hh-kb-tab--active .hh-kb-tab__count { background: var(--hh-green); color: #fff; }
.hh-kb-panel { display: none; }
.hh-kb-panel--active { display: block; }
.hh-kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
.hh-kb-card { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 1.125rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; text-decoration: none; transition: background 0.18s, border-color 0.18s, transform 0.18s; }
.hh-kb-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); text-decoration: none; }
.hh-kb-card__icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hh-kb-card--video .hh-kb-card__icon { background: var(--hh-green); color: #fff; }
.hh-kb-card--blog .hh-kb-card__icon { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.hh-kb-card__body { display: flex; flex-direction: column; gap: 0.25rem; }
.hh-kb-card__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hh-green); }
.hh-kb-card--blog .hh-kb-card__label { color: rgba(255,255,255,0.45); }
.hh-kb-card__title { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.45; }

.hh-cta-sectie h3, .hh-cta-sectie h2 { color: #fff !important; font-family: var(--hh-heading); }
.hh-cta-sectie p { color: rgba(255,255,255,0.9) !important; }
.hh-cta-sectie { background: linear-gradient(135deg, var(--hh-green) 0%, #056b3f 100%); padding: 4rem 2rem; }
.hh-cta-sectie__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hh-cta-sectie__title { font-family: var(--hh-heading); font-size: 2rem; font-weight: 700; color: #fff; margin: 0 0 1rem 0; line-height: 1.2; }
.hh-cta-sectie__text { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin: 0 0 2rem 0; }
.hh-cta-sectie__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hh-cta-sectie__btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--hh-green); font-size: 0.95rem; font-weight: 700; padding: 0.75rem 1.75rem; border-radius: 6px; text-decoration: none; transition: background-color 0.2s; }
.hh-cta-sectie__btn-primary:hover { background: var(--hh-gold); color: var(--hh-dark); text-decoration: none; }
.hh-cta-sectie__btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #fff; font-size: 0.95rem; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 6px; border: 2px solid rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.2s; }
.hh-cta-sectie__btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.hh-cta-sectie__contact { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 2rem; }
.hh-cta-sectie__contact-title { font-family: var(--hh-heading); font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0 0 1.25rem 0; }
.hh-cta-contact-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.hh-cta-contact-item a { font-size: 1rem; color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 500; }
.hh-cta-contact-item a:hover { color: var(--hh-gold); text-decoration: none; }
.hh-cta-contact-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
@media (max-width: 900px) {
    .hh-dienst-content__inner { grid-template-columns: 1fr; }
    .hh-dienst-sidebar { position: static; }
    .hh-cta-sectie__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hh-page-hero { height: 260px; }
}
@media (max-width: 600px) {
    .hh-page-hero__title { font-size: 1.75rem; }
}

/* ============================================================
   KENNISBANK ARCHIEF PAGINA
   ============================================================ */
.hh-kennisbank-archief { background: var(--hh-dark); padding: 4rem 2rem 5rem; }
.hh-kennisbank-archief__inner { max-width: 1280px; margin: 0 auto; }

/* Kaarten met thumbnail in archief */
.hh-kb-card--video .hh-kb-card__thumb,
.hh-kb-card--blog .hh-kb-card__thumb { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; border-radius: 6px 6px 0 0; flex-shrink: 0; }
.hh-kb-card--video,
.hh-kb-card--blog { flex-direction: column; padding: 0; overflow: hidden; }
.hh-kb-card--video .hh-kb-card__thumb img,
.hh-kb-card--blog .hh-kb-card__thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hh-kb-card:hover .hh-kb-card__thumb img { transform: scale(1.04); }
.hh-kb-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s; }
.hh-kb-card:hover .hh-kb-card__play { background: var(--hh-green); }
.hh-kb-card__type { position: absolute; top: 10px; left: 10px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--hh-green); color: #fff; padding: 3px 8px; border-radius: 3px; }
.hh-kb-card__type--blog { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.hh-kb-card--video .hh-kb-card__body,
.hh-kb-card--blog .hh-kb-card__body { padding: 14px 18px 16px; display: flex; flex-direction: column; gap: 0.2rem; }
.hh-kb-card__cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hh-green); }
.hh-kb-card--video .hh-kb-card__body h3,
.hh-kb-card--blog .hh-kb-card__body h3 { font-family: var(--hh-heading); font-size: 1.05rem; font-weight: 700; color: var(--hh-dark); line-height: 1.35; margin: 0; }

/* ============================================================
   KENNISBANK SINGLE PAGINA
   ============================================================ */
.hh-page-hero--compact { min-height: 180px !important; }
.hh-page-hero--compact .hh-page-hero__title { font-size: clamp(1.4rem, 3vw, 2rem); }

.hh-kb-single { background: #fff; padding: 3rem 2rem 4rem; }
.hh-kb-single__inner { max-width: 860px; margin: 0 auto; }

.hh-kb-single__back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--hh-green); font-size: 0.875rem; font-weight: 600; text-decoration: none; margin-bottom: 2rem; transition: gap 0.2s; }
.hh-kb-single__back:hover { gap: 0.6rem; text-decoration: none; }

.hh-kb-single__video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 10px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.hh-kb-single__video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.hh-kb-single__featured-img { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 2.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.hh-kb-single__featured-img img { width: 100%; height: auto; display: block; }

.hh-kb-single__content { color: #3a3a3a; line-height: 1.8; font-size: 1.05rem; }
.hh-kb-single__content p { margin: 0 0 1.25rem; }
.hh-kb-single__content strong { color: var(--hh-dark); }

.hh-kb-single__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e8e8e8; }
.hh-kb-single__back-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--hh-green); color: #fff; padding: 0.75rem 1.5rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.hh-kb-single__back-btn:hover { background: var(--hh-dark); transform: translateX(-3px); text-decoration: none; color: #fff; }

/* Responsive kennisbank */
@media (max-width: 900px) {
  .hh-kb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .hh-kb-grid { grid-template-columns: 1fr; }
  .hh-kb-single { padding: 2rem 1.25rem 3rem; }
}

/* =============================================
   KENNISBANK SINGLE PAGINA
   ============================================= */
.hh-page-hero--small {
    min-height: 280px !important;
    height: 280px !important;
}

.hh-kb-single__type-badge {
    display: inline-block;
    background: var(--hh-green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    font-family: var(--hh-body);
}

.hh-kb-single {
    background: #fff;
    padding: 56px 0 72px;
}

.hh-kb-single__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.hh-kb-single__video-wrap {
    margin-bottom: 40px;
}

.hh-kb-single__video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hh-kb-single__video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hh-kb-single__content {
    font-family: var(--hh-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3a2e;
}

.hh-kb-single__content p {
    margin-bottom: 1.4em;
}

.hh-kb-single__content h2,
.hh-kb-single__content h3 {
    font-family: var(--hh-heading);
    color: var(--hh-dark);
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.hh-kb-single__back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e8ede9;
}

.hh-kb-single__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hh-green);
    font-family: var(--hh-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.hh-kb-single__back-btn:hover {
    gap: 12px;
    color: var(--hh-dark);
}

/* =============================================
   KENNISBANK ARCHIEF KAARTEN
   ============================================= */
.hh-kennisbank {
    background: #fff;
    padding: 64px 0 80px;
}

.hh-kennisbank__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hh-kennisbank__header {
    text-align: center;
    margin-bottom: 48px;
}

.hh-kennisbank__title {
    font-family: var(--hh-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--hh-dark);
    margin-bottom: 12px;
}

.hh-kennisbank__sub {
    font-family: var(--hh-body);
    font-size: 1.05rem;
    color: #5a6b5c;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* TABS */
.hh-kb-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e8ede9;
    padding-bottom: 0;
}

.hh-kb-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--hh-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #7a8c7c;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.hh-kb-tab:hover {
    color: var(--hh-dark);
}

.hh-kb-tab--active {
    color: var(--hh-green);
    border-bottom-color: var(--hh-green);
}

.hh-kb-tab__count {
    background: var(--hh-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}

.hh-kb-tab:not(.hh-kb-tab--active) .hh-kb-tab__count {
    background: #c8d8ca;
    color: #5a6b5c;
}

/* PANELS */
.hh-kb-panel {
    display: none;
}

.hh-kb-panel--active {
    display: block;
}

/* GRID */
.hh-kb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* KAARTEN */
.hh-kb-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8ede9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hh-kb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.hh-kb-card__thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #1a2e1c;
}

.hh-kb-card__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hh-kb-card:hover .hh-kb-card__thumb img {
    transform: scale(1.04);
}

.hh-kb-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-green);
    transition: transform 0.2s ease, background 0.2s;
}

.hh-kb-card:hover .hh-kb-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.hh-kb-card__type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--hh-green);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: var(--hh-body);
}

.hh-kb-card__type--blog {
    background: #2d6a4f;
}

.hh-kb-card__body {
    padding: 14px 18px 16px;
}

.hh-kb-card__cat {
    display: block;
    font-family: var(--hh-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--hh-green);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hh-kb-card__body h3 {
    font-family: var(--hh-heading);
    font-size: 1.05rem;
    color: var(--hh-dark);
    line-height: 1.35;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 900px) {
    .hh-kb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hh-kb-grid {
        grid-template-columns: 1fr;
    }
    .hh-kb-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* =============================================
   KENNISBANK SINGLE - VIDEO THUMBNAIL
   ============================================= */
.hh-kb-single__video-thumb-wrap {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hh-kb-single__video-thumb-link {
    display: block;
    position: relative;
    text-decoration: none;
}
.hh-kb-single__video-thumb-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hh-kb-single__video-thumb-link:hover .hh-kb-single__video-thumb-img {
    transform: scale(1.02);
}
.hh-kb-single__video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.hh-kb-single__video-thumb-link:hover .hh-kb-single__video-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
}
.hh-kb-single__video-yt-label {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.02em;
}

/* Reduceer ruimte boven content sectie */
.hh-kb-single {
    padding-top: 40px !important;
}

/* =============================================
   KENNISBANK SINGLE - 2-KOLOM LAYOUT MET SIDEBAR
   ============================================= */
.hh-kb-single__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}
.hh-kb-single__main { min-width: 0; }
.hh-kb-single__sidebar { position: sticky; top: 100px; }
.hh-kb-sidebar__widget { background: #f7f9f7; border: 1px solid #e0e8e0; border-radius: 8px; padding: 20px 22px; margin-bottom: 24px; }
.hh-kb-sidebar__title { font-family: var(--hh-heading); font-size: 0.95rem; font-weight: 700; color: var(--hh-dark); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--hh-green); }
.hh-kb-sidebar__cat-list { list-style: none; margin: 0; padding: 0; }
.hh-kb-sidebar__cat-item { border-bottom: 1px solid #e8ede8; }
.hh-kb-sidebar__cat-item:last-child { border-bottom: none; }
.hh-kb-sidebar__cat-link { display: flex; align-items: center; gap: 8px; padding: 9px 4px; color: #3a3a3a; font-size: 0.875rem; text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.hh-kb-sidebar__cat-link:hover { color: var(--hh-green); padding-left: 6px; text-decoration: none; }
.hh-kb-sidebar__cat-arrow { color: var(--hh-green); font-size: 1rem; line-height: 1; flex-shrink: 0; }
.hh-kb-sidebar__cat-item--active .hh-kb-sidebar__cat-link { color: var(--hh-green); font-weight: 700; }
.hh-kb-sidebar__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hh-kb-sidebar__tag { display: inline-block; background: #fff; border: 1px solid #c8d8c8; color: #3a3a3a; font-size: 0.78rem; font-weight: 500; padding: 5px 10px; border-radius: 4px; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.hh-kb-sidebar__tag:hover { background: var(--hh-green); color: #fff; border-color: var(--hh-green); text-decoration: none; }
.hh-kb-sidebar__tag--active { background: var(--hh-green); color: #fff; border-color: var(--hh-green); font-weight: 700; }
.hh-kb-sidebar__widget--contact { background: var(--hh-dark); border-color: var(--hh-dark); }
.hh-kb-sidebar__widget--contact .hh-kb-sidebar__title { color: #fff; border-bottom-color: var(--hh-green); }
.hh-kb-sidebar__widget--contact p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.6; margin: 0 0 14px; }
.hh-kb-sidebar__contact-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--hh-green); color: #fff; padding: 10px 18px; border-radius: 6px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background 0.2s; width: 100%; justify-content: center; }
.hh-kb-sidebar__contact-btn:hover { background: #2d6a4f; color: #fff; text-decoration: none; }
.hh-kb-single__back { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e8e8e8; }
.hh-kb-single__back-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--hh-green); color: #fff; padding: 0.75rem 1.5rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.hh-kb-single__back-btn:hover { background: var(--hh-dark); transform: translateX(-3px); text-decoration: none; color: #fff; }
@media (max-width: 900px) {
    .hh-kb-single__layout { grid-template-columns: 1fr; padding: 0 1.25rem; gap: 30px; }
    .hh-kb-single__sidebar { position: static; }
}
@media (max-width: 600px) {
    .hh-kb-single__layout { padding: 0 10px; }
}

/* =============================================
   KENNISBANK ARCHIEF - FILTER BANNER
   ============================================= */
.hh-kb-filter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f7f0;
    border: 1px solid #c8dcc8;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.hh-kb-filter-banner__text {
    font-size: 0.9rem;
    color: #3a3a3a;
}
.hh-kb-filter-banner__text strong {
    color: var(--hh-dark);
}
.hh-kb-filter-banner__clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hh-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.hh-kb-filter-banner__clear:hover {
    background: var(--hh-dark);
    color: #fff;
    text-decoration: none;
}

/* CTA sectie op kennisbank single pagina's */
.hh-cta { background: #f0f7f2; padding: 3.5rem 2rem; }
.hh-cta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.hh-cta__inner h2 { font-family: var(--hh-heading); font-size: 1.6rem; font-weight: 700; color: var(--hh-dark); margin: 0 0 0.75rem 0; }
.hh-cta__inner p { font-size: 1rem; color: #555; margin: 0 0 1.75rem 0; line-height: 1.7; }
.hh-cta__buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hh-cta__btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 6px; text-decoration: none; transition: all 0.2s; }
.hh-cta__btn--primary { background: var(--hh-green); color: #fff; }
.hh-cta__btn--primary:hover { background: var(--hh-dark); color: #fff; text-decoration: none; }
.hh-cta__btn--secondary { background: transparent; color: var(--hh-green); border: 2px solid var(--hh-green); }
.hh-cta__btn--secondary:hover { background: var(--hh-green); color: #fff; text-decoration: none; }
/* Footer copy/bottom row */
.hh-footer__copy { max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem; }
.hh-footer__copy p { font-family: var(--hh-body); font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: center; margin: 0; }
.hh-footer__copy a { color: rgba(255,255,255,0.6); text-decoration: none; }
.hh-footer__copy a:hover { color: var(--hh-gold); }

/* h6 headings in kennisbank single content */
.hh-kb-single__content h6 {
    font-family: var(--hh-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hh-dark);
    margin-top: 1.8em;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid var(--hh-primary);
}

.hh-kb-single__content h2 {
    font-family: var(--hh-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--hh-dark);
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.hh-kb-single__content h4,
.hh-kb-single__content h5 {
    font-family: var(--hh-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hh-dark);
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

/* Blog card zonder afbeelding - text-only stijl */
.hh-kb-card--text {
    display: flex;
    flex-direction: column;
}

.hh-kb-card--text .hh-kb-card__body {
    flex: 1;
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hh-kb-card--text .hh-kb-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a2a;
    line-height: 1.35;
    margin: 0 0 0.4rem;
}

.hh-kb-card__intro {
    font-size: 0.875rem;
    color: #4a6b5a;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hh-kb-card--text:hover .hh-kb-card__body h3 {
    color: #1a7a4a;
}

/* Video card - horizontale layout met kleine afbeelding */
.hh-kb-card--horizontal {
    flex-direction: row !important;
    align-items: stretch;
    padding: 0 !important;
    overflow: hidden;
}

.hh-kb-card__thumb-sm {
    position: relative;
    width: 160px;
    min-width: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px 0 0 6px;
    min-height: 130px;
}

.hh-kb-card__thumb-sm img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hh-kb-card--horizontal:hover .hh-kb-card__thumb-sm img {
    transform: scale(1.05);
}

.hh-kb-card__thumb-sm .hh-kb-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.hh-kb-card--horizontal:hover .hh-kb-card__play {
    background: var(--hh-green);
}

.hh-kb-card__thumb-sm .hh-kb-card__type {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--hh-green);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
}

.hh-kb-card--horizontal .hh-kb-card__body {
    flex: 1;
    padding: 16px 18px 16px !important;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center;
}

.hh-kb-card--horizontal .hh-kb-card__body h3 {
    font-size: 0.95rem !important;
    font-weight: 700;
    color: var(--hh-dark);
    line-height: 1.35;
    margin: 0 0 0.3rem !important;
}

.hh-kb-card--horizontal:hover .hh-kb-card__body h3 {
    color: var(--hh-green);
}

/* Grid aanpassen voor horizontale cards */
#hh-kb-videos .hh-kb-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .hh-kb-card--horizontal {
        flex-direction: column !important;
    }
    .hh-kb-card__thumb-sm {
        width: 100%;
        min-width: unset;
        height: 180px;
        border-radius: 6px 6px 0 0;
    }
    #hh-kb-videos .hh-kb-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTACT PAGINA
   ============================================================ */
.hh-contact-sectie { padding: 5rem 0; background: #fff; }
.hh-contact-sectie__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hh-contact-info h2 { font-family: var(--hh-heading); font-size: clamp(1.6rem,2.5vw,2.2rem); color: var(--hh-dark); margin-bottom: 1rem; }
.hh-contact-intro { font-size: 1.05rem; color: #555; margin-bottom: 2rem; line-height: 1.7; }
.hh-contact-blokken { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.hh-contact-blok { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: #f8f6f2; border-radius: 8px; }
.hh-contact-blok__icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--hh-green); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.hh-contact-blok__tekst h4 { font-family: var(--hh-heading); font-size: 0.9rem; font-weight: 700; color: var(--hh-dark); margin: 0 0 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hh-contact-blok__tekst a, .hh-contact-blok__tekst p { font-size: 0.95rem; color: #555; margin: 0; text-decoration: none; }
.hh-contact-blok__tekst a:hover { color: var(--hh-green); }
.hh-contact-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hh-contact-portret { position: relative; }
.hh-contact-portret img { width: 100%; border-radius: 12px; object-fit: cover; max-height: 500px; }
.hh-contact-portret__caption { margin-top: 1rem; text-align: center; }
.hh-contact-portret__caption strong { display: block; font-family: var(--hh-heading); font-size: 1.1rem; color: var(--hh-dark); }
.hh-contact-portret__caption span { font-size: 0.9rem; color: #777; }
@media (max-width: 768px) {
    .hh-contact-sectie__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hh-contact-blokken { grid-template-columns: 1fr; }
}

/* ============================================================
   TARIEF PAGINA
   ============================================================ */
.hh-tarief-sectie { padding: 5rem 0; background: #f8f6f2; }
.hh-tarief-sectie__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.hh-tarief-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.hh-tarief-intro h2 { font-family: var(--hh-heading); font-size: clamp(1.6rem,2.5vw,2.2rem); color: var(--hh-dark); margin-bottom: 1rem; }
.hh-tarief-intro p { color: #555; font-size: 1.05rem; line-height: 1.7; }
.hh-tarief-kaarten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.hh-tarief-kaart { background: #fff; border-radius: 12px; padding: 2rem; border: 1px solid #e8e4dc; display: flex; flex-direction: column; gap: 1.25rem; }
.hh-tarief-kaart--featured { background: var(--hh-dark); border-color: var(--hh-dark); }
.hh-tarief-kaart--featured h3 { color: #fff !important; } .hh-tarief-kaart--featured p { color: rgba(255,255,255,0.75) !important; }
.hh-tarief-kaart--featured .hh-tarief-kaart__bedrag { color: var(--hh-gold) !important; }
.hh-tarief-kaart--featured .hh-tarief-kaart__duur { color: rgba(255,255,255,0.6); }
.hh-tarief-kaart--featured .hh-tarief-kaart__lijst li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.hh-tarief-kaart__header h3 { font-family: var(--hh-heading); font-size: 1.3rem; color: var(--hh-dark); margin: 0 0 0.25rem; }
.hh-tarief-kaart__header p { font-size: 0.9rem; color: #777; margin: 0; }
.hh-tarief-kaart__prijs { display: flex; align-items: baseline; gap: 0.75rem; }
.hh-tarief-kaart__bedrag { font-family: var(--hh-heading); font-size: 2.5rem; font-weight: 800; color: var(--hh-green); }
.hh-tarief-kaart__duur { font-size: 0.9rem; color: #999; }
.hh-tarief-kaart__lijst { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.hh-tarief-kaart__lijst li { font-size: 0.95rem; color: #555; padding: 0.5rem 0; border-bottom: 1px solid #f0ece4; padding-left: 1.25rem; position: relative; }
.hh-tarief-kaart__lijst li::before { content: '✓'; position: absolute; left: 0; color: var(--hh-green); font-weight: 700; }
.hh-tarief-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hh-tarief-info-blok { background: #fff; border-radius: 10px; padding: 1.5rem; border: 1px solid #e8e4dc; }
.hh-tarief-info-blok h4 { font-family: var(--hh-heading); font-size: 1rem; color: var(--hh-dark); margin: 0 0 0.75rem; }
.hh-tarief-info-blok p { font-size: 0.9rem; color: #666; line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
    .hh-tarief-kaarten { grid-template-columns: 1fr; }
    .hh-tarief-info { grid-template-columns: 1fr; }
}

/* ============================================================
   EERSTE BEZOEK - STAPPEN SECTIE
   ============================================================ */
.hh-stappen-sectie { padding: 5rem 0; background: #fff; }
.hh-stappen-sectie__inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.hh-stappen-sectie__header { text-align: center; margin-bottom: 3rem; }
.hh-stappen-sectie__header h2 { font-family: var(--hh-heading); font-size: clamp(1.6rem,2.5vw,2.2rem); color: var(--hh-dark); margin-bottom: 0.75rem; }
.hh-stappen-sectie__header p { color: #555; font-size: 1.05rem; }
.hh-stappen { display: flex; flex-direction: column; gap: 0; }
.hh-stap { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid #f0ece4; }
.hh-stap:last-child { border-bottom: none; }
.hh-stap__nummer { flex-shrink: 0; width: 56px; height: 56px; background: var(--hh-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--hh-heading); font-size: 1.1rem; font-weight: 800; }
.hh-stap__inhoud h3 { font-family: var(--hh-heading); font-size: 1.2rem; color: var(--hh-dark); margin: 0 0 0.5rem; }
.hh-stap__inhoud p { color: #555; font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ============================================================
   OVER MIJ - BIO SECTIE
   ============================================================ */
.hh-bio-sectie { padding: 5rem 0; background: #fff; }
.hh-bio-sectie__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.hh-bio-portret img { width: 100%; border-radius: 12px; object-fit: cover; }
.hh-bio-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.hh-bio-stat { text-align: center; padding: 1.25rem 0.75rem; background: #f8f6f2; border-radius: 8px; }
.hh-bio-stat__getal { display: block; font-family: var(--hh-heading); font-size: 1.8rem; font-weight: 800; color: var(--hh-green); }
.hh-bio-stat__label { display: block; font-size: 0.8rem; color: #777; margin-top: 0.25rem; }
@media (max-width: 900px) {
    .hh-bio-sectie__inner { grid-template-columns: 1fr; }
    .hh-contact-sectie__inner { grid-template-columns: 1fr; }
}

/* Witte knoppen voor gebruik op donkere/groene achtergrond */
.hh-btn--white { background: #fff; color: var(--hh-green); border-color: #fff; }
.hh-btn--white:hover { background: var(--hh-gold); color: var(--hh-dark); border-color: var(--hh-gold); text-decoration: none; }
.hh-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.hh-btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; text-decoration: none; }

/* -------------------------------------------------------
   Kennisbank CTA sectie (op dienst/homeopathie pagina)
   ------------------------------------------------------- */
.hh-kennisbank-cta { background: var(--hh-light); padding: 4rem 2rem; margin-top: 4rem; }
.hh-kennisbank-cta__inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; background: #fff; border-radius: 16px; padding: 3rem; box-shadow: var(--hh-shadow); }
.hh-kennisbank-cta__icon { flex-shrink: 0; width: 80px; height: 80px; background: rgba(7,167,99,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hh-kennisbank-cta__content h2 { font-family: var(--hh-heading); font-size: 1.8rem; font-weight: 700; color: var(--hh-dark); margin-bottom: 0.75rem; }
.hh-kennisbank-cta__content p { color: var(--hh-text-m); line-height: 1.7; margin-bottom: 1.5rem; }
@media (max-width: 600px) {
    .hh-kennisbank-cta__inner { flex-direction: column; gap: 1.5rem; padding: 2rem; text-align: center; }
}

/* Fix: sidebar nav ul padding - de ul is een kind van .hh-sidebar-nav div */
.hh-sidebar-nav ul { list-style: none !important; padding: 0 !important; padding-left: 0 !important; margin: 0 !important; }
.hh-sidebar-nav ul li { list-style: none !important; padding-left: 0 !important; margin-left: 0 !important; }
.hh-sidebar-nav ul li a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0; font-size: 0.9rem; color: var(--hh-dark); text-decoration: none; transition: color 0.2s; }
.hh-sidebar-nav ul li a:hover { color: var(--hh-green); }
.hh-sidebar-nav ul li a::before { content: "→"; font-size: 0.75rem; color: var(--hh-green); flex-shrink: 0; }

/* Voorbereiding sectie - lichtgrijze achtergrond */
.hh-dienst-content--alt { background: #f5f5f3; }
.hh-dienst-content--alt .hh-sidebar-card { background: #fff; }

/* Fix: tarief kaarten - knop altijd onderaan via flex */
.hh-tarief-kaart { display: flex; flex-direction: column; }
.hh-tarief-kaart .hh-tarief-kaart__lijst { flex: 1; }
.hh-tarief-kaart .hh-btn { margin-top: auto; display: block; text-align: center; }

/* Fix: tarief kaart outline buttons op witte achtergrond */
.hh-tarief-kaart:not(.hh-tarief-kaart--featured) .hh-btn--outline {
    color: var(--hh-green);
    border-color: var(--hh-green);
    background: transparent;
}
.hh-tarief-kaart:not(.hh-tarief-kaart--featured) .hh-btn--outline:hover {
    background: var(--hh-green);
    color: #fff;
    border-color: var(--hh-green);
}

/* Elfsight reviews widget spacing */
div.eapps-widget {
    position: relative;
    padding-bottom: 50px;
}

/* ============================================================
   KLASSIEKE HOMEOPATHIE INTRO SECTIE (homepage)
   ============================================================ */
.hh-klassiek-intro {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 2rem;
    text-align: center;
    overflow: hidden;
}
.hh-klassiek-intro__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 50, 32, 0.72);
    z-index: 0;
}
.hh-klassiek-intro__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.hh-klassiek-intro__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--hh-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hh-gold);
    margin: 0 0 22px;
}
.hh-klassiek-intro__line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--hh-gold);
    opacity: 0.7;
}
.hh-klassiek-intro__title {
    font-family: var(--hh-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 28px;
}
.hh-klassiek-intro__title em {
    font-style: italic;
    color: var(--hh-gold);
    font-weight: 400;
}
.hh-klassiek-intro__text {
    color: #ffffff;
    font-family: var(--hh-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 36px;
}
.hh-klassiek-intro__text p {
    color: #ffffff !important;
    margin: 0 0 1.1em;
}
.hh-klassiek-intro__text p:last-child {
    margin-bottom: 0;
}
.hh-klassiek-intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hh-green);
    color: #fff;
    font-family: var(--hh-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.hh-klassiek-intro__btn:hover {
    background: var(--hh-green-h);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}
.hh-klassiek-intro__btn span {
    font-size: 1.2rem;
    line-height: 1;
}
@media (max-width: 768px) {
    .hh-klassiek-intro {
        padding: 70px 1.5rem;
        background-attachment: scroll;
    }
    .hh-klassiek-intro__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* hh-kinder gecentreerd (zonder afbeelding) */
.hh-kinder--centered .hh-kinder__inner {
    display: block;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.hh-kinder--centered .hh-kinder__content {
    max-width: 100%;
}
.hh-kinder--centered h2,
.hh-kinder--centered p {
    text-align: center;
}
.hh-kinder--centered .hh-btn {
    display: inline-block;
}

/* ============================================================
   TARIEVEN + CONTACT SECTIE (homepage, boven footer)
   Footer = var(--hh-dark) = #073220 → deze sectie iets lichter: #0d4a2a
   ============================================================ */
.hh-tarieven-contact {
    background-color: var(--hh-dark);
    padding: 80px 0;
}
.hh-tarieven-contact__inner {
    display: grid;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
/* LABEL */
.hh-tarieven-contact__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--hh-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hh-gold);
    margin: 0 0 18px;
}
.hh-tarieven-contact__line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--hh-gold);
    opacity: 0.7;
}
/* TITEL */
.hh-tarieven-contact__title {
    font-family: var(--hh-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 36px;
    line-height: 1.2;
}
/* TARIEVEN LIJST */
.hh-tarieven-contact__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hh-tarieven-contact__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    gap: 16px;
}
.hh-tarieven-contact__item-name {
    font-family: var(--hh-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
}
.hh-tarieven-contact__item-price {
    font-family: var(--hh-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--hh-gold);
    white-space: nowrap;
}
/* NOTE */
.hh-tarieven-contact__note {
    font-family: var(--hh-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6) !important;
    margin: 0 0 28px;
    line-height: 1.6;
}
/* KNOPPEN */
.hh-tarieven-contact__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hh-btn--outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--hh-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
}
.hh-btn--outline-white:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}
/* CONTACT RECHTS */
.hh-tarieven-contact__contact-title {
    font-family: var(--hh-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.3;
}
.hh-tarieven-contact__contact-title em {
    font-style: italic;
    color: var(--hh-gold);
}
.hh-tarieven-contact__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hh-tarieven-contact__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hh-tarieven-contact__contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(7,167,99,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hh-green);
}
.hh-tarieven-contact__contact-label {
    display: block;
    font-family: var(--hh-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}
.hh-tarieven-contact__contact-value {
    font-family: var(--hh-body);
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.hh-tarieven-contact__contact-value:hover {
    color: var(--hh-gold);
    text-decoration: none;
}
@media (max-width: 900px) {
    .hh-tarieven-contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Sidebar card portretfoto - afgeronde hoeken en ruimte eronder */
.hh-sidebar-card__img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 1.25rem;
    object-fit: cover;
}
