/* ===========================================================
   Etouchbeauty — UGC Portfolio
   Premium, video-first, nude/earthy aesthetic
   =========================================================== */

:root {
  --porcelain: #F7F3EE;
  --sand:      #EDE4D8;
  --camel:     #C9A98C;
  --mocha:     #9A7B5F;
  --espresso:  #2B2622;
  --taupe:     #6F655B;
  --ivory:     #FFFDFA;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--porcelain);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--mocha);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--taupe); max-width: 62ch; }
.serif-quote { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.5rem); line-height: 1.3; font-weight: 400; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(72px, 11vw, 150px); }
.center { text-align: center; }
.section-head { max-width: 720px; margin-inline: auto; }
.section-head .eyebrow { display:block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05em 2.2em; border-radius: var(--radius);
  border: 1px solid var(--espresso); background: var(--espresso); color: var(--ivory);
  cursor: pointer; transition: all .4s var(--ease);
}
.btn:hover { background: var(--mocha); border-color: var(--mocha); }
.btn--ghost { background: transparent; color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--ivory); }
.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--espresso); }
.btn--light:hover { background: var(--camel); border-color: var(--camel); color: var(--ivory); }
.btn--lg { padding: 1.2em 2.8em; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease);
}
/* legibility scrim behind the nav over any hero image; fades out on scroll */
.site-header::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 150px; z-index: -1;
  background: linear-gradient(180deg, rgba(43,38,34,.5) 0%, rgba(43,38,34,0) 100%);
  pointer-events: none; transition: opacity .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,243,238,.92);
  backdrop-filter: blur(10px);
  padding-block: 14px;
  box-shadow: 0 1px 0 rgba(43,38,34,.07);
}
.site-header.scrolled::before { opacity: 0; }
.brand-logo img { height: 58px; width: auto; transition: opacity .4s; }
.site-header.scrolled .brand-logo img { height: 48px; }
.site-header .logo-light { display: block; }
.site-header .logo-dark { display: none; position: absolute; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark { display: block; position: static; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory); position: relative; padding-block: 4px; transition: color .3s;
}
.site-header.scrolled .nav a { color: var(--espresso); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav .nav-cta {
  background: var(--ivory); color: var(--espresso); border: 1px solid var(--ivory);
  padding: .7em 1.5em; border-radius: var(--radius);
  box-shadow: 0 6px 20px -10px rgba(43,38,34,.5);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--camel); border-color: var(--camel); color: var(--ivory); }
.site-header.scrolled .nav .nav-cta { background: var(--espresso); border-color: var(--espresso); color: var(--ivory); box-shadow: none; }
.site-header.scrolled .nav .nav-cta:hover { background: var(--camel); border-color: var(--camel); color: var(--ivory); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; z-index: 110; }
.nav-toggle span { position:absolute; left:0; height: 1.5px; width: 100%; background: var(--ivory); transition: all .35s var(--ease); }
.site-header.scrolled .nav-toggle span, body.menu-open .nav-toggle span { background: var(--espresso); }
.nav-toggle span:nth-child(1){ top: 2px; } .nav-toggle span:nth-child(2){ top: 10px; } .nav-toggle span:nth-child(3){ top: 18px; }
body.menu-open .nav-toggle span:nth-child(1){ top:10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3){ top:10px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content:""; position: absolute; inset: 0; z-index:-1;
  background: linear-gradient(180deg, rgba(43,38,34,.35) 0%, rgba(43,38,34,.05) 35%, rgba(43,38,34,.65) 100%); }
.hero__inner { padding-bottom: clamp(60px, 9vw, 120px); padding-top: 140px; max-width: 940px; }
.hero .eyebrow { color: var(--sand); margin-bottom: 26px; display:block; }
.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero__sub { font-size: clamp(1.05rem,1.7vw,1.3rem); max-width: 54ch; margin-bottom: 40px; color: rgba(255,253,250,.92); }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-hint { position:absolute; bottom: 28px; left:50%; transform: translateX(-50%); font-size:.66rem; letter-spacing:.25em; text-transform:uppercase; color: var(--sand); opacity:.85; }

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; min-height: 62vh; display:flex; align-items: flex-end; color: var(--ivory); overflow:hidden; }
.page-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-2; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(43,38,34,.3), rgba(43,38,34,.62)); }
.page-hero__inner { padding-bottom: clamp(48px,7vw,90px); padding-top: 150px; }
.page-hero .eyebrow { color: var(--sand); display:block; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.4rem,5vw,4.2rem); }
.page-hero__sub { margin-top: 18px; font-size: clamp(1rem,1.5vw,1.2rem); color: rgba(255,253,250,.92); max-width: 56ch; }

