/**
 * Hennie's Haarsnijderij — Custom homepage stylesheet
 *
 * Vintage barbershop-design (Peaky-style):
 *  - Zwarte secties + cream papier-secties met SVG-noise textuur
 *  - Goud/yellow accenten (#D4A93C / #FFD465)
 *  - Display-font: Rye   (western wood-block)
 *  - Sub-display:     Anton (condensed bold sans — Jukotha uit moodboard)
 *  - Body:           Mukta
 *
 * Alleen actief op de homepage (zie functions.php is_front_page check).
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================
   Op body-niveau gescoped (i.p.v. op .hennie-home <main>) zodat de
   <footer> — die buiten <main> staat — óók toegang heeft tot de
   variabelen, anders vallen hover-kleuren in de footer terug op de
   parent-kleur en lijkt het alsof de tekst verdwijnt.
*/
body.hennie-front,
.hennie-home {
    /* Kleuren */
    --hh-black: #0F0F0F;
    --hh-black-2: #1a1a1a;
    --hh-black-3: #2a2521;
    --hh-cream: #F2EDE3;
    --hh-cream-2: #E8E2D2;
    --hh-cream-3: #d9d2bf;
    --hh-gold: #D4A93C;
    --hh-gold-soft: #E6C36A;
    --hh-gold-bright: #FFD465;
    --hh-gold-cream: #FFE6A7;
    --hh-brown: #A07866;
    --hh-text: #1a1a1a;
    --hh-text-muted: #5a5448;
    --hh-text-light: rgba(255, 255, 255, .85);
    --hh-text-light-2: rgba(255, 255, 255, .55);

    /* Typography */
    --hh-font-display: 'Rye', 'Playfair Display', Georgia, serif;
    --hh-font-deco:    'Anton', 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    --hh-font-body:    'Mukta', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --hh-radius: 14px;
    --hh-radius-sm: 8px;
    --hh-container: 1140px;
}

.hennie-home {
    font-family: var(--hh-font-body);
    color: var(--hh-text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hennie-home *,
.hennie-home *::before,
.hennie-home *::after { box-sizing: border-box; }

/* GLOBAL ICON SIZE-CAP — voorkomt dat inline-SVG zonder width/height
   z'n parent volledig vult (TenWeb-stylesheet zet svg:not([width])
   namelijk op width:100%, wat onze hero-icons enorm maakte). */
.hennie-home .hh-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
}
.hennie-home svg.hh-icon { vertical-align: middle; }

.hh-container {
    width: 100%;
    max-width: var(--hh-container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   PAPIER-TEXTUUR (cream bg) + DARK SECTIE
   ============================================================ */
/* Een subtiele SVG-noise als data-URI — geen extra request nodig */
.hh-paper {
    background-color: var(--hh-cream);
    background-image:
        radial-gradient(rgba(0, 0, 0, .05) 1px, transparent 1px),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 4px 4px, 200px 200px;
    background-blend-mode: multiply, normal;
    color: var(--hh-text);
    position: relative;
}

.hh-dark {
    background-color: var(--hh-black);
    color: var(--hh-text-light);
    position: relative;
}
/* Lichte noise op donkere secties — nét zichtbaar voor textuur */
.hh-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
    opacity: .5;
}
.hh-dark > * { position: relative; z-index: 1; }

.hh-section { padding: 112px 0; }
@media (max-width: 720px) { .hh-section { padding: 64px 0; } }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
.hh-h2 {
    font-family: var(--hh-font-display);
    font-weight: 400;
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--hh-text);
    margin: 0 0 18px;
    text-transform: none;
}
.hh-h2--display {
    font-family: var(--hh-font-display);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .04);
}

/* Goud-onderstreping zoals in moodboard onder "About the project" */
.hh-h2-underline {
    background-image: linear-gradient(transparent 70%, rgba(212, 169, 60, .55) 70%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0 4px;
}

.hh-section-head {
    margin-bottom: 56px;
    max-width: 760px;
}
.hh-section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hh-section-head--invert .hh-h2,
.hh-section-head--invert .hh-section-lead {
    color: #fff;
}

.hh-eyebrow {
    font-family: var(--hh-font-deco);
    font-size: 13px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--hh-gold);
    margin: 0 0 16px;
    font-weight: 400;
}

.hh-section-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--hh-text-muted);
    margin: 0 0 16px;
    max-width: 640px;
}
.hh-section-head--center .hh-section-lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   TAGBAR (top, zwart)
   ============================================================ */
.hh-tagbar {
    background: var(--hh-black);
    color: var(--hh-text-light-2);
    border-bottom: 1px solid #1f1f1f;
}
.hh-tagbar-inner {
    max-width: var(--hh-container);
    margin: 0 auto;
    padding: 11px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--hh-font-deco);
    font-size: 11px;
    letter-spacing: .2em;
}
/* Hogere specificiteit + !important om Elementor/TenWeb default span-
   kleuren te overrulen die anders zwart op zwart renderen.
   Zijkantitems krijgen een rustige cream-tint, midden blijft fel goud. */
.hh-tagbar .hh-tag-item {
    color: rgba(245, 232, 210, .85) !important;
}
.hh-tagbar .hh-tag-item--center {
    color: var(--hh-gold-bright) !important;
}
@media (max-width: 720px) {
    .hh-tagbar-inner { font-size: 10px; padding: 9px 18px; }
    .hh-tag-item:first-child,
    .hh-tag-item:last-child { display: none; }
    .hh-tag-item--center { display: block !important; flex: 1; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hh-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
    background: var(--hh-black);
}

.hh-hero-bg {
    position: absolute; inset: 0;
    /* Donkere, sfeervolle vintage barbershop-foto (passende stijl) */
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&q=85&w=2200');
    background-size: cover;
    background-position: center 50%;
    filter: grayscale(.4) contrast(1.1) brightness(.45) sepia(.15);
    animation: hh-zoom 30s ease-in-out infinite alternate;
}
@keyframes hh-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
.hh-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 60%, transparent 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.85) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.5) 0%, transparent 30%, rgba(0,0,0,.7) 100%);
    pointer-events: none;
}

