/* ============================================================
   BijFloor — Stylesheet
   Floor de Wilde · Persoonlijke liedjes op maat
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* Kleuren */
    --color-bg:           #faf7f2;
    --color-bg-alt:       #ede8df;
    --color-dark:         #3a322b;
    --color-dark-alt:     #4a3f38;
    --color-primary:      #9e7b5a;
    --color-primary-dark: #7d6046;
    --color-accent:       #c4956a;
    --color-text:         #2d2420;
    --color-text-light:   #8b7b72;
    --color-border:       #e0d8cf;
    --color-white:        #ffffff;

    /* Typografie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Inter', sans-serif;

    /* Layout */
    --container:    1100px;
    --nav-height:   72px;

    /* Effecten */
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 32px rgba(45, 36, 32, 0.08);
    --shadow-lg:   0 8px 48px rgba(45, 36, 32, 0.14);
    --transition:  0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 600;
    color: var(--color-text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== HULPKLASSEN ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section {
    padding: 6rem 0;
}

.section__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}

.section__header h2 {
    margin-bottom: 1rem;
}

.section__intro {
    font-size: 1.05rem;
}

/* ===== KNOPPEN ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--ghost:hover {
    border-color: var(--color-text);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn--light:hover {
    background: var(--color-bg);
}

.btn--ghost-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--full {
    width: 100%;
}

/* ============================================================
   NAVIGATIE
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 24px rgba(45, 36, 32, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 52px;
    width: auto;
    display: block;
    /* Wit maken op donkere hero achtergrond */
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.header.scrolled .nav__logo img {
    /* Originele bruine kleur op lichte achtergrond */
    filter: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__link:hover {
    color: var(--color-white);
}

.header.scrolled .nav__link {
    color: var(--color-text-light);
}

.header.scrolled .nav__link:hover {
    color: var(--color-text);
}

/* CTA link in nav */
.nav__link--cta {
    padding: 0.45rem 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 100px;
}

.nav__link--cta::after { display: none; }

.header.scrolled .nav__link--cta {
    border-color: var(--color-primary);
    color: var(--color-primary) !important;
}

.nav__link--cta:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav__link--cta:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .nav__toggle span {
    background: var(--color-text);
}

.nav__toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   PAGINA HEADER (inner pagina's)
   ============================================================ */
.page-hero {
    position: relative;
    background-color: var(--color-dark);
    padding: calc(var(--nav-height) + 4rem) 0 4rem;
    text-align: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(158, 123, 90, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(196, 149, 106, 0.12) 0%, transparent 45%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    color: var(--color-accent);
}

.page-hero h1 {
    color: var(--color-white);
    font-weight: 300;
    margin: 0.5rem 0 0.75rem;
}

.page-hero__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--color-dark);
    padding: 5rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   PRIJZEN
   ============================================================ */
.prijzen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto 2rem;
}

.prijs-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
}

