/* ════════════════════════════════════════
   DE KAAIMAN TATTOOS — stylesheet
   ════════════════════════════════════════ */

:root {
  --ink: #0e0b08;
  --parchment: #f5efe3;
  --cream: #ede4d0;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --red: #9b1b1b;
  --red-dark: #6b1010;
  --open-green: #2d7a3a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.4;
}





/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; margin: 2rem auto; max-width: 600px; }
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.divider-icon { color: var(--gold); font-size: 1.2rem; line-height: 1; }


/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(14,11,8,0.98);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.3s; gap: 1rem;
}
nav.scrolled { border-bottom-color: rgba(200,146,42,0.3); }

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; mix-blend-mode: screen; opacity: 0.95; transition: opacity 0.2s; }
.nav-logo img:hover { opacity: 1; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--cream); text-decoration: none; font-family: 'Crimson Text', serif; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

/* ── TAALWISSELAAR ── */
.lang-switch {
  display: flex; align-items: center; gap: 0.3rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none; border: none;
  color: var(--cream); opacity: 0.45;
  font-family: 'Crimson Text', serif;
  font-size: 0.85rem; letter-spacing: 0.1em;
  cursor: pointer; padding: 0.2rem 0.3rem;
  transition: color 0.2s, opacity 0.2s;
}
.lang-btn:hover { opacity: 0.8; }
.lang-btn.active { color: var(--gold); opacity: 1; font-weight: 600; }
.lang-sep { color: var(--gold); opacity: 0.3; font-size: 0.75rem; }
.drawer-lang { margin-top: 0.5rem; }


/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 300; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 7, 4, 0.97);
  z-index: 150;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-drawer.open { display: flex; opacity: 1; }
.nav-drawer a { color: var(--cream); text-decoration: none; font-family: 'Rye', cursive; font-size: 1.6rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }


/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
@media (max-width: 768px) {
  #hero {
    padding-top: 6rem;
    justify-content: flex-start;
    padding-bottom: 4rem;
  }
}

#hero::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(155,27,27,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-frame {
  border: 1px solid rgba(200,146,42,0.35); padding: 3.5rem 4rem;
  max-width: 750px; width: 100%; position: relative;
  animation: fadeIn 1.4s ease both;
}
.hero-frame::before, .hero-frame::after,
.hero-frame .corner-br, .hero-frame .corner-bl {
  content: '✦'; position: absolute; color: var(--gold); font-size: 1rem;
}
.hero-frame::before  { top: -0.6rem; left: -0.6rem; }
.hero-frame::after   { top: -0.6rem; right: -0.6rem; }
.hero-frame .corner-br { bottom: -0.6rem; right: -0.6rem; }
.hero-frame .corner-bl { bottom: -0.6rem; left: -0.6rem; }
.hero-logo {
  width: min(480px, 90%);
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.97;
  margin: 0.5rem auto;
  display: block;
  animation: fadeIn 1.6s 0.4s ease both;
}
.hero-eyebrow { font-family: 'Crimson Text', serif; font-style: italic; color: var(--gold); letter-spacing: 0.25em; font-size: 0.95rem; text-transform: uppercase; margin-bottom: 1.2rem; animation: fadeIn 1.6s 0.2s ease both; }
.hero-subtitle { font-family: 'Rye', cursive; font-size: clamp(1.2rem, 3vw, 2rem); color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.08em; animation: fadeIn 1.6s 0.5s ease both; }
.hero-tagline { font-family: 'Crimson Text', serif; font-style: italic; color: var(--cream); font-size: 1.2rem; opacity: 0.8; animation: fadeIn 1.6s 0.7s ease both; }
.hero-cta { display: inline-block; margin-top: 2.5rem; padding: 0.9rem 2.5rem; background: var(--red); color: var(--parchment); font-family: 'Crimson Text', serif; font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--red-dark); transition: background 0.25s, transform 0.2s; animation: fadeIn 1.6s 1s ease both; }
.hero-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
.hero-watermark { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); opacity: 0.04; width: min(700px, 90vw); pointer-events: none; }
.scroll-arrow { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--gold); opacity: 0.6; font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }


/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-label { font-family: 'Crimson Text', serif; font-style: italic; color: var(--gold); letter-spacing: 0.25em; font-size: 0.85rem; text-transform: uppercase; display: block; text-align: center; margin-bottom: 0.5rem; }
.section-title { font-family: 'Rye', cursive; font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; color: var(--parchment); margin-bottom: 0.5rem; letter-spacing: 0.03em; }


/* ── LIGHTBOX ── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(8,6,4,0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); align-items: center; justify-content: center; }
#lightbox.active { display: flex; animation: lbFadeIn 0.3s ease both; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
#lightboxImgWrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 70px 60px; }
#lightboxImg { max-width: 100%; max-height: 100%; object-fit: contain; border: 1px solid rgba(200,146,42,0.3); box-shadow: 0 0 60px rgba(0,0,0,0.8); opacity: 1; filter: none; transition: opacity 0.15s ease; animation: lbZoomIn 0.3s ease both; }
@keyframes lbZoomIn { from { transform: scale(0.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#lightboxClose { position: fixed; top: 1rem; right: 1rem; background: rgba(14,11,8,0.85); border: 1px solid rgba(200,146,42,0.4); color: var(--gold); font-size: 1.1rem; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 501; }
#lightboxClose:hover { background: rgba(155,27,27,0.7); border-color: var(--red); color: var(--parchment); }
#lightboxPrev, #lightboxNext { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(14,11,8,0.7); border: 1px solid rgba(200,146,42,0.3); color: var(--gold); font-size: 1.3rem; width: 48px; height: 48px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 501; }
#lightboxPrev { left: 0.5rem; }
#lightboxNext { right: 0.5rem; }
#lightboxPrev:hover, #lightboxNext:hover { background: rgba(200,146,42,0.15); border-color: var(--gold); }
.slide-item { cursor: zoom-in; }


/* ── FOTO SLIDER ── */
#fotos { padding: 6rem 0; background: #080604; border-top: 1px solid rgba(200,146,42,0.15); border-bottom: 1px solid rgba(200,146,42,0.15); overflow: hidden; }
#fotos .section-inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.slider-wrapper { position: relative; width: 100%; margin-top: 3rem; }
.slider-wrapper::before, .slider-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.slider-wrapper::before { left: 0; background: linear-gradient(to right, #080604, transparent); }
.slider-wrapper::after  { right: 0; background: linear-gradient(to left, #080604, transparent); }
.slider-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0.5rem 80px; cursor: grab; }
.slider-track:active { cursor: grabbing; }
.slider-track::-webkit-scrollbar { display: none; }
.slide-item { flex: 0 0 auto; width: 320px; height: 360px; scroll-snap-align: start; position: relative; overflow: hidden; border: 1px solid rgba(200,146,42,0.2); transition: border-color 0.3s; }
.slide-item:hover { border-color: rgba(200,146,42,0.6); }
.slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.4s ease; background: #1a1410; filter: sepia(60%) saturate(80%) hue-rotate(5deg) brightness(0.85); }
.slide-item:hover img { transform: scale(1.04); filter: none; }
.slide-item::after { content: ''; position: absolute; inset: 0; background: rgba(200,146,42,0.15); mix-blend-mode: multiply; pointer-events: none; transition: opacity 0.4s; }
.slide-item:hover::after { opacity: 0; }
.slider-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.slider-btn { width: 42px; height: 42px; border: 1px solid rgba(200,146,42,0.4); background: transparent; color: var(--gold); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.slider-btn:hover { background: rgba(200,146,42,0.1); border-color: var(--gold); }
.slider-hint { text-align: center; margin-top: 0.8rem; font-style: italic; font-size: 0.85rem; color: var(--cream); opacity: 0.35; }


/* ── OVER ONS ── */
#over { background: linear-gradient(180deg, var(--ink) 0%, #120d09 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-text p { color: var(--cream); margin-bottom: 1.2rem; font-size: 1.1rem; opacity: 0.9; }
.style-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.badge { padding: 0.4rem 1.2rem; border: 1px solid var(--gold); color: var(--gold); font-family: 'Crimson Text', serif; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; }
.about-illustration { display: flex; align-items: center; justify-content: center; }
.illus-frame { width: 100%; max-width: 340px; aspect-ratio: 3/4; border: 2px solid rgba(200,146,42,0.4); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.illus-frame::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(200,146,42,0.2); }
.illus-svg { width: 75%; opacity: 0.85; }


/* ── STIJLEN ── */
#stijlen { background: #0a0806; border-top: 1px solid rgba(200,146,42,0.15); border-bottom: 1px solid rgba(200,146,42,0.15); }
.styles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.style-card { background: #100d0a; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.3s; }
.style-card:hover { background: #161009; }
.style-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.style-card:hover::before { transform: scaleY(1); }
.style-card-num { font-family: 'Rye', cursive; font-size: 3rem; color: rgba(200,146,42,0.12); line-height: 1; margin-bottom: 0.5rem; }
.style-card-title { font-family: 'Rye', cursive; font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.style-card-text { color: var(--cream); font-size: 1rem; opacity: 0.8; line-height: 1.7; }


/* ── OPENINGSTIJDEN ── */
#openingstijden { background: linear-gradient(180deg, #0a0806 0%, var(--ink) 100%); }
.hours-table { max-width: 540px; margin: 3rem auto 0; border: 1px solid rgba(200,146,42,0.25); }
.hours-row { display: grid; grid-template-columns: 1fr 1fr; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(200,146,42,0.1); position: relative; }
.hours-row:last-child { border-bottom: none; }
.hours-row.is-today { background: rgba(200, 146, 42, 0.08); }
.hours-row.is-today .day-name, .hours-row.is-today .hours-time { color: var(--gold-light); }
.hours-row.is-open { background: rgba(29, 65, 35, 0.3); }
.hours-row.is-open .day-name   { color: #6fcf7a; }
.hours-row.is-open .hours-time { color: #6fcf7a; font-weight: 600; }
.hours-row.is-open::before { content: '●'; position: absolute; left: 0.5rem; top: 50%; transform: translateY(-50%); color: var(--open-green); font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hours-row.is-closed { opacity: 0.45; }
.day-name  { font-family: 'Crimson Text', serif; font-size: 1.05rem; letter-spacing: 0.05em; color: var(--cream); }
.hours-time { font-family: 'Crimson Text', serif; font-size: 1.05rem; color: var(--cream); text-align: right; }
.open-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(29,65,35,0.5); border: 1px solid var(--open-green); color: #6fcf7a; font-family: 'Crimson Text', serif; font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.35rem 1rem; margin: 1.5rem auto 0; width: fit-content; }
.open-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--open-green); animation: pulse 2s infinite; }
.holiday-notice { text-align: center; margin-top: 1rem; font-family: 'Crimson Text', serif; font-style: italic; font-size: 0.9rem; color: var(--cream); opacity: 0.45; }


/* ── PRIJZEN ── */
#prijzen { background: #0a0806; border-top: 1px solid rgba(200,146,42,0.15); border-bottom: 1px solid rgba(200,146,42,0.15); }
.pricing-text { max-width: 680px; margin: 2rem auto 0; color: var(--cream); font-size: 1.1rem; opacity: 0.9; line-height: 1.8; }
.pricing-text p { margin-bottom: 1.2rem; }
.pricing-text p:last-child { margin-bottom: 0; }
.pricing-highlight { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin: 2.5rem auto; max-width: 400px; border: 1px solid rgba(200,146,42,0.3); padding: 1.5rem 2rem; text-align: center; }
.pricing-highlight-label { font-family: 'Crimson Text', serif; font-style: italic; color: var(--cream); opacity: 0.7; font-size: 1rem; letter-spacing: 0.08em; }
.pricing-highlight-amount { font-family: 'Rye', cursive; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.pricing-highlight-sub { font-family: 'Crimson Text', serif; font-size: 0.85rem; color: var(--cream); opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase; }


/* ── AFSPRAAK ── */
#afspraak { background: var(--ink); text-align: center; }
.booking-box { max-width: 820px; margin: 3rem auto 0; border: 1px solid rgba(200,146,42,0.3); padding: 3rem; position: relative; }
.booking-box::before, .booking-box::after, .booking-box .c1, .booking-box .c2 { content: '◆'; position: absolute; color: var(--gold); font-size: 0.7rem; }
.booking-box::before { top: -0.4rem; left: -0.4rem; }
.booking-box::after  { top: -0.4rem; right: -0.4rem; }
.booking-box .c1     { bottom: -0.4rem; right: -0.4rem; }
.booking-box .c2     { bottom: -0.4rem; left: -0.4rem; }
.booking-text { color: var(--cream); opacity: 0.85; margin-bottom: 2rem; font-size: 1.1rem; }
.booking-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary { display: inline-block; padding: 0.9rem 2.2rem; background: transparent; color: var(--gold); font-family: 'Crimson Text', serif; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold); transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s; }
.btn-primary:hover { background: var(--red); color: var(--parchment); border-color: var(--red-dark); transform: translateY(-2px); }

.btn-fresha { display: inline-block; padding: 0.9rem 2.2rem; background: transparent; color: var(--gold); font-family: 'Crimson Text', serif; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold); transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s; }
.btn-fresha:hover { background: #7b4fe0; color: #ffffff; border-color: #6a3cc9; transform: translateY(-2px); }


/* ── CONTACTFORMULIER ── */
.contact-form-divider { display: flex; align-items: center; gap: 1rem; margin: 0 0 2rem; }
.contact-form { text-align: left; margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-family: 'Crimson Text', serif; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.form-group input, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,146,42,0.25); color: var(--parchment); font-family: 'Crimson Text', serif; font-size: 1rem; padding: 0.75rem 1rem; outline: none; width: 100%; transition: border-color 0.25s; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(237,228,208,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(200,146,42,0.6); }
.file-upload-wrapper { display: flex; flex-direction: column; gap: 0.5rem; }
.file-upload-wrapper input[type="file"] { display: none; }
.file-upload-label { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.2rem; border: 1px dashed rgba(200,146,42,0.35); color: var(--cream); opacity: 0.7; font-family: 'Crimson Text', serif; font-size: 0.95rem; cursor: pointer; width: fit-content; transition: border-color 0.2s, opacity 0.2s; }
.file-upload-label:hover { border-color: var(--gold); opacity: 1; }
.file-upload-name { font-family: 'Crimson Text', serif; font-style: italic; font-size: 0.85rem; color: var(--cream); opacity: 0.4; }
.btn-submit { display: block; width: 100%; margin-top: 1.5rem; padding: 1rem; background: transparent; color: var(--gold); font-family: 'Crimson Text', serif; font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid var(--gold); cursor: pointer; transition: background 0.25s, color 0.25s, transform 0.2s; }
.btn-submit:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }


/* ── REVIEWS ── */
#reviews { background: #0a0806; border-top: 1px solid rgba(200,146,42,0.15); border-bottom: 1px solid rgba(200,146,42,0.15); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.review-card { background: #100d0a; border: 1px solid rgba(200,146,42,0.15); padding: 2rem; position: relative; transition: border-color 0.3s; display: flex; flex-direction: column; }
.review-card:hover { border-color: rgba(200,146,42,0.4); }
.review-card::before { content: '\201C'; position: absolute; top: 1rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(200,146,42,0.08); line-height: 1; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.review-text { color: var(--cream); font-size: 1rem; font-style: italic; line-height: 1.75; opacity: 0.85; flex: 1; margin-bottom: 1.5rem; }
.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(200,146,42,0.1); padding-top: 1rem; margin-top: auto; }
.review-author { font-family: 'Crimson Text', serif; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.review-source { display: flex; align-items: center; gap: 0.4rem; font-family: 'Crimson Text', serif; font-size: 0.8rem; color: var(--cream); opacity: 0.4; letter-spacing: 0.05em; text-decoration: none; transition: opacity 0.2s; }
.review-source:hover { opacity: 0.7; }
.review-source-icon { width: 14px; height: 14px; flex-shrink: 0; }
.reviews-source-note { text-align: center; margin-top: 2rem; font-style: italic; font-size: 0.9rem; color: var(--cream); opacity: 0.35; }
.reviews-source-note a { color: var(--cream); opacity: 0.7; text-decoration: none; transition: opacity 0.2s; }
.reviews-source-note a:hover { opacity: 1; color: var(--gold); }


/* ── FAQ ── */
#faq { background: var(--ink); border-top: 1px solid rgba(200,146,42,0.15); }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid rgba(200,146,42,0.15); }
.faq-item:first-child { border-top: 1px solid rgba(200,146,42,0.15); }
.faq-question { width: 100%; background: none; border: none; color: var(--parchment); font-family: 'Crimson Text', serif; font-size: 1.1rem; text-align: left; padding: 1.3rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; flex-shrink: 0; transition: transform 0.3s ease; display: inline-block; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer > div { padding-bottom: 1.3rem; }
.faq-answer p { color: var(--cream); font-size: 1rem; line-height: 1.75; opacity: 0.85; margin-bottom: 0.5rem; }
.faq-answer ul { list-style: none; margin-top: 0.5rem; }
.faq-answer ul li { color: var(--cream); font-size: 1rem; line-height: 1.75; opacity: 0.85; padding-left: 1.2rem; position: relative; }
.faq-answer ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; }


/* ── FOOTER ── */
footer { background: #060403; border-top: 1px solid rgba(200,146,42,0.2); padding: 4rem 2rem 2rem; text-align: center; }
.footer-logo-img { width: 200px; height: auto; mix-blend-mode: screen; opacity: 0.7; margin: 0 auto 1rem; display: block; }
.footer-tagline { font-style: italic; color: var(--cream); opacity: 0.5; margin-bottom: 2rem; font-size: 1rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 700px; margin: 0 auto 3rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label { font-family: 'Crimson Text', serif; font-style: italic; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-value { color: var(--cream); font-size: 1rem; text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.contact-value:hover { opacity: 1; color: var(--gold); }
.footer-copy { color: var(--cream); opacity: 1; font-size: 0.85rem; margin-top: 2rem; }
.duonova-link { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.duonova-link:hover { color: var(--red); }


/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 1.5rem; left: 1.5rem; max-width: 340px; background: #1a1410; border: 1px solid rgba(200,146,42,0.35); padding: 1.2rem 1.4rem; z-index: 400; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 4px 30px rgba(0,0,0,0.5); animation: cookieSlideIn 0.4s ease both; }
.cookie-banner.hidden { display: none; }
@keyframes cookieSlideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.cookie-text { display: flex; gap: 0.8rem; align-items: flex-start; }
.cookie-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.cookie-text p { font-family: 'Crimson Text', serif; font-size: 0.9rem; color: var(--cream); opacity: 0.85; line-height: 1.5; }
.cookie-text strong { color: var(--gold); font-weight: 600; }
.cookie-btn { align-self: flex-end; padding: 0.5rem 1.4rem; background: transparent; color: var(--gold); font-family: 'Crimson Text', serif; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--gold); cursor: pointer; transition: background 0.2s, color 0.2s; }
.cookie-btn:hover { background: var(--gold); color: var(--ink); }


/* ── ANIMATIES ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0.9rem 1.2rem;
    min-height: 64px;
  }
  .nav-links { display: none; }
  .lang-switch:not(.drawer-lang) { display: none; }
  .nav-hamburger { display: flex; }

  .hero-frame { padding: 2rem 1.2rem; text-align: center; }
  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; }
  .hero-logo { width: min(340px, 80vw); margin: 0.5rem auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-illustration { display: none; }
  .styles-grid { grid-template-columns: 1fr; }
  .slide-item { width: 260px; height: 290px; }

  .booking-box { padding: 2rem 1.5rem; }
  .booking-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-primary, .btn-fresha { text-align: center; width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  #lightboxImgWrap { padding: 56px 10px 10px; }
  #lightboxPrev { left: 0.25rem; width: 38px; height: 38px; font-size: 1rem; }
  #lightboxNext { right: 0.25rem; width: 38px; height: 38px; font-size: 1rem; }
  #lightboxClose { top: 0.75rem; right: 0.75rem; width: 38px; height: 38px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-highlight { flex-direction: column; gap: 0.5rem; text-align: center; }

  .cookie-banner { left: 1rem; right: 1rem; max-width: none; bottom: 1rem; }
}