/* Top nav-balk in hero */
.hh-hero-nav {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 32px;
    gap: 24px;
}
.hh-hero-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hh-hero-nav-left { justify-content: flex-end; }
.hh-hero-nav-right { justify-content: flex-start; }
.hh-hero-nav a {
    color: rgba(255,255,255,.9);
    font-family: var(--hh-font-deco);
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease;
}
.hh-hero-nav a:hover { color: var(--hh-gold-bright); }
.hh-nav-cta {
    border: 1px solid var(--hh-gold);
    padding: 10px 18px;
    border-radius: 4px;
    color: var(--hh-gold-bright) !important;
    font-size: 13px;
}
.hh-nav-cta:hover {
    background: var(--hh-gold);
    color: #0a0a0a !important;
}
.hh-hero-logo img {
    height: 88px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

@media (max-width: 860px) {
    .hh-hero-nav { grid-template-columns: auto auto; padding: 16px 20px; }
    .hh-hero-nav-left { display: none; }
    .hh-hero-nav-right { gap: 14px; }
    .hh-hero-nav-right li:not(:last-child) { display: none; }
    .hh-hero-nav a { font-size: 13px; }
    .hh-hero-logo img { height: 64px; }
}

/* Op mobiel + tablet (≤960px) de 'Boek nu' nav-CTA verbergen.
   De hero heeft direct eronder al een prominente 'Online afspraak
   maken' knop, dus deze CTA is dubbel-op en breekt de nav-layout
   op smalle schermen. Op desktop (>960px) blijft hij gewoon staan. */
@media (max-width: 960px) {
    /* Verbergt zowel het anchor zelf als zijn <li>-wrapper (laatste
       item van de rechter-nav). */
    .hh-hero-nav-right li:last-child,
    .hh-nav-cta { display: none !important; }
}

/* Hero centerblok */
.hh-hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px 80px;
}
.hh-hero-eyebrow {
    font-family: var(--hh-font-deco);
    font-size: 15px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--hh-gold-bright);
    margin: 0 0 14px;
}
/* Variant: eyebrow onder de hero-titel (ipv erboven) — krijgt top-marge
   en geen bottom-marge, zodat 'ie als ondertitel-tagline functioneert. */
.hh-hero-eyebrow--below {
    margin: 4px 0 32px;
}
/* Hoofdtitel: één regel, niet meer overlappend, met goud-accent op onder-deel */
.hh-hero-title {
    margin: 0 0 16px;
    font-family: var(--hh-font-display);
    font-weight: 400;
    line-height: 1;
    color: #fff;
    font-size: clamp(48px, 9.5vw, 128px);
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .35),
        0 8px 40px rgba(0, 0, 0, .75);
    max-width: 18ch;
}

/* Logo-stijl variant: "Hennie's" klein cursief boven, "HAARSNIJDERIJ"
   groot bold-condensed eronder. Visueel een tekst-replica van het
   PNG-logo dat we ook kennen, zodat de merknaam in de hero ook als
   poster-titel leesbaar is i.p.v. alleen als afbeelding. */
.hh-hero-title--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 auto 32px;
    max-width: none;
    font-size: 1rem; /* reset; size wordt door de spans bepaald */
    line-height: 1;
    text-shadow: none;
}
.hh-hero-title-tag {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--hh-gold-bright);
    line-height: 1;
}
.hh-hero-title-tag-text {
    /* Yellowtail = vintage brush-script, matcht de "Hennie's" handlettering
       in het PNG-logo veel beter dan Rye (wat juist een western-blok is). */
    font-family: 'Yellowtail', 'Lobster', 'Brush Script MT', cursive;
    font-size: clamp(26px, 3.2vw, 42px);
    letter-spacing: 0;
    white-space: nowrap;
    transform: translateY(4px); /* optisch centreren op de gouden lijn */
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}
.hh-hero-title-rule {
    display: inline-block;
    width: clamp(40px, 8vw, 110px);
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 212, 101, 0) 0%,
        var(--hh-gold) 50%,
        rgba(255, 212, 101, 0) 100%
    );
}
.hh-hero-title-main {
    font-family: var(--hh-font-deco); /* Anton — matcht 'HAARSNIJDERIJ' uit logo */
    font-size: clamp(44px, 8vw, 104px);
    line-height: .92;
    color: #fff;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .35),
        0 10px 38px rgba(0, 0, 0, .75);
}
.hh-hero-subtitle {
    margin: 0 0 38px;
    font-family: var(--hh-font-deco);
    font-size: clamp(15px, 1.85vw, 19px);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

/* Tagline-versie: vervangt het oude title-element als visuele blikvanger
   nu de merknaam-h1 verborgen is. Twee regels, tweede regel in goud. */
.hh-hero-tagline {
    margin: 0 0 38px;
    font-family: var(--hh-font-display);
    font-weight: 400;
    font-size: clamp(36px, 7vw, 84px);
    line-height: 1.05;
    color: #fff;
    text-shadow:
        0 3px 0 rgba(0, 0, 0, .35),
        0 8px 32px rgba(0, 0, 0, .7);
    max-width: 14ch;
}
.hh-hero-tagline-accent {
    color: var(--hh-gold-bright);
    display: inline-block;
}

/* Visueel-verborgen utility (zoals WP's screen-reader-text): blijft
   leesbaar voor screenreaders en zoekmachines, maar onzichtbaar voor
   het oog. */
.hh-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hh-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primaire knop: gevuld goud, donkere tekst — duidelijk leesbaar */
.hh-hero-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hh-gold-bright);
    color: #1a1a1a;
    border: 1.5px solid var(--hh-gold-bright);
    padding: 16px 38px;
    font-family: var(--hh-font-deco);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all .25s ease;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .35);
}
.hh-hero-book:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 212, 101, .35);
}

