* { box-sizing: border-box; }

:root {
  --bg: #fff8f7;
  --bg-soft: #fffdfc;
  --panel: rgba(255,255,255,0.92);
  --text: #37272b;
  --muted: #725c62;
  --primary: #b14867;
  --primary-dark: #913852;
  --accent-strong: #bf8c77;
  --border: #f0ddd7;
  --shadow: 0 18px 44px rgba(145, 56, 82, 0.10);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 205, 217, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(237, 217, 207, 0.30), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.topbar {
  background: #8f3e58;
  color: rgba(255,255,255,0.96);
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 252, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 221, 215, 0.95);
}

.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo img {
  display: block;
  height: 68px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-weight: 700;
  color: var(--muted);
}

nav a:hover { color: var(--primary-dark); }

.hero {
  padding: 4rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  align-items: center;
}

.hero-logo {
  display: block;
  width: min(100%, 470px);
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
}

h1, h2 {
  margin: 0 0 1rem;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  max-width: 13ch;
}

p { color: var(--muted); }

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-points,
.locations,
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-points { margin-top: 1.3rem; }

.hero-points span,
.locations span,
.card-list div {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.btn-tertiary {
  background: rgba(255,255,255,0.72);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.hero-card,
.card,
.gallery-card,
.about-box,
.contact-box,
.cta-box,
.trust-item {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card,
.about-box { padding: 1.6rem; }

.mini-title {
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust { padding-bottom: 1rem; }

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

.trust-item {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
}

.section { padding: 4.5rem 0; }

.section-soft {
  background: linear-gradient(180deg, rgba(255, 232, 236, 0.22), rgba(255,255,255,0.10));
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 240, 243, 0.40), rgba(255,255,255,0.15));
}

.center { text-align: center; }

.section-heading { margin-bottom: 1.8rem; }

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

.card { padding: 1.3rem; }

.card h3,
.gallery-content h3,
.about-box h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

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

.gallery-card { overflow: hidden; }

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-content { padding: 1.05rem; }

.about-grid,
.contact-box,
.cta-box,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.about-box ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.cta-box,
.contact-box { padding: 1.8rem; }

.contact-details {
  display: grid;
  gap: 0.75rem;
}

.contact-details a,
.footer-links a {
  font-weight: 700;
  color: var(--primary-dark);
}

.site-footer {
  padding: 2rem 0;
  background: #8f3e58;
  color: rgba(255,255,255,0.96);
}

.footer-logo {
  display: block;
  height: 68px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 0.25rem 0.4rem;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a { color: rgba(255,255,255,0.95); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #25d366;
  color: white;
  font-weight: 700;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .hero-grid,
  .gallery,
  .about-grid,
  .contact-box,
  .cta-box,
  .footer-grid,
  .trust-grid,
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  h1 { max-width: none; }
}

@media (max-width: 720px) {
  .topbar-inner,
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  nav { justify-content: center; }

  .logo img { height: 58px; }

  .hero-grid,
  .gallery,
  .about-grid,
  .contact-box,
  .cta-box,
  .footer-grid,
  .trust-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; }

  .gallery-card img { height: 260px; }

  .section { padding: 3.5rem 0; }
}


/* Extra verbeteringen v3 */
.gallery-card h3 {
  line-height: 1.2;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 0.9rem;
  }

  .topbar-inner {
    align-items: center;
    text-align: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 0.85rem 1rem;
  }
}


/* Extra duidelijkheid v4 */
.gallery-content p {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .gallery-card img {
    height: 240px;
  }
}


/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.review-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.stars {
  color: #d29a2f;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.review-cta {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