/* ---------- merken-marquee ---------- */
.merken { background: var(--sand); padding-block: 48px; overflow: hidden; }
.merken__label { text-align:center; font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color: var(--mocha); margin-bottom: 30px; }
.marquee { display:flex; overflow:hidden; user-select:none; gap: clamp(30px,5vw,64px); }
.marquee + .marquee { margin-top: 22px; }
.marquee__track { display:flex; gap: clamp(30px,5vw,64px); flex-shrink:0; align-items:center; min-width:100%; justify-content:space-around; animation: marquee 46s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 54s; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.15rem,1.9vw,1.6rem); color: var(--espresso); opacity:.7; white-space:nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% - clamp(30px,5vw,64px))); } }
/* de marquee scrolt altijd — trage, decoratieve beweging, ook bij 'verminder beweging' */

/* ---------- trust bar ---------- */
.trust { background: var(--sand); padding-block: 38px; }
.trust__inner { display:flex; align-items:center; justify-content:center; gap: clamp(28px,6vw,76px); flex-wrap: wrap; }
.trust__label { font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color: var(--mocha); }
.trust__name { font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.7rem); color: var(--espresso); opacity:.75; }

/* ---------- portfolio grid ---------- */
.filters { display:flex; gap: 10px; justify-content:center; flex-wrap: wrap; margin: 40px 0 50px; }
.chip {
  font-size:.74rem; font-weight:500; letter-spacing:.12em; text-transform:uppercase;
  padding:.7em 1.4em; border:1px solid rgba(43,38,34,.22); border-radius: 100px;
  background: transparent; color: var(--taupe); cursor:pointer; transition: all .35s var(--ease);
}
.chip:hover { border-color: var(--espresso); color: var(--espresso); }
.chip.active { background: var(--espresso); border-color: var(--espresso); color: var(--ivory); }

.grid {
  display: grid; gap: clamp(12px, 1.4vw, 20px);
  grid-template-columns: repeat(2, 1fr);
}
@media(min-width: 720px){ .grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1080px){ .grid { grid-template-columns: repeat(4, 1fr); } }

.tile {
  position: relative; aspect-ratio: 9/16; overflow:hidden; border-radius: var(--radius);
  background: var(--sand); cursor: pointer;
  transition: transform .5s var(--ease), opacity .4s;
}
.tile:hover { transform: translateY(-4px); }
.tile img, .tile video { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.tile video { opacity: 0; transition: opacity .5s var(--ease); }
.tile.playing video { opacity: 1; }
.tile::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(43,38,34,.6)); opacity:.85; transition: opacity .4s; }
.tile__meta { position:absolute; left:16px; right:16px; bottom:16px; z-index:2; color: var(--ivory); }
.tile__niche { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color: var(--sand); display:block; margin-bottom:5px; }
.tile__title { font-family: var(--font-display); font-size: 1.15rem; line-height:1.2; }
.tile__play { position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); z-index:2;
  width: 54px; height:54px; border-radius:50%; background: rgba(255,253,250,.18); backdrop-filter: blur(4px);
  border:1px solid rgba(255,253,250,.5); display:grid; place-items:center; transition: all .4s var(--ease); }
.tile:hover .tile__play { background: rgba(255,253,250,.3); transform: translate(-50%,-50%) scale(1.08); }
.tile__play svg { width: 18px; height:18px; fill: var(--ivory); margin-left: 2px; }
.tile[hidden]{ display:none; }