/* Secundaire knop: ghost met witte tekst en duidelijke contrast-rand */
.hh-hero-book--ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hh-hero-book--ghost:hover {
    background: rgba(255, 255, 255, .95);
    color: #1a1a1a;
    border-color: #fff;
}

/* Hero onderbalk (telefoon/locatie/uren) */
.hh-hero-meta {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
}
.hh-hero-meta-cell {
    padding: 18px 24px;
    color: #fff;
    font-family: var(--hh-font-deco);
    font-size: 13px;
    letter-spacing: .12em;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.hh-hero-meta-cell:last-of-type { border-right: 0; }
.hh-hero-meta-cell .hh-icon { color: var(--hh-gold-bright); }
.hh-hero-meta-cell a { color: inherit; text-decoration: none; }
.hh-hero-meta-cell a:hover { color: var(--hh-gold-bright); }

.hh-hero-scroll {
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hh-gold-bright);
    text-decoration: none;
    background: rgba(212, 169, 60, .08);
    transition: all .25s ease;
}
.hh-hero-scroll:hover { background: var(--hh-gold); color: #0a0a0a; }
.hh-hero-scroll svg {
    width: 22px; height: 22px;
    animation: hh-bounce 2s ease-in-out infinite;
}
@keyframes hh-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}
@media (max-width: 720px) {
    .hh-hero-meta { grid-template-columns: 1fr 1fr; }
    .hh-hero-meta-cell { font-size: 11px; padding: 12px 14px; gap: 8px; }
    .hh-hero-meta-cell:nth-child(3) { display: none; }
    .hh-hero-scroll { display: none; }
}

/* ============================================================
   ABOUT (cream paneel met tiles)
   ============================================================ */
.hh-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 16px;
}
@media (max-width: 720px) { .hh-about-grid { grid-template-columns: 1fr; gap: 16px; } }

.hh-tile {
    background: var(--hh-cream-2);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--hh-radius);
    padding: 32px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.hh-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.hh-tile-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--hh-font-deco);
    font-size: 13px;
    letter-spacing: .2em;
    color: var(--hh-text-muted);
    opacity: .65;
}
.hh-tile-title {
    font-family: var(--hh-font-deco); /* Anton — bold condensed accent uit moodboard */
    font-size: clamp(22px, 2.7vw, 28px);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--hh-text);
    margin: 0 0 14px;
    line-height: 1.1;
}
.hh-tile p {
    margin: 0;
    color: var(--hh-text-muted);
    font-size: 15px;
}

