:root{
  --bg: #faf7f2;
  --text: #3a3431;
  --muted: #8b8078;
  --rose: #b9896b;
  --rose-dark:#98684f;
  --card-bg: rgba(255,255,255,0.65);
  --border: rgba(185,137,107,0.35);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Lora', serif;
  background: var(--bg);
  color:var(--text);
}

/* HERO gebruikt je lokale marble-bg.jpg */
.hero{
  min-height: 88vh;
  display:flex;
  flex-direction:column;
  background:
    linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65)),
    url('images/marble-bg.jpg') center/cover no-repeat;
}
.topnav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px; position:sticky; top:0; z-index:20; backdrop-filter: blur(6px);
}
.brand{
  font-family:'Playfair Display',serif;
  font-weight:700;
  text-decoration:none;
  color:var(--rose-dark);
  text-transform:uppercase;
}
.brand span{ font-weight:600; opacity:.8; }
.navlinks{ list-style:none; display:flex; gap:28px; margin:0; padding:0; }
.navlinks a{ text-decoration:none; color:var(--text); font-weight:600; }
.navlinks a:hover{ color:var(--rose-dark); }
.hamburger{
  display:none;
  font-size:1.3rem;
  border:1px solid var(--border);
  background:#fff7;
  padding:.35rem .5rem;
  border-radius:8px;
}

.hero-inner{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
}
.logo{
  max-width:240px;
  height:auto;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  color:var(--rose-dark);
  font-weight:700;
  box-shadow:var(--shadow);
}
.btn-primary{
  background: linear-gradient(180deg,#fff,#f7ede7);
  border-color:var(--rose);
  color:var(--rose-dark);
}

/* Sections — hergebruik marble als subtiele achtergrond */
.section{
  padding:70px 0;
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    url('images/marble-bg.jpg') center/cover no-repeat fixed;
}
.container{ width:min(1100px, 92%); margin-inline:auto; }
h2{
  font-family:'Playfair Display',serif;
  font-size:40px;
  margin:0 0 22px;
  color:var(--rose-dark);
}

.card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* About */
.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.about .about-text{ padding:26px; }

/* About image */
.about-photo{
  height:320px; /* vaste hoogte */
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:0;
}

/* Placeholder visuals (alleen marble) */
.placeholder{
  background:url('images/marble-bg.jpg') center/cover no-repeat;
  height:320px;
}
.ph{
  background:linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url('images/marble-bg.jpg') center/cover no-repeat;
  height:240px;
  border-radius:18px;
}
.ph.tall{ height:300px; }

/* Services */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service{ padding:24px; text-align:center; }
.service .price{
  margin:8px 0 0;
  font-weight:700;
  color:var(--rose-dark);
}

/* Portfolio */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  border-radius:12px;
}
.gallery .tall{
  height:300px;
}
.portfolio .cta{ text-align:center; margin-top:26px; }

/* Contact */
.contact .contact-details{ padding:24px; }
.contact .small{ color:var(--muted); font-size:.95rem; }
.contact .contact-buttons{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}
.map .map-ph{
  display:grid;
  place-items:center;
  height:320px;
  color:var(--muted);
}

/* Footer */
.footer{
  padding:28px 0;
  text-align:center;
  background:#fffdfb;
  border-top:1px solid var(--border);
}
.footer p{ margin:0; color:var(--muted); }

/* Responsive */
@media (max-width:980px){
  .grid-2{ grid-template-columns:1fr; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:720px){
  .navlinks{ display:none; }
  .navlinks.open{
    display:flex;
    position:absolute;
    right:16px;
    top:56px;
    flex-direction:column;
    background:rgba(255,255,255,.95);
    border:1px solid var(--border);
    border-radius:12px;
    padding:10px 12px;
    gap:12px;
    box-shadow:var(--shadow);
  }
  .hamburger{ display:block; }
  /* Lagere hoogte voor foto's op mobiel */
  .gallery img{ height:180px; }
  .gallery .tall{ height:220px; }
  .about-photo{ height:240px; }
}