/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F7F0F0;
  --bg-alt: #F5EBEB;
  --hero-bg: #F9F0F0;
  --accent: #D4A5A5;
  --accent-deep: #C68B8B;
  --accent-hover: #B57A7A;
  --border: #E8D5D5;
  --text: #3D2B2B;
  --text-light: #5A3E3E;
  --text-muted: #8B6B6B;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  min-width: 320px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--accent-deep); }

/* ── Header ──────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
header nav { position: relative; }

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-check {
  display: none;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 150;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--accent-deep); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg);
}

.hero > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-decoration {
  width: 120px;
  height: 1px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.hero-decoration::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.hero-decoration--top { margin-bottom: 3rem; }
.hero-decoration--bottom { margin-top: 3rem; }

.hero h1 {
  font-size: 3.5rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}

.hero .btn-rose {
  border-color: #fff;
  color: #fff;
}
.hero .btn-rose:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-rose {
  border-color: var(--accent-deep);
  color: var(--text);
}
.btn-rose:hover {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}

/* ── Intro Strip ─────────────────────────────────────────── */
.intro-strip {
  display: block;
  width: 100%;
  padding: 6.5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}

.intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-icon {
  display: block;
  width: 10px;
  height: 10px;
  min-height: 10px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  margin: 0 auto 1.2rem auto;
}

.intro-item h3 {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.intro-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Section Divider ─────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background-color: #c9a0a0;
}

.divider-rings {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0 0px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.divider-rings svg {
  width: 90px;
  height: auto;
  display: block;
  isolation: isolate;
  overflow: visible;
}

/* ── Services ────────────────────────────────────────────── */
.services {
  padding: 7rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  transition: border-color 0.3s ease;
}
.service-card:hover {
  border-color: var(--accent-deep);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About ───────────────────────────────────────────────── */
.about {
  display: block;
  width: 100%;
  padding: 7rem 2rem;
  background: var(--bg-alt);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.about-inner {
  display: block;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem auto;
}
.about-inner > .about-divider:last-child {
  margin: 2.5rem auto 0 auto;
}

.about h2 {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
}

.about p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  max-width: 100%;
}

.about blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  max-width: 100%;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
  margin: 2rem auto 0 auto;
  padding: 0;
  border: none;
  line-height: 1.5;
}

/* ── Booking ─────────────────────────────────────────────── */
.booking {
  padding: 7rem 2rem;
  background: var(--bg);
  text-align: center;
}

.booking h2 {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.booking-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

/* Calendar */
.calendar-container {
  max-width: 460px;
  margin: 0 auto 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h3 {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}

.cal-nav {
  background: none;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: border-color 0.3s ease, color 0.3s ease;
  font-family: 'Jost', sans-serif;
}
.cal-nav:hover {
  border-color: var(--accent);
  color: var(--text);
}
.cal-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.calendar-weekdays span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  padding: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  cursor: default;
  border: none;
  background: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.cal-day.empty { visibility: hidden; }
.cal-day.past, .cal-day.sunday, .cal-day.closed { color: #D5C8C8; }
.cal-day.has-slots {
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 400;
  cursor: pointer;
}
.cal-day.has-slots:hover {
  background: var(--border);
}
.cal-day.fully-booked {
  color: #D5C8C8;
  text-decoration: line-through;
}
.cal-day.selected {
  background: var(--accent-deep);
  color: #fff;
}

.calendar-loading {
  text-align: center;
  padding: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Time slots */
.timeslots-container {
  max-width: 460px;
  margin: 0 auto 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
}

.timeslots-container h3 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.slot-btn {
  padding: 0.7rem;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s ease;
}
.slot-btn.available {
  color: var(--text);
  border-color: var(--accent);
}
.slot-btn.available:hover {
  background: var(--border);
}
.slot-btn.booked {
  color: #D5C8C8;
  border-color: #EAE0E0;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-btn.past-slot {
  color: #D5C8C8;
  border-color: #EAE0E0;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-btn.selected {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}

/* Booking form */
.booking-form-container {
  max-width: 460px;
  margin: 0 auto 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: left;
}

.booking-form-container h3 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.92rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-deep);
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Booking message */
.booking-message {
  max-width: 460px;
  margin: 0 auto;
  padding: 1.2rem;
  font-weight: 400;
  font-size: 0.92rem;
}
.booking-message.success {
  background: #EEF5EC;
  color: #3A5F34;
  border: 1px solid #C8DCC3;
}
.booking-message.error {
  background: #F9ECEE;
  color: #8B3A3A;
  border: 1px solid #E4C5C5;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 3rem;
}

.contact-inner {
  max-width: 500px;
  margin: 0 auto;
}

.contact-item {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-icon-link:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.contact-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1.5rem 0;
  line-height: 1.8;
}

.contact-inner a {
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-inner a:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--text) !important;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}
.social-link:hover {
  background: var(--text);
  color: var(--bg) !important;
}
.social-link:hover .contact-icon {
  stroke: var(--bg);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
}

/* ── Subpage shared styles ───────────────────────────────── */
.page-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-section h1 {
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
}

.page-section .page-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.page-section h2 {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.page-section h3 {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  margin: 2rem 0 1rem;
}

.page-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.page-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About page */
.about-section {
  margin-bottom: 3rem;
}

.about-section p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.reviews-placeholder {
  padding: 3rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-align: center;
  margin: 2rem 0;
}

.reviews-placeholder p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Photo Grid ─────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--bg-alt);
  box-shadow: 0 2px 12px rgba(61, 43, 43, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(61, 43, 43, 0.14);
}

/* ── Diensten Intro Grid ────────────────────────────────── */
.diensten-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.diensten-intro-card {
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.diensten-intro-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.diensten-intro-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-deep);
  padding: 1.2rem 1.5rem 0.5rem;
}

.diensten-intro-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  padding: 0 1.5rem 1.5rem;
}

/* ── Lightbox (dialog) ──────────────────────────────────── */
dialog.lightbox[open] {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 2rem;
  border: none;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

dialog.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

dialog.lightbox img {
  display: block;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vh - 4rem);
  object-fit: contain;
  border-radius: 8px;
}

dialog.lightbox .lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 44px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

/* ── Scroll Animations ──────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .logo { font-size: 1.125rem; letter-spacing: 0.1em; white-space: nowrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-check:checked ~ .nav-links { display: flex; }
  .nav-links a {
    padding: 0.8rem 0;
    font-size: 0.85rem;
  }
  .hero h1 { font-size: 2.4rem; }
  .hero { height: 85vh; }
  .intro-strip { padding: 3rem 1.5rem; }
  .intro-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about { padding: 5rem 1.5rem; }
  .booking { padding: 5rem 1.5rem; }
  .contact { padding: 5rem 1.5rem; }
  .timeslots-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-links { flex-direction: column; align-items: center; }
  .page-section { padding: 3rem 1.5rem; }
  .diensten-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .diensten-intro-card img { height: 220px; width: 100%; object-fit: cover; object-position: center; }
  .diensten-intro-card { text-align: center; }
  .photo-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .photo-grid img { height: 220px; }
  dialog.lightbox[open] { padding: 1rem; }
  dialog.lightbox img { max-width: calc(100vw - 2rem); max-height: calc(100vh - 2rem); }
  dialog.lightbox .lightbox-close { top: 0.5rem; right: 0.5rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.72rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 0.95rem; }
}