/* Variant: gevulde gouden tile (zoals "01 / CHALLENGES") */
.hh-tile--gold {
    background: var(--hh-gold-soft);
    border-color: rgba(0,0,0,.1);
}
.hh-tile--gold .hh-tile-title { color: #1a1a1a; }
.hh-tile--gold p { color: rgba(26, 26, 26, .8); }

/* Variant: dark tile met gouden tekst */
.hh-tile--dark {
    background: var(--hh-black);
    color: var(--hh-text-light);
}
.hh-tile--dark .hh-tile-title { color: var(--hh-gold-bright); }
.hh-tile--dark p { color: var(--hh-text-light-2); }

/* Klikbare tile-variant: hele tegel werkt als knop, met chevron-affordance,
   sterkere hover-lift, gouden glow rondom en onderstreepte titel. */
a.hh-tile,
a.hh-tile--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}
.hh-tile--link {
    position: relative;
}
.hh-tile--link .hh-tile-arrow {
    display: inline-block;
    margin-left: 6px;
    font-family: var(--hh-font-display);
    font-size: 1.05em;
    line-height: 1;
    transition: transform .25s ease;
    color: var(--hh-gold-bright);
}
.hh-tile--link:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 2px rgba(212, 169, 60, .35),
        0 18px 40px rgba(0, 0, 0, .25);
}
.hh-tile--link:hover .hh-tile-arrow {
    transform: translateX(4px);
}
.hh-tile--link:hover .hh-tile-title {
    text-decoration: underline;
    text-decoration-color: var(--hh-gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}
.hh-tile--link:focus-visible {
    outline: 2px solid var(--hh-gold-bright);
    outline-offset: 4px;
}
/* Active feedback bij kliktap */
.hh-tile--link:active {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 2px rgba(212, 169, 60, .5),
        0 8px 18px rgba(0, 0, 0, .3);
}

/* Star-burn corner ornament zoals in de moodboard */
.hh-tile-corner::after {
    content: "★";
    position: absolute;
    bottom: 10px;
    right: 14px;
    color: var(--hh-gold);
    font-size: 18px;
    opacity: .5;
}

.hh-tile--lg { padding: 44px 36px; }

/* ============================================================
   SERVICES (cream paneel met prijzen-lijst + barberpole)
   ============================================================ */
.hh-services .hh-mustache {
    color: var(--hh-text);
    width: 200px;
    margin: 0 auto 28px;
    opacity: .85;
}
.hh-services .hh-mustache svg { width: 100%; height: auto; }

.hh-svc-grid {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 56px;
    align-items: stretch;
    margin-top: 30px;
}
@media (max-width: 720px) { .hh-svc-grid { grid-template-columns: 1fr; gap: 28px; } }

.hh-svc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1.5px solid rgba(0,0,0,.12);
}
.hh-svc-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: baseline;
    gap: 16px;
    padding: 22px 4px;
    border-bottom: 1.5px solid rgba(0,0,0,.12);
}
.hh-svc-info { display: flex; flex-direction: column; gap: 4px; }
.hh-svc-name {
    font-family: var(--hh-font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    margin: 0;
    color: var(--hh-text);
    line-height: 1.1;
}
.hh-svc-sub {
    font-size: 14px;
    color: var(--hh-text-muted);
    margin: 0;
}
.hh-svc-dots {
    flex: 1 1 auto;
    background-image: radial-gradient(currentColor 1.2px, transparent 1.2px);
    background-size: 8px 8px;
    background-repeat: repeat-x;
    background-position: 0 50%;
    height: 2px;
    color: rgba(0,0,0,.25);
    align-self: end;
    margin-bottom: 12px;
    min-width: 50px;
}
.hh-svc-price {
    font-family: var(--hh-font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: 0;
    color: var(--hh-gold);
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
}
@media (max-width: 720px) {
    .hh-svc-row { grid-template-columns: 1fr auto; }
    .hh-svc-dots { display: none; }
    .hh-svc-price { grid-column: 2; align-self: center; }
}

/* ============================================================
   BARBERPOLE — Originele vintage SVG, continu draaiend
   ============================================================
   Crème cilinder, 5 gouden diagonale strepen, zwarte knoppen.
   De strepen-groep schuift continu -40px (= 1 stripe-spacing in
   de SVG) omhoog, met buffer-strepen boven/onder voor naadloze
   loop. CSS-animatie loopt altijd, ongeacht scroll-gedrag of
   parent-overflow van de host-theme.
   Belangrijke spec-detail: !important op transform op de
   .hh-pole-stripes class zou de animation-keyframes overrulen,
   dus de animation-rule krijgt !important en de transform
   blijft volledig in de keyframes leven. */
.hh-svc-pole {
    align-self: center;
    color: #1a1a1a;
}
.hh-svc-pole svg { width: 80px; height: auto; display: block; }

/* Cycle = 80px (= 2 stripe-spacings = 1 B/R-paar) zodat zowel
   continue animatie als scroll-driven mode naadloos loopen.
   Duur 8s = bewust rustig. */
@keyframes hh-pole-spin {
    from { transform: translateY(0); }
    to   { transform: translateY(-80px); }
}

/* Default: continue animatie — werkt altijd (ook als JS faalt
   of nog niet geladen is). Krijgt geen !important, zodat de
   scroll-mode hieronder de transform via inline style kan
   overrulen. */
.hh-svc-pole .hh-pole-stripes {
    animation: hh-pole-spin 8s linear infinite;
    will-change: transform;
    transform-box: fill-box;
}

/* Scroll-mode: zodra de JS-listener actief is, voegt 'ie
   .js-pole-scroll toe aan <html>. We zetten dan de animatie
   uit en lezen de translateY uit een CSS-variabele die JS
   bij elke scroll updatet. */
.js-pole-scroll .hh-svc-pole .hh-pole-stripes {
    animation: none;
    transform: translateY(var(--hh-pole-offset, 0px));
}

/* Reduced-motion: strepen pauzeren netjes (geen jitter). */
@media (prefers-reduced-motion: reduce) {
    .hh-svc-pole .hh-pole-stripes,
    .js-pole-scroll .hh-svc-pole .hh-pole-stripes {
        animation: none !important;
        transform: translateY(-40px) !important;
    }
}
@media (max-width: 720px) { .hh-svc-pole { display: none; } }

.hh-services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   GALERIJ (donker paneel)
   ============================================================ */
.hh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.hh-gallery-cell {
    background-size: cover;
    background-position: center;
    border-radius: var(--hh-radius-sm);
    display: block;
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    filter: grayscale(.15) brightness(.85);
}
.hh-gallery-cell:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    filter: grayscale(0) brightness(1);
}
.hh-gallery-cell--lg { grid-column: span 2; grid-row: span 2; }
.hh-gallery-cell--wide { grid-column: span 3; }
@media (max-width: 760px) {
    .hh-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .hh-gallery-cell--lg, .hh-gallery-cell--wide { grid-column: span 2; }
}

/* ============================================================
   REVIEWS / RATINGS (cream paneel)
   ============================================================ */
.hh-rating-stars {
    color: var(--hh-gold);
    letter-spacing: .25em;
    font-size: 22px;
    margin: 12px 0 0;
}

.hh-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
@media (max-width: 860px) { .hh-review-grid { grid-template-columns: 1fr; } }

.hh-review-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--hh-radius);
    padding: 28px 26px;
    margin: 0;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.hh-review-card::before {
    content: "”";
    position: absolute;
    top: -22px;
    left: 18px;
    font-family: var(--hh-font-display);
    font-size: 90px;
    color: var(--hh-gold);
    opacity: .35;
    line-height: 1;
}
.hh-review-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.hh-review-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--hh-text);
    margin: 0 0 18px;
}
.hh-review-stars {
    color: var(--hh-gold);
    letter-spacing: .15em;
    font-size: 14px;
    margin-bottom: 14px;
}
.hh-review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 14px;
}
.hh-review-name {
    font-family: var(--hh-font-display);
    font-size: 18px;
    color: var(--hh-text);
}
.hh-review-meta {
    font-family: var(--hh-font-deco);
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--hh-text-muted);
    text-transform: uppercase;
}

/* Stats-rij */
.hh-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1.5px solid rgba(0,0,0,.12);
}
.hh-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hh-stat-num {
    font-family: var(--hh-font-display);
    font-size: clamp(34px, 5vw, 56px);
    color: var(--hh-text);
    line-height: 1;
}
.hh-stat-lbl {
    font-family: var(--hh-font-deco);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--hh-text-muted);
}
@media (max-width: 540px) { .hh-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ============================================================
   TEAM (donker paneel - "BARBERZY"-look)
   ============================================================ */
.hh-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}
@media (max-width: 860px) { .hh-team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hh-team-grid { grid-template-columns: 1fr; } }

.hh-bz-card {
    text-align: center;
    background: linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--hh-radius);
    padding: 28px 20px 30px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hh-bz-card:hover {
    transform: translateY(-3px);
    border-color: var(--hh-gold);
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
}