.prijs-card--uitgelicht {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.prijs-card--uitgelicht h3,
.prijs-card--uitgelicht p,
.prijs-card--uitgelicht li {
    color: rgba(255, 255, 255, 0.85);
}

.prijs-card--uitgelicht .prijs-card__bedrag {
    color: var(--color-accent);
}

.prijs-card--uitgelicht .prijs-card__ex {
    color: rgba(255, 255, 255, 0.5);
}

.prijs-card__label {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.prijs-card__top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prijs-card__icon {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.prijs-card__naam {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

.prijs-card__omschrijving {
    font-size: 0.93rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

.prijs-card__prijs {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.prijs-card--uitgelicht .prijs-card__prijs {
    border-color: rgba(255, 255, 255, 0.15);
}

.prijs-card__bedrag {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
}

.prijs-card__ex {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.prijs-card__lijst {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.prijs-card__lijst li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding-left: 1.25rem;
    position: relative;
}

.prijs-card__lijst li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.prijzen__voetnoot {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0.5rem auto 3rem;
    max-width: 600px;
}

.prijzen__maat {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.prijzen__maat h2 {
    margin-bottom: 1rem;
}

.prijzen__maat p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================================
   OVER TEASER (home)
   ============================================================ */
.over-teaser {
    background: var(--color-bg);
}

/* ============================================================
   DIENSTEN PREVIEW (home)
   ============================================================ */
.diensten-preview {
    background: var(--color-bg-alt);
}

.diensten__grid--preview {
    grid-template-columns: repeat(3, 1fr);
}

.diensten__more {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   FEITEN / INSTRUMENTEN (over pagina)
   ============================================================ */
.feiten {
    background: var(--color-bg-alt);
}

.feiten__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feit-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feit-card__icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.feit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ============================================================
   PORTFOLIO INTRO
   ============================================================ */
.portfolio__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1rem;
}

/* ============================================================
   CONTACT EXTRA INFO
   ============================================================ */
.contact__info-extra {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.contact__info-extra h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.contact__info-extra ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact__info-extra li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding-left: 1.25rem;
    position: relative;
}

.contact__info-extra li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* Portfolio note link */
.portfolio__note a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    transition: opacity var(--transition);
}

.portfolio__note a:hover {
    opacity: 0.75;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 6rem;
    width: 100%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    width: 100%;
    max-width: 440px;
    max-height: 78vh;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.hero__title {
    color: var(--color-white);
    margin-bottom: 1.75rem;
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
    white-space: nowrap;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.75rem;
    letter-spacing: 0.01em;
}

.hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 420px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    animation: scrollBounce 2.5s ease-in-out infinite;
    z-index: 1;
    transition: color var(--transition);
}

.hero__scroll:hover {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   OVER FLOOR
   ============================================================ */
.over {
    background: var(--color-bg);
}

.over__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.over__photo-wrap {
    position: relative;
}

.over__photo-wrap::before {
    content: '';
    position: absolute;
    inset: -16px 16px 16px -16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.over__photo-placeholder {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #ddd5c8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    overflow: hidden;
}

/* Als er een echte foto is: */
.over__photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.over__content .eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.over__content h2 {
    margin: 0.5rem 0 1.5rem;
}

.over__content p {
    margin-bottom: 1rem;
}

.over__content p:last-of-type {
    margin-bottom: 0;
}

.over__content .btn {
    margin-top: 2rem;
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
    background: var(--color-bg-alt);
}

.diensten__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.dienst-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.dienst-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.dienst-card__icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.dienst-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

/* ============================================================
   VOOR PROFESSIONALS
   ============================================================ */
.professionals {
    background: var(--color-dark);
}

.professionals__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.professionals .eyebrow {
    color: var(--color-accent);
}

.professionals__content h2 {
    color: var(--color-white);
    margin: 0.5rem 0 1rem;
}

.professionals__content > p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.pro-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pro-option {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.pro-option h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.35rem;
}

.pro-option p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.professionals__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pro-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-card--uitvaart {
    background: rgba(158, 123, 90, 0.15);
}

.pro-card--wedding {
    background: rgba(196, 149, 106, 0.12);
}

.pro-card__icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.pro-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.pro-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================================
   HOE HET WERKT
   ============================================================ */
.werkwijze {
    background: var(--color-bg);
}

.stappen {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stappen::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: var(--color-border);
}

.stap {
    position: relative;
}

.stap__num {
    width: 4rem;
    height: 4rem;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stap__content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
    background: var(--color-bg-alt);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Basis kaart */
.portfolio-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

/* VIDEO kaart */
.portfolio-card--video .portfolio-card__media {
    background: var(--color-dark);
    position: relative;
}

.portfolio-card--video video {
    width: 100%;
    display: block;
    max-height: 260px;
    object-fit: cover;
}

/* YouTube Short (9:16 verticaal) */
.portfolio-card__media--short {
    aspect-ratio: 9 / 16;
    max-height: 480px;
    overflow: hidden;
}

.portfolio-card__media--short iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* AUDIO kaart */
.portfolio-card__player {
    padding: 1.5rem;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-left: 2px; /* optische correctie voor play icoon */
    transition: background var(--transition), transform var(--transition);
}

.play-btn:hover {
    background: var(--color-accent);
    transform: scale(1.08);
}

.player__track {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.wave-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 36px;
    cursor: pointer;
}

.wave-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    min-height: 4px;
    transition: background 0.1s ease;
}

.wave-bar.played {
    background: rgba(255, 255, 255, 0.75);
}

.wave-bars:hover .wave-bar:not(.played) {
    background: rgba(255, 255, 255, 0.35);
}

.player__seek {
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.player__seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.player__seek::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.player__time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-variant-numeric: tabular-nums;
}

/* Info onderaan kaart */
.portfolio-card__info {
    padding: 1.25rem 1.5rem;
}

.portfolio-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    margin-bottom: 0.6rem;
}

.portfolio-card__tag--video {
    background: rgba(196, 149, 106, 0.15);
    color: var(--color-accent);
}

.portfolio-card__tag--audio {
    background: rgba(158, 123, 90, 0.12);
    color: var(--color-primary);
}

.portfolio-card__info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.portfolio-card__info p {
    font-size: 0.9rem;
}

.portfolio__note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: var(--color-bg);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact__info .eyebrow {
    display: block;
}

.contact__info h2 {
    margin: 0.5rem 0 1rem;
}

.contact__info > p {
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: color var(--transition);
}

.contact__item:hover {
    color: var(--color-primary);
}

.contact__icon {
    font-size: 1rem;
    color: var(--color-primary);
    width: 1.5rem;
    text-align: center;
}

.contact__social {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-bottom: 1.5px solid var(--color-border);
    padding-bottom: 1px;
    transition: color var(--transition), border-color var(--transition);
}

.social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Formulier */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-optional {
    font-weight: 400;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(158, 123, 90, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
    font-style: italic;
    opacity: 0.8;
}

/* Select pijltje */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b7b72' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark-alt);
    color: var(--color-white);
    padding: 3.5rem 0 1.5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.footer__logo {
    height: 46px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
    /* Wit maken op donkere footer */
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--color-white);
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__social a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition);
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   RECENSIES
   ============================================================ */
.recensies {
    background: var(--color-bg);
}

.recensies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.recensie-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.recensie-card__tekst {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.75;
    flex: 1;
}

.recensie-card__tekst-wrap {
    position: relative;
    flex: 1;
}

.recensie-card--inklapbaar .recensie-card__tekst-wrap {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.recensie-card--inklapbaar.open .recensie-card__tekst-wrap {
    max-height: 60rem;
}

.recensie-card__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: linear-gradient(to bottom, transparent, var(--color-white));
    transition: opacity 0.3s ease;
}

.recensie-card.open .recensie-card__fade {
    opacity: 0;
    pointer-events: none;
}

.recensie-card__toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    letter-spacing: 0.03em;
    text-align: left;
    transition: opacity var(--transition);
}

.recensie-card__toggle:hover {
    opacity: 0.7;
}

.recensie-card__tekst::before {
    content: '\201C';
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 0.15rem;
}

.recensie-card__naam {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-top: auto;
}

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
    .section {
        padding: 5rem 0;
    }

    .feiten__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diensten__grid--preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .over__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .over__photo-wrap::before {
        display: none;
    }

    .over__photo-placeholder {
        aspect-ratio: 4 / 3;
    }

    .professionals__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diensten__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stappen {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stappen::before {
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .prijzen__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__image {
        order: -1;
    }

    .hero__image img {
        max-height: 50vh;
        max-width: 320px;
    }
}

/* ============================================================
   RESPONSIVE — MOBIEL (max 640px)
   ============================================================ */
@media (max-width: 900px) {
    /* Hamburger zichtbaar */
    .nav__toggle {
        display: flex;
    }

    /* Mobiel menu */
    .nav__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 150;
        overflow-y: auto;
    }

    .nav__menu.open {
        display: flex;
    }

    .nav__link {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .nav__link--cta {
        font-size: 1.4rem;
        border-color: rgba(255, 255, 255, 0.4) !important;
        color: var(--color-white) !important;
    }
}

@media (max-width: 640px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 4rem 0;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__image {
        order: -1;
    }

    .hero__image img {
        max-height: 45vh;
        max-width: 260px;
    }

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

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .diensten__grid,
    .diensten__grid--preview,
    .portfolio__grid,
    .feiten__grid,
    .stappen,
    .recensies__grid,
    .prijzen__grid {
        grid-template-columns: 1fr;
    }

    /* Hero titel niet buiten beeld op mobiel */
    .hero__title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        white-space: normal;
    }

    .hero__title em {
        white-space: normal;
    }

    .hero__eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    /* Prijzen */
    .prijs-card {
        padding: 2rem 1.5rem;
    }

    .prijzen__maat {
        padding: 2rem 1.5rem;
    }

    /* Over foto */
    .over__photo-placeholder {
        aspect-ratio: 3 / 2;
    }

    /* Portfolio kaart speler */
    .portfolio-card__player {
        padding: 1rem;
    }

    /* Page hero */
    .page-hero__content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .contact__form {
        padding: 1.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