/* ---------- split / intro strip ---------- */
.split { display:grid; gap: clamp(32px,6vw,80px); align-items:center; grid-template-columns: 1fr; }
@media(min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split.reverse .split__media { order: 2; } }
.split__media img { width:100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.split__body .eyebrow { display:block; margin-bottom: 18px; }
.split__body h2 { margin-bottom: 22px; }
.split__body p + p { margin-top: 18px; }
.split__body .btn { margin-top: 32px; }
.stat-row { display:flex; gap: clamp(24px,4vw,48px); margin-top: 36px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 2.4rem; display:block; line-height:1; }
.stat span { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--taupe); }

/* ---------- services cards ---------- */
.cards { display:grid; gap: 20px; grid-template-columns: 1fr; margin-top: 56px; }
@media(min-width: 680px){ .cards { grid-template-columns: repeat(2,1fr); } }
@media(min-width: 1040px){ .cards.cards-4 { grid-template-columns: repeat(4,1fr); } }
.card {
  background: var(--ivory); border: 1px solid rgba(43,38,34,.08); border-radius: var(--radius);
  padding: clamp(28px,3vw,40px); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(43,38,34,.3); }
.card h3 { margin: 0 0 12px; }
.card p { color: var(--taupe); font-size: .98rem; }
.card ul { margin-top: 16px; }
.card ul li { font-size:.92rem; color: var(--taupe); padding-left: 20px; position: relative; margin-bottom: 7px; }
.card ul li::before { content:""; position:absolute; left:0; top:.7em; width:8px; height:1px; background: var(--camel); }

/* ---------- pricing ---------- */
.pricing { display:grid; gap: 20px; grid-template-columns: 1fr; margin-top: 56px; align-items:stretch; }
@media(min-width: 860px){ .pricing { grid-template-columns: repeat(3,1fr); } }
.price-card {
  background: var(--ivory); border:1px solid rgba(43,38,34,.1); border-radius: var(--radius);
  padding: clamp(30px,3.4vw,46px); display:flex; flex-direction:column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.price-card.featured { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.price-card.featured .price-card__from,
.price-card.featured li { color: rgba(255,253,250,.78); }
.price-card.featured li::before { background: var(--camel); }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(43,38,34,.35); }
.price-card__tag { font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; color: var(--camel); margin-bottom: 14px; }
.price-card h3 { margin-bottom: 6px; }
.price-card__from { font-size:.82rem; color: var(--taupe); margin-bottom: 22px; }
.price-card__price { font-family: var(--font-display); font-size: 2.8rem; line-height:1; }
.price-card__price small { font-size: .9rem; font-family: var(--font-body); color: var(--camel); letter-spacing:.05em; }
.price-card ul { margin: 24px 0 30px; flex: 1; }
.price-card li { font-size:.94rem; color: var(--taupe); padding-left: 22px; position:relative; margin-bottom: 11px; }
.price-card li::before { content:""; position:absolute; left:0; top:.62em; width:10px; height:1px; background: var(--camel); }
.price-note { text-align:center; font-size:.86rem; color: var(--taupe); margin-top: 26px; }

/* ---------- analytics ---------- */
.metrics { display:grid; gap: 14px; grid-template-columns: repeat(2,1fr); margin-top: 50px; }
@media(min-width: 760px){ .metrics { grid-template-columns: repeat(4,1fr); } }
.metric { background: var(--sand); border-radius: var(--radius); padding: clamp(26px,3vw,40px) 24px; text-align:center; }
.metric b { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); display:block; line-height:1; }
.metric span { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--taupe); margin-top:10px; display:block; }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq__list { max-width: 820px; margin: 50px auto 0; }
.faq__item { border-bottom: 1px solid rgba(43,38,34,.14); }
.faq__q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap: 24px;
  padding: 28px 0; font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.5rem); color: var(--espresso);
}
.faq__icon { flex-shrink:0; width: 22px; height:22px; position: relative; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; background: var(--mocha); transition: transform .4s var(--ease); }
.faq__icon::before { top:50%; left:0; width:100%; height:1.5px; transform: translateY(-50%); }
.faq__icon::after { left:50%; top:0; height:100%; width:1.5px; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height:0; overflow:hidden; transition: max-height .5s var(--ease); }
.faq__a p { padding-bottom: 28px; color: var(--taupe); max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--espresso); color: var(--ivory); text-align:center; }
.cta-band h2 { margin-bottom: 22px; }
.cta-band h2 em { font-style: italic; color: var(--camel); }
.cta-band p { color: rgba(255,253,250,.78); max-width: 50ch; margin: 0 auto 38px; }