.hh-bz-photo {
    aspect-ratio: 4 / 5;
    background: radial-gradient(circle at 50% 30%, #2a2a2a 0%, #0a0a0a 100%);
    border-radius: var(--hh-radius-sm);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}
.hh-bz-photo::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,.6) 100%);
    pointer-events: none;
}
.hh-bz-mono {
    font-family: var(--hh-font-display);
    font-size: clamp(80px, 12vw, 140px);
    color: var(--hh-gold);
    opacity: .55;
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.hh-bz-name {
    font-family: var(--hh-font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--hh-gold-bright);
    margin: 0 0 4px;
}
.hh-bz-role {
    font-family: var(--hh-font-deco);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin: 0;
}

/* ============================================================
   CONTACT (donker paneel) — gelijke 2-koloms cards
   ============================================================ */
.hh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 16px;
}
@media (max-width: 860px) { .hh-contact-grid { grid-template-columns: 1fr; gap: 24px; } }

.hh-contact-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--hh-radius);
    padding: 36px 36px 32px;
}
/* Hogere specificiteit + !important nodig om Elementor/TenWeb default
   h3-styling te overrulen die anders zwart op donker rendert. */
.hh-contact-card .hh-card-title,
.hennie-home .hh-card-title,
h3.hh-card-title {
    font-family: var(--hh-font-deco) !important;
    font-weight: 400 !important;
    font-size: clamp(22px, 2.5vw, 28px) !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: var(--hh-gold-bright) !important;
    margin: 0 0 24px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(212, 169, 60, .3) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.hh-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hh-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.85);
    font-size: 16px;
}
.hh-contact-list .hh-icon {
    color: var(--hh-gold-bright);
    width: 22px;
    height: 22px;
}
.hh-contact-list a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(212,169,60,.4);
    padding-bottom: 1px;
    transition: color .2s ease;
}
.hh-contact-list a:hover { color: var(--hh-gold-bright); }

/* Openingstijden-tabel als compacte lijst i.p.v. een aparte gestyled tabel */
.hh-contact-card .hh-hours {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border: 0;
    margin: 0;
}
.hh-contact-card .hh-hours th,
.hh-contact-card .hh-hours td {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 15px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}
.hh-contact-card .hh-hours tr:first-child th,
.hh-contact-card .hh-hours tr:first-child td { border-top: 0; }
.hh-contact-card .hh-hours tbody th {
    text-align: left;
    color: rgba(255, 255, 255, .65);
    font-weight: 400;
    font-family: var(--hh-font-deco);
    font-size: 13px;
    letter-spacing: .08em;
    width: 50%;
}
.hh-contact-card .hh-hours td {
    text-align: right;
    font-family: var(--hh-font-deco);
    color: var(--hh-gold-bright);
    letter-spacing: .04em;
}
.hh-contact-card .hh-hours .hh-closed {
    color: rgba(255,255,255,.35);
    font-style: italic;
}

/* ============================================================
   BOOKING-FRAME (cream paneel waar de plugin in past)
   ============================================================ */
/* De booking-sectie krijgt een ruime container zodat de plugin met
   3 barbers/diensten op één rij kan tonen i.p.v. krap 2-koloms. */
.hh-booking .hh-container { max-width: 1500px; }

/* Theme-titel "Maak een afspraak" boven de plugin krijgt Anton (sub-display)
   ipv Rye, zodat 'ie niet direct boven de plugin's eigen Rye-titel
   staat (twee identieke kopjes in dezelfde western-font naast elkaar
   voelt repetitief).

   Hetzelfde geldt voor "Onze barbers" — de barber-namen Hennie/Liam
   eronder zijn in Rye, dus de h2 krijgt het condensed Anton-accent.
   "Contact" h2 blijft Rye omdat de subkopjes (Bereik ons, Openingstijden)
   al in Anton staan — daar is het contrast al present. */
.hh-booking .hh-h2,
.hh-booking .hh-h2--display,
.hh-team .hh-h2,
.hh-team .hh-h2--display {
    font-family: var(--hh-font-deco);
    /* Iets kleiner + ruimer dan de Rye-h2's elders zodat Anton's bold
       weight niet harder schreeuwt dan "Over de zaak"/"Barber Services".
       Doel: visueel gelijkwaardig, niet dominant. */
    font-size: clamp(26px, 3.6vw, 40px);
    letter-spacing: .05em;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 400;
    opacity: .92;
}

.hh-booking-frame {
    margin-top: 36px;
    background: #fff;
    border-radius: var(--hh-radius);
    padding: 36px 28px;
    box-shadow: 0 14px 50px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking-widget binnen het frame full-width laten gaan zodat hij niet
   nog eens door zijn eigen max-width wordt vastgepind. */
.hh-booking-frame #hennie-booking-widget {
    max-width: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Verberg de plugin's "Maak een Afspraak" h2 op de homepage —
   onze sectie-kop staat al boven het frame, anders dubbele titel. */
.hh-booking-frame--no-title #hennie-booking-widget > h2:first-of-type { display: none !important; }

/* Forceer 3-koloms barber/service-grid binnen de homepage-frame zodra er
   ruimte is — voorkomt het "2+1"-uitlijning probleem met 3 barbers. */
.hh-booking-frame #barbers-list,
.hh-booking-frame #services-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

/* Vier hoek-ornamenten op de booking-kaart */
.hh-booking-frame::before,
.hh-booking-frame::after {
    content: "★";
    position: absolute;
    color: var(--hh-gold);
    font-size: 16px;
    opacity: .6;
}
.hh-booking-frame::before { top: 14px; left: 14px; }
.hh-booking-frame::after  { top: 14px; right: 14px; }
@media (max-width: 720px) { .hh-booking-frame { padding: 22px 16px; } }

/* ============================================================
   CTA STRIP ("MAKE AN APPOINTMENT")
   ============================================================ */
.hh-cta-strip {
    background: var(--hh-cream);
    border-top: 1.5px solid rgba(0,0,0,.12);
    border-bottom: 1.5px solid rgba(0,0,0,.12);
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 200px 200px;
}
.hh-cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
    flex-wrap: wrap;
}
.hh-cta-strip-eye {
    color: var(--hh-text-muted);
    margin: 0;
}
.hh-cta-strip-title {
    font-family: var(--hh-font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--hh-text);
    flex: 1 1 auto;
    text-align: center;
}
@media (max-width: 720px) {
    .hh-cta-strip-title { flex: 1 1 100%; text-align: left; order: 2; }
    .hh-cta-strip-eye { order: 1; }
}

