/* ── VARIABELEN ── */
:root {
  --goud: #B8960C;
  --goud-licht: #D4AF37;
  --donker: #111;
  --donker-2: #1a1a1a;
  --wit: #faf7f2;
  --lichtgrijs: #f5f3f0;
}

/* ── BASIS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; background: var(--wit); color: #333; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--goud); }

/* ── GEDEELDE STIJLEN ── */
.sectie-label { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--goud); display: block; margin-bottom: 1rem; }
.sectie-titel { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15; color: var(--donker); margin-bottom: 1.5rem; }
.sectie-titel em { font-style: italic; color: var(--goud); }
.gouden-streep { width: 40px; height: 1px; background: var(--goud); margin-bottom: 1.5rem; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.zichtbaar { opacity: 1; transform: none; }

/* ── KNOPPEN ── */
.btn-wit, .btn-transparant, .btn-donker, .btn-goud-vol, .btn-rand-wit {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
}
.btn-wit { background: white; color: var(--donker); font-weight: 500; }
.btn-wit:hover { background: var(--goud-licht); transform: translateY(-2px); }
.btn-transparant { border: 1px solid rgba(255,255,255,0.6); color: white; }
.btn-transparant:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-donker { background: var(--donker); color: white; padding: 0.85rem 2rem; font-size: 0.68rem; }
.btn-donker:hover { background: var(--goud); }
.btn-goud-vol { background: var(--goud); color: var(--donker); padding: 1rem 2.5rem; font-weight: 500; }
.btn-goud-vol:hover { background: var(--goud-licht); transform: translateY(-2px); }
.btn-rand-wit { border: 1px solid rgba(255,255,255,0.2); color: #aaa; padding: 1rem 2.5rem; }
.btn-rand-wit:hover { border-color: var(--goud-licht); color: var(--goud-licht); }

/* ── TOPBALK ── */
.topbalk { background: var(--donker); color: #aaa; font-size: 0.72rem; letter-spacing: 0.08em; padding: 0.55rem 3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbalk a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.topbalk a:hover { color: var(--goud-licht); }
.topbalk-links, .topbalk-rechts { display: flex; gap: 1.5rem; align-items: center; }
.topbalk-scheider { color: #444; }

/* ── NAVIGATIE ── */
nav { position: sticky; top: 0; z-index: 200; background: rgba(250,247,242,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(184,150,12,0.15); padding: 0 3rem; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo-tekst { text-decoration: none; line-height: 1.1; display: flex; flex-direction: column; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.18em; background: linear-gradient(135deg, #9A7A2E, #D4AF37, #C9A84C, #E8C97A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Cormorant Garamond', serif; text-transform: uppercase; }
.nav-logo-tekst span { font-style: italic; font-size: 1.1rem; font-weight: 400; text-transform: none; letter-spacing: 0.08em; background: linear-gradient(135deg, #9A7A2E, #D4AF37, #C9A84C); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: 'Cormorant Garamond', serif; display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { display: block; padding: 0 1.4rem; height: 80px; line-height: 80px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; color: #555; font-weight: 400; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 1.4rem; right: 1.4rem; height: 2px; background: var(--goud); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: var(--donker); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-afspraak-knop { background: var(--donker); color: var(--wit) !important; padding: 0.7rem 1.8rem !important; height: auto !important; line-height: normal !important; letter-spacing: 0.15em !important; transition: background 0.3s !important; margin-left: 1rem; }
.nav-afspraak-knop::after { display: none !important; }
.nav-afspraak-knop:hover { background: var(--goud) !important; color: var(--donker) !important; }

/* ── HAMBURGER MENU── */
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 1rem; margin-right: -1rem; }
.hamburger span { display: block; width: 28px; height: 2.5px; background: var(--donker); transition: all 0.3s; border-radius: 2px; }

/* ── HERO SLIDER ── */
.hero { position: relative; height: calc(100vh - 117px); min-height: 500px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.actief { opacity: 1; }
.slide-afbeelding { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); }
.hero-tekst { position: absolute; left: 8%; top: 50%; transform: translateY(-50%); color: white; max-width: 520px; }
.hero-label { font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--goud-licht); margin-bottom: 1.2rem; opacity: 0.9; }
.hero-titel { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero-titel em { font-style: italic; color: var(--goud-licht); }
.hero-sub { font-size: 0.9rem; font-weight: 300; opacity: 0.85; margin-bottom: 2.5rem; line-height: 1.7; max-width: 380px; }
.hero-knoppen { display: flex; gap: 1rem; flex-wrap: wrap; }
.slider-pijl { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); color: white; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; transition: background 0.3s; user-select: none; }
.slider-pijl:hover { background: rgba(255,255,255,0.25); }
.slider-links { left: 1.5rem; }
.slider-rechts { right: 1.5rem; }
.slider-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.actief { background: var(--goud-licht); transform: scale(1.4); }

/* ── INTRO ── */
.intro { display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1200px; margin: 5rem auto; padding: 0 3rem; }
.intro-foto-wrap { position: relative; padding-right: 4rem; }
.intro-foto { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.intro-foto-placeholder { width: 100%; aspect-ratio: 4/5; background: #e8e4df; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; color: #aaa; font-size: 0.75rem; letter-spacing: 0.15em; }
.intro-foto-accent { position: absolute; bottom: -1.5rem; right: 2.5rem; width: 100px; height: 100px; border: 2px solid var(--goud); opacity: 0.3; pointer-events: none; }
.intro-tekst { padding-left: 2rem; }
.intro-tekst p { color: #666; font-size: 0.9rem; line-height: 1.9; margin-bottom: 1rem; }

/* ── KENMERKEN ── */
.kenmerken { background: var(--donker); padding: 4rem 3rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.kenmerk { text-align: center; padding: 2rem; border-right: 1px solid rgba(255,255,255,0.06); }
.kenmerk:last-child { border-right: none; }
.kenmerk-icoon { font-size: 1.8rem; margin-bottom: 1rem; display: block; color: var(--goud-licht); }
.kenmerk-titel { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--wit); margin-bottom: 0.5rem; font-weight: 400; }
.kenmerk-tekst { font-size: 0.75rem; color: #777; letter-spacing: 0.05em; line-height: 1.7; }

/* ── DIENSTEN ── */
.diensten { padding: 6rem 3rem; background: var(--lichtgrijs); }
.sectie-header { text-align: center; margin-bottom: 3.5rem; }
.sectie-header .gouden-streep { margin: 1rem auto; }
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; max-width: 1100px; margin: 0 auto; background: rgba(184,150,12,0.12); }
.dienst { background: var(--wit); padding: 2.5rem 2rem; position: relative; transition: box-shadow 0.3s; }
.dienst:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); z-index: 1; }
.dienst-nr { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(184,150,12,0.1); line-height: 1; position: absolute; top: 1.5rem; right: 1.5rem; }
.dienst h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--donker); margin-bottom: 0.6rem; }
.dienst p { font-size: 0.82rem; color: #777; line-height: 1.8; margin-bottom: 1.2rem; }
.dienst-prijs { font-size: 0.72rem; color: var(--goud); letter-spacing: 0.08em; font-weight: 500; }
.dienst-lijn { width: 30px; height: 1px; background: var(--goud); margin-bottom: 1rem; transition: width 0.4s; }
.dienst:hover .dienst-lijn { width: 60px; }

/* ── GALERIJ ── */
.galerij { padding: 6rem 3rem; background: var(--wit); }
.galerij-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 250px 250px; gap: 6px; max-width: 1100px; margin: 3rem auto 0; }
.galerij-item { overflow: hidden; position: relative; background: #e0dbd5; }
.galerij-item:first-child { grid-column: 1; grid-row: 1 / 3; }
.galerij-item:nth-child(3) { grid-column: 3 / 5; }
.galerij-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.galerij-item:hover img { transform: scale(1.05); }
.galerij-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.galerij-item:hover .galerij-overlay { background: rgba(0,0,0,0.25); }
.galerij-plus { color: white; font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.galerij-item:hover .galerij-plus { opacity: 1; }
.galerij-instagram-link { text-align: center; margin-top: 2rem; }
.galerij-instagram-link a { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goud); text-decoration: none; border-bottom: 1px solid rgba(184,150,12,0.3); padding-bottom: 2px; transition: border-color 0.3s; }
.galerij-instagram-link a:hover { border-color: var(--goud); }

/* ── AFSPRAAK ── */
.afspraak-banner { background: var(--donker-2); padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.afspraak-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,150,12,0.06) 0%, transparent 70%); }
.afspraak-banner-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.afspraak-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--wit); margin-bottom: 1rem; }
.afspraak-banner h2 em { font-style: italic; color: var(--goud-licht); }
.afspraak-banner p { color: #777; font-size: 0.85rem; margin-bottom: 2.5rem; line-height: 1.8; }
.afspraak-opties { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-rij { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.contact-blokje { text-align: center; }
.contact-blokje-label { font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--goud); display: block; margin-bottom: 0.35rem; }
.contact-blokje-waarde { font-size: 0.82rem; color: #999; }
.contact-blokje-waarde a { color: #999; text-decoration: none; transition: color 0.2s; }
.contact-blokje-waarde a:hover { color: var(--goud-licht); }

/* ── FOOTER ── */
footer { background: var(--donker); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(184,150,12,0.12); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--goud); letter-spacing: 0.12em; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a { color: #555; text-decoration: none; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: var(--goud); }
.footer-copy { color: #444; font-size: 0.68rem; letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .topbalk { display: none; }
  nav { padding: 0 1.5rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(250,247,242,0.98); backdrop-filter: blur(10px); flex-direction: column; padding: 2rem; border-bottom: 1px solid rgba(184,150,12,0.15); z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: normal; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.85rem; }
  .nav-afspraak-knop { margin-left: 0 !important; margin-top: 1rem; text-align: center; }
  .intro { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .intro-foto-wrap { padding-right: 0; margin-bottom: 2rem; }
  .intro-tekst { padding-left: 0; }
  .kenmerken { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: 1fr; }
  .galerij-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .galerij-item:first-child, .galerij-item:nth-child(3) { grid-column: auto; grid-row: auto; }
  .diensten, .galerij, .afspraak-banner { padding: 4rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-nav { justify-content: center; }
}