/* ---------- contact ---------- */
.contact-grid { display:grid; gap: clamp(40px,6vw,80px); grid-template-columns: 1fr; }
@media(min-width: 940px){ .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.form-field { margin-bottom: 22px; }
.form-row { display:grid; gap: 22px; grid-template-columns: 1fr; }
@media(min-width: 560px){ .form-row { grid-template-columns: 1fr 1fr; } }
label { display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--taupe); margin-bottom: 9px; }
input, select, textarea {
  width:100%; font-family: var(--font-body); font-size: 1rem; color: var(--espresso);
  background: var(--ivory); border:1px solid rgba(43,38,34,.16); border-radius: var(--radius);
  padding: .95em 1.1em; transition: border-color .3s;
}
input:focus, select:focus, textarea:focus { outline:none; border-color: var(--camel); }
textarea { resize: vertical; min-height: 140px; }
.form-aside { background: var(--sand); border-radius: var(--radius); padding: clamp(30px,4vw,48px); align-self:start; }
.form-aside h3 { margin-bottom: 18px; }
.form-aside .contact-line { margin-bottom: 18px; }
.form-aside .contact-line span { font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--mocha); display:block; margin-bottom: 4px; }
.form-aside .contact-line a, .form-aside .contact-line p { font-family: var(--font-display); font-size: 1.3rem; }
.form-success { display:none; background: var(--sand); border-radius: var(--radius); padding: clamp(30px,4vw,48px); text-align:center; }
.form-success.show { display:block; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset:0; z-index: 200; background: rgba(28,24,21,.92); backdrop-filter: blur(8px);
  display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease), visibility .4s; }
.lightbox.open { opacity:1; visibility:visible; }
.lightbox__inner { position: relative; width: min(420px, 92vw); }
.lightbox video { width:100%; aspect-ratio:9/16; object-fit: cover; border-radius: var(--radius); background:#000; }
.lightbox__close { position:absolute; top:-44px; right:0; background:none; border:0; color: var(--ivory); cursor:pointer; font-size: 1.6rem; line-height:1; }
.lightbox__cap { color: var(--sand); text-align:center; margin-top: 16px; font-size:.85rem; letter-spacing:.04em; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: rgba(255,253,250,.7); padding-block: clamp(56px,7vw,90px) 36px; }
.footer-top { display:grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 56px; }
@media(min-width: 760px){ .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 68px; margin-bottom: 20px; }
.footer-brand p { max-width: 38ch; font-size:.95rem; }
.footer-col h4 { font-family: var(--font-body); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color: var(--camel); margin-bottom: 18px; }
.footer-col a { display:block; margin-bottom: 11px; font-size:.95rem; transition: color .3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { border-top: 1px solid rgba(255,253,250,.12); padding-top: 30px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.8rem; letter-spacing:.04em; }
.footer-legal { width:100%; display:flex; flex-wrap:wrap; gap: 8px 26px; margin-bottom: 10px; }
.footer-legal a { font-size:.8rem; color: rgba(255,253,250,.55); transition: color .3s; }
.footer-legal a:hover { color: var(--ivory); }

/* juridische pagina's */
.juridisch { max-width: 780px; }
.juridisch h1 { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 10px; }
.juridisch .lead { margin-bottom: 44px; }
.juridisch h2 { font-size: clamp(1.25rem,2.2vw,1.65rem); margin: 42px 0 12px; }
.juridisch h3 { font-size: clamp(1.05rem,1.8vw,1.25rem); margin: 26px 0 8px; }
.juridisch p, .juridisch li { color: var(--taupe); }
.juridisch p + p { margin-top: 12px; }
.juridisch ul { list-style: disc; padding-left: 22px; margin: 10px 0; }
.juridisch li { margin-bottom: 6px; }
.juridisch strong { color: var(--espresso); font-weight: 500; }

/* ---------- portfolio: album-kaarten ---------- */
.album-group { margin-top: clamp(48px, 6vw, 80px); }
.album-group__head { display:flex; align-items:baseline; gap: 18px; margin-bottom: 26px; }
.album-group__head h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.album-group__head span { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color: var(--taupe); }
.album-grid { display:grid; gap: clamp(12px,1.4vw,20px); grid-template-columns: repeat(2,1fr); }
@media(min-width: 720px){ .album-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width: 1080px){ .album-grid { grid-template-columns: repeat(4,1fr); } }
.album-card {
  position: relative; display:block; aspect-ratio: 4/5; overflow:hidden;
  border-radius: var(--radius); background: var(--sand);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.album-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(43,38,34,.35); }
.album-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.album-card:hover img { transform: scale(1.04); }
.album-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(43,38,34,.62)); }
.album-card__meta { position:absolute; left:18px; right:18px; bottom:18px; z-index:2; color: var(--ivory); }
.album-card__cat { font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color: var(--sand); display:block; margin-bottom:5px; }
.album-card__title { font-family: var(--font-display); font-size: clamp(1.05rem,1.6vw,1.35rem); line-height:1.2; }
/* variant zonder cover: rustig tekstvlak */
.album-card--tekst { display:flex; align-items:center; justify-content:center; text-align:center; padding: 24px; }
.album-card--tekst::after { display:none; }
.album-card--tekst .album-card__meta { position:static; color: var(--espresso); }
.album-card--tekst .album-card__cat { color: var(--mocha); }
.album-card--tekst .album-card__title { font-size: clamp(1.15rem,1.8vw,1.5rem); }
.album-card--tekst .album-card__note { display:block; margin-top:10px; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--taupe); }
.album-card--tekst:hover { background: var(--camel); }
.album-card--tekst:hover .album-card__meta, .album-card--tekst:hover .album-card__cat, .album-card--tekst:hover .album-card__note { color: var(--ivory); }