/* Op mobiel/tablet helemaal verbergen: de booking-sectie erboven en de
   sticky 'Boek nu' knop bieden al dezelfde actie, dus deze strip voelt
   dubbel-op. Direct van booking naar de footer is rustiger. */
@media (max-width: 860px) {
    .hh-cta-strip { display: none !important; }
}

/* ============================================================
   BUTTONS (algemeen)
   ============================================================ */
.hh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--hh-gold);
    background: var(--hh-gold);
    color: #0a0a0a;
    padding: 14px 32px;
    font-family: var(--hh-font-deco);
    font-size: 13px;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all .25s ease;
    cursor: pointer;
}
.hh-btn:hover {
    background: var(--hh-gold-bright);
    border-color: var(--hh-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 169, 60, .35);
}
/* ── Primaire CTA-knop (Services-sectie) ───────────────────────────────
   Volledig overschrijven van de basis .hh-btn-stijl: donkere knop met
   gouden kader en gouden tekst i.p.v. vlak goud-op-crème. Geeft max.
   contrast tegen de crème services-achtergrond, en past bij de zwarte
   panelen elders op de site (hero, CTA-strip, footer).

   !important op color/background nodig omdat Elementor's
   `.elementor-page a { color: ... }` rule meer specificiteit heeft
   (1 class + 1 type vs onze 1 class) en in de cascade wint zonder. */
.hh-btn--gold-lg,
a.hh-btn--gold-lg,
.hennie-home a.hh-btn--gold-lg {
    background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%) !important;
    color: var(--hh-gold-bright, #FFD465) !important;
    border: 2px solid var(--hh-gold, #D4A93C) !important;
    padding: 20px 52px;
    font-family: var(--hh-font-display); /* Rye — western signage, contrasteert met Anton eyebrows */
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    box-shadow:
        0 0 0 4px rgba(212, 169, 60, .12),
        0 12px 28px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .55);
}
/* Glanzende 'sweep' over de knop op hover voor barbershop-shine. */
.hh-btn--gold-lg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
        transparent 30%,
        rgba(255, 215, 100, .18) 50%,
        transparent 70%);
    transform: translateX(-110%);
    transition: transform .65s ease;
    pointer-events: none;
}
/* Chevron-pijl als affordance dat dit een actie-knop is. */
.hh-btn--gold-lg::after {
    content: '\203A'; /* › */
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4em;
    line-height: 1;
    margin-left: 2px;
    transition: transform .25s ease;
}
/* Hover: knop draait om — gouden achtergrond, donkere tekst, sterk goud-glow */
.hh-btn--gold-lg:hover,
a.hh-btn--gold-lg:hover,
.hennie-home a.hh-btn--gold-lg:hover {
    background: linear-gradient(180deg, var(--hh-gold-bright, #FFD465), var(--hh-gold, #D4A93C)) !important;
    color: #0a0a0a !important;
    border-color: var(--hh-gold-bright, #FFD465) !important;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 4px rgba(212, 169, 60, .28),
        0 18px 36px rgba(212, 169, 60, .40),
        inset 0 1px 0 rgba(255, 255, 255, .35);
    text-shadow: none;
}
.hh-btn--gold-lg:hover::before { transform: translateX(110%); }
.hh-btn--gold-lg:hover::after  { transform: translateX(4px); }
.hh-btn--gold-lg:focus-visible {
    outline: 2px solid var(--hh-gold-bright);
    outline-offset: 4px;
}
@media (max-width: 480px) {
    .hh-btn--gold-lg {
        padding: 16px 32px;
        font-size: 15px;
        letter-spacing: .06em;
    }
}
.hh-btn--ghost-dark {
    background: transparent;
    color: var(--hh-text);
    border-color: var(--hh-text);
}
.hh-btn--ghost-dark:hover {
    background: var(--hh-text);
    color: var(--hh-cream);
    box-shadow: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.hh-footer {
    background: var(--hh-black);
    color: rgba(255,255,255,.7);
    padding: 60px 0 24px;
}
.hh-footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: center;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px) {
    .hh-footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
}

.hh-footer-brand img.hh-footer-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
    display: block;
}
@media (max-width: 860px) { .hh-footer-brand img.hh-footer-logo-img { margin: 0 auto; } }

.hh-footer-nav,
.hh-footer-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.hh-footer-nav { justify-content: center; }
.hh-footer-meta { justify-content: flex-end; }
@media (max-width: 860px) { .hh-footer-meta { justify-content: center; } }

.hh-footer-nav a,
.hh-footer-meta a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-family: var(--hh-font-deco);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: color .2s ease;
}
.hh-footer-nav a:hover,
.hh-footer-meta a:hover {
    color: var(--hh-gold-bright, #FFD465) !important;
    text-decoration: none;
}
.hh-footer-meta li { color: rgba(255,255,255,.5); font-family: var(--hh-font-deco); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.hh-footer-credit { color: var(--hh-gold, #D4A93C); }

.hh-footer-bottom {
    max-width: var(--hh-container);
    margin: 0 auto;
    padding: 24px 28px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    font-family: var(--hh-font-deco);
    letter-spacing: .15em;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
}

/* ============================================================
   GLOBAL "force"-overrides — voorkomen dat oude TenWeb/Elementor
   styles op .hh-* elementen knock-out komen
   ============================================================ */
.hennie-home .hh-section,
.hennie-home .hh-tagbar,
.hennie-home .hh-cta-strip {
    color: inherit !important;
}
.hennie-home p { margin-block: 0 .85em; }
.hennie-home a { color: inherit; }

/* Verberg sticky CTA en back-to-top op de homepage (custom hero heeft eigen CTA) */
body.home .hm-mobile-cta,
body.home .hm-back-top { display: none !important; }
body.home.hm-show-cta  { padding-bottom: 0 !important; }

/* ============================================================================
   MOBILE OPTIMIZATIONS
   ============================================================================
   Algemene mobile-pass die ervoor zorgt dat alle secties netjes blijven op
   tablet en phone. Bovenstaande inline @media-rules zijn behouden; deze block
   vult de gaten op (kleinere phones, betere padding, tap targets, no overflow).
   ========================================================================== */

/* Voorkom horizontal-scroll door overrun-elementen */
body.hennie-front {
    overflow-x: hidden;
}
.hennie-home img,
.hennie-home svg { max-width: 100%; }

/* ── Tablet / kleine laptop  (≤ 960px) ─────────────────────────────────── */
@media (max-width: 960px) {
    .hh-section            { padding: 80px 0; }
    .hh-section-head       { margin-bottom: 40px; }
    .hh-h2                 { font-size: clamp(30px, 5.5vw, 46px); }
    .hh-container          { padding: 0 22px; }

    /* Booking-frame: niet meer over de container heen */
    .hh-booking .hh-container { max-width: 100%; }
    .hh-booking-frame { max-width: 100%; }

    /* Reviews 2-koloms op tablet, 1-koloms op phone (in 720px-block) */
    .hh-review-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Phone landscape / grote phones (≤ 720px) ──────────────────────────── */
@media (max-width: 720px) {
    .hh-section { padding: 56px 0; }
    .hh-container { padding: 0 18px; }

    /* Hero */
    .hh-hero { min-height: 88vh; }
    .hh-hero-inner { padding: 30px 20px 60px; }
    .hh-hero-title {
        font-size: clamp(40px, 12vw, 72px);
        line-height: 1;
    }
    /* Logo-stijl titel op mobile: HAARSNIJDERIJ heeft 13 letters, dus
       schalen naar de viewport-breedte zodat het altijd binnen 1 regel
       past zonder afgekapt te worden. */
    .hh-hero-title--logo {
        gap: 4px;
        margin-bottom: 24px;
        padding: 0 8px;
    }
    .hh-hero-title-main {
        font-size: clamp(36px, 11.5vw, 80px);
        letter-spacing: 0;
    }
    .hh-hero-title-tag {
        font-size: clamp(15px, 4vw, 22px);
        gap: 10px;
    }
    .hh-hero-title-rule { width: clamp(28px, 7vw, 60px); }
    .hh-hero-eyebrow { font-size: 13px; letter-spacing: .25em; }
    .hh-hero-subtitle { font-size: 14px; letter-spacing: .12em; }
    .hh-hero-tagline { font-size: clamp(32px, 9vw, 56px); margin-bottom: 30px; }
    .hh-hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
    }
    .hh-hero-book {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 12px;
        letter-spacing: .18em;
    }

    /* Hero meta-balk: compactere icon-only weergave */
    .hh-hero-meta { grid-template-columns: 1fr 1fr; }
    .hh-hero-meta-cell:nth-child(3) { display: none; }
    .hh-hero-meta-cell {
        font-size: 11px;
        letter-spacing: .08em;
        padding: 10px 12px;
        gap: 6px;
    }
    .hh-hero-scroll { display: none; }

    /* About tiles: minder padding */
    .hh-tile         { padding: 26px 22px; }
    .hh-tile--lg     { padding: 30px 24px; }
    .hh-tile-title   { font-size: 17px; letter-spacing: .1em; }

    /* Services: prijzen en namen netter onder elkaar als ruimte krap */
    .hh-svc-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 4px;
    }
    .hh-svc-dots { display: none; }
    .hh-svc-price {
        align-self: start;
        font-size: 22px;
    }
    .hh-svc-name { font-size: 22px; }

    /* Gallery: 2 kolommen, kleiner */
    .hh-gallery-grid { grid-auto-rows: 140px; gap: 10px; }

    /* Reviews: 1 kolom */
    .hh-review-grid { grid-template-columns: 1fr; gap: 16px; }
    .hh-review-card { padding: 24px 22px; }

    /* Stats: 2x2 grid duidelijker */
    .hh-stats { gap: 22px 12px; padding-top: 28px; margin-top: 40px; }
    .hh-stat-num { font-size: 40px; }

    /* Team: photo-cards iets compacter */
    .hh-bz-card { padding: 20px 16px 24px; }
    .hh-bz-photo { aspect-ratio: 1 / 1; }
    .hh-bz-mono { font-size: 80px; }

    /* Contact-cards: padding compacter */
    .hh-contact-card { padding: 26px 22px; }
    .hh-card-title { font-size: 22px; margin-bottom: 18px; }

    /* Booking-frame */
    .hh-booking-frame { padding: 24px 14px; margin-top: 24px; }
    .hh-booking-frame::before,
    .hh-booking-frame::after { font-size: 13px; top: 10px; }
    .hh-booking-frame::before { left: 10px; }
    .hh-booking-frame::after  { right: 10px; }

    /* CTA-strip */
    .hh-cta-strip-inner { gap: 16px; padding: 22px 18px; }
    .hh-cta-strip-title { font-size: 24px; flex: 1 1 100%; }
    .hh-cta-strip .hh-btn--ghost-dark { width: 100%; justify-content: center; }

    /* Footer */
    .hh-footer { padding: 44px 0 18px; }
    .hh-footer-brand img.hh-footer-logo-img { height: 56px; }
    .hh-footer-nav,
    .hh-footer-meta { gap: 12px 18px; flex-direction: row; }
    .hh-footer-nav a,
    .hh-footer-meta a,
    .hh-footer-meta li {
        font-size: 11px;
        letter-spacing: .15em;
    }
    .hh-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 18px 18px 0;
        font-size: 10px;
    }

    /* Mustache divider: kleiner */
    .hh-services .hh-mustache { width: 140px; margin-bottom: 18px; }
}

/* ── Phone portrait (≤ 480px) ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .hh-section { padding: 48px 0; }
    .hh-container { padding: 0 14px; }

    .hh-hero-inner { padding: 24px 16px 50px; }
    .hh-hero-title { font-size: clamp(36px, 13vw, 60px); }
    .hh-hero-title--logo { padding: 0 4px; gap: 2px; }
    .hh-hero-title-main { font-size: clamp(32px, 12vw, 56px); }
    .hh-hero-title-tag { font-size: clamp(13px, 3.6vw, 18px); gap: 8px; }
    .hh-hero-title-rule { width: clamp(22px, 6vw, 48px); }
    .hh-hero-subtitle { font-size: 13px; margin-bottom: 26px; }
    .hh-hero-eyebrow { font-size: 12px; }
    .hh-hero-tagline { font-size: clamp(28px, 11vw, 48px); margin-bottom: 24px; }

    .hh-hero-meta-cell { font-size: 10px; padding: 9px 10px; }
    .hh-hero-meta-cell .hh-icon { width: 14px; height: 14px; }

    .hh-eyebrow { font-size: 11px; letter-spacing: .2em; }
    .hh-h2 { font-size: clamp(26px, 7vw, 38px); }

    /* About-tiles: nummer kleiner zodat het niet over de tekst loopt */
    .hh-tile-num { font-size: 11px; top: 14px; right: 14px; }

    /* Gallery 1-koloms voor kleinste schermen */
    .hh-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .hh-gallery-cell--lg,
    .hh-gallery-cell--wide { grid-column: span 1; grid-row: auto; }

    /* Stats: cijfers iets kleiner */
    .hh-stat-num { font-size: 32px; }
    .hh-stat-lbl { font-size: 9px; letter-spacing: .18em; }

    /* Hero-nav: alleen logo en CTA — al door 860px-rule afgedwongen
       maar we maken het CTA-knopje nóg compacter op tiny screens. */
    .hh-nav-cta { padding: 7px 12px; font-size: 11px; letter-spacing: .12em; }
    .hh-hero-logo img { height: 56px; }

    /* Booking-frame: minimal padding, geen sterren-corners (te krap) */
    .hh-booking-frame {
        padding: 16px 10px;
        border-radius: 10px;
    }
    .hh-booking-frame::before,
    .hh-booking-frame::after { display: none; }

    /* Tagbar: alleen sinds 2018 */
    .hh-tagbar-inner { padding: 8px 14px; }
    .hh-tag-item--center { font-size: 10px; }

    /* Reviews: ‟-quote-mark kleiner */
    .hh-review-card::before { font-size: 60px; top: -14px; left: 14px; }

    /* CTA strip */
    .hh-cta-strip-title { font-size: 20px; }

    /* Footer-nav iets compacter */
    .hh-footer-nav,
    .hh-footer-meta { gap: 10px 14px; }
    .hh-footer-nav a,
    .hh-footer-meta a,
    .hh-footer-meta li { font-size: 10px; letter-spacing: .12em; }
}

/* ── Hele kleine phones (≤ 360px) ──────────────────────────────────────── */
@media (max-width: 360px) {
    .hh-hero-title { font-size: 36px; }
    .hh-hero-tagline { font-size: 28px; }
    .hh-hero-meta { grid-template-columns: 1fr; }
    .hh-hero-meta-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); justify-content: center; }
    .hh-hero-meta-cell:last-of-type { border-bottom: 0; }
}