/* album-detail */
.album-detail__empty { background: var(--sand); border-radius: var(--radius); padding: clamp(40px,6vw,80px); text-align:center; }
.album-detail__empty h3 { margin-bottom: 12px; }
.album-detail__empty p { color: var(--taupe); max-width: 46ch; margin-inline:auto; }
.album-detail .grid { margin-top: 40px; }
/* album-tegels: thumbnails altijd zichtbaar, klik = vergroten */
.album-detail .tile { cursor: zoom-in; }
.album-detail .tile video { opacity: 1; }
/* lightbox-variant met vrije verhoudingen (foto's en liggende video's) */
.lightbox--vrij .lightbox__inner { width: auto; max-width: min(1100px, 92vw); }
.lightbox--vrij .lightbox__inner img,
.lightbox--vrij .lightbox__inner video { width: auto; max-width: 100%; max-height: 82vh; aspect-ratio: auto; object-fit: contain; background: #000; border-radius: var(--radius); display:block; margin-inline:auto; }

/* ---------- reveal animation ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ---------- mobile nav ---------- */
@media(max-width: 880px){
  .nav-toggle { display:block; }
  .nav {
    position: fixed; inset:0; flex-direction: column; justify-content:center; gap: 30px;
    background: var(--porcelain); transform: translateY(-100%);
    visibility: hidden;
    transition: transform .5s var(--ease), visibility 0s .5s;
  }
  body.menu-open .nav { transform: none; visibility: visible; transition: transform .5s var(--ease); }
  .nav a { color: var(--espresso) !important; font-size: 1.4rem; font-family: var(--font-display); letter-spacing:.05em; text-transform: none; }
  /* CTA volledig verborgen in telefoon-weergave (blijft bereikbaar via hero-, CTA- en footer-links) */
  .nav .nav-cta { display: none !important; }
  /* backdrop-filter op de gescrolde header maakt hem het referentiekader voor het
     fixed menupaneel; bij een open menu schakelen we blur/achtergrond uit zodat het
     paneel weer het volledige scherm bedekt */
  body.menu-open .site-header { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; padding-block: 22px; }
  body.menu-open .site-header::before { opacity: 0; }
  body.menu-open .site-header .logo-light { display: none; }
  body.menu-open .site-header .logo-dark { display: block; position: static; }
  body.menu-open .brand-logo { position: relative; z-index: 110; }
}

@media (prefers-reduced-motion: reduce){
  *:not(.marquee__track), *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