/* ── Tap targets: minimaal 44px hoog voor links/knoppen op touch ────── */
@media (hover: none) and (pointer: coarse) {
    .hh-hero-book,
    .hh-btn,
    .hh-hero-nav a,
    .hh-footer-nav a,
    .hh-contact-list a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================================================
   HH-TINYCAR-FIXED  —  scroll-progress easter-egg
   ============================================================================
   Mini silhouet onderaan de viewport. JS update transform op X-as op basis
   van scroll-percentage: 0% scroll → off-screen links, 100% → off-screen
   rechts. Bewust opacity .25 zodat alleen wie kijkt 'm spot.
   ========================================================================== */
.hh-tinycar-fixed {
    position: fixed;
    bottom: 12px;
    left: 0;
    width: 50px;
    height: 16px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
    transition: opacity .8s ease;
    will-change: transform, opacity;
}
.hh-tinycar-fixed.is-on {
    opacity: .28;
}
.hh-tinycar-fixed svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
}

/* Bij hover op de auto zelf (zeldzaam want piepklein) een kleine hint:
   opacity volle waarde + subtiele schaal. Easter-egg-bonus voor wie 'm
   echt aanklikt of erover hoovert. */
.hh-tinycar-fixed:hover { opacity: .8; }

/* Reduced-motion: helemaal verbergen */
@media (prefers-reduced-motion: reduce) {
    .hh-tinycar-fixed { display: none; }
}

/* Kleine schermen: nog kleiner + iets hoger zodat hij niet
   door de sticky-CTA wordt verstopt op mobile. */
@media (max-width: 720px) {
    .hh-tinycar-fixed { width: 40px; height: 13px; bottom: 70px; opacity: 0; }
    .hh-tinycar-fixed.is-on { opacity: .22; }
}
