@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green:       #2C5F2E;
  --green-dark:  #1A3D1C;
  --green-light: #EDF4ED;
  --gold:        #C8860A;
  --cream:       #F5F0E8;
  --bg:          #FAFAF7;
  --white:       #FFFFFF;
  --text:        #2A2A2A;
  --text-muted:  #6B6B6B;
  --border:      #E0D8CF;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
  --radius:      12px;
  --radius-lg:   24px;
  --max-w:       1180px;
  --nav-h:       72px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p { max-width: 65ch; }

.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding-block: 80px; }
.section-sm { padding-block: 48px; }
.section-bg { background: var(--cream); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; color: var(--green-dark); }
.section-sub { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 2.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9375rem;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a56f08; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--cream); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }

/* Navigation */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
  background: transparent;
}
.site-header.scrolled { background: var(--white); box-shadow: var(--shadow-sm); }
.site-header.solid { background: var(--white); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); transition: color .3s; }
.logo-name em { font-style: italic; color: #F5DFA0; }
.site-header.scrolled .logo-name,
.site-header.solid .logo-name { color: var(--green-dark); }
.site-header.solid .logo-name em { color: var(--gold); }
.site-header.scrolled .logo-name em { color: var(--gold); }
.logo-tagline { font-size: .6875rem; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; transition: color .3s; }
.site-header.scrolled .logo-tagline,
.site-header.solid .logo-tagline { color: var(--text-muted); }

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu a {
  display: block;
  font-size: .77rem;
  padding: .35rem .38rem;
  white-space: nowrap;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.site-header.scrolled .nav-menu a,
.site-header.solid .nav-menu a { color: var(--text); }
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.15); }
.site-header.scrolled .nav-menu a:hover,
.site-header.solid .nav-menu a:hover { color: var(--green); background: var(--green-light); }
.nav-menu a.active { color: var(--white); background: rgba(255,255,255,.2); }
.site-header.scrolled .nav-menu a.active,
.site-header.solid .nav-menu a.active { color: var(--green); background: var(--green-light); }

.nav-book { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span { background: var(--green-dark); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--green-dark);
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.55) 100%);
}
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 680px; }
.hero-label { font-size: .8125rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; opacity: .8; margin-bottom: 1rem; }
.hero h1 { margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero-sub { font-size: 1.125rem; opacity: .9; margin-bottom: 2rem; max-width: 55ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (inner pages) */
.page-hero {
  height: 42vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-color: var(--green-dark);
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 100%);
}
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.page-hero h1 { margin-bottom: .4rem; }
.page-hero-sub { opacity: .85; font-size: 1.0625rem; }

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.75rem; }
.card-badge {
  display: inline-block;
  background: var(--green-light); color: var(--green);
  font-size: .75rem; font-weight: 600;
  padding: .25rem .75rem; border-radius: 50px; margin-bottom: .75rem;
}

/* Property cards */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.property-card .card-body { padding: 2rem; }
.property-card h3 { color: var(--green-dark); margin-bottom: .75rem; }
.property-meta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.property-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .875rem; color: var(--text-muted); }
.property-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .75rem; margin-bottom: 1.5rem;
}
.property-feature { display: flex; align-items: center; gap: .4rem; font-size: .875rem; color: var(--text-muted); }
.property-feature::before { content: '✓'; color: var(--green); font-weight: 700; }

/* Highlights / USPs */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.highlight {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.highlight-icon { font-size: 2.25rem; margin-bottom: .875rem; }
.highlight h4 { font-family: 'Playfair Display', serif; color: var(--green-dark); margin-bottom: .4rem; }
.highlight p { font-size: .9rem; color: var(--text-muted); margin-inline: auto; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: border-color .3s;
}
.pricing-card.featured { border-color: var(--green); position: relative; }
.pricing-card.featured::before {
  content: 'Meest gekozen';
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 600; padding: .2rem .75rem;
  border-radius: 0 0 8px 8px;
}
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.375rem; color: var(--green-dark); margin-bottom: .2rem; }
.pricing-capacity { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.pricing-table th, .pricing-table td { padding: .6rem .5rem; font-size: .9rem; text-align: left; }
.pricing-table th {
  color: var(--text-muted); font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
}
.pricing-table td { border-bottom: 1px solid var(--border); color: var(--text); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 600; color: var(--green); }
.pricing-includes { padding-top: 1.25rem; border-top: 1px solid var(--border); }
.pricing-includes h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.pricing-includes li { display: flex; align-items: center; gap: .4rem; font-size: .875rem; color: var(--text-muted); margin-bottom: .3rem; }
.pricing-includes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Gallery */
.gallery-section-title { margin-bottom: 1.5rem; color: var(--green-dark); }
.gallery-block { margin-bottom: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: .75rem; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease), filter .4s var(--ease);
  will-change: transform;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  filter: contrast(1.08) saturate(1.05);
}
.gallery-item:hover img { transform: scale(1.06); filter: contrast(1.1) saturate(1.08) brightness(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,.3); }
.gallery-overlay svg { color: var(--white); opacity: 0; transition: opacity .3s; width: 36px; height: 36px; }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.93); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: var(--white); font-size: 2.25rem; line-height: 1;
  cursor: pointer; opacity: .6; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-counter { position: absolute; bottom: 1.25rem; color: rgba(255,255,255,.6); font-size: .875rem; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: .875rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
label .req { color: #c00; }
input[type=text], input[type=email], input[type=tel],
input[type=date], input[type=number], select, textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .9375rem; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,95,46,.12);
}
textarea { resize: vertical; min-height: 110px; }
select { cursor: pointer; }
.form-note { font-size: .8125rem; color: var(--text-muted); margin-top: .35rem; }

.radio-group { display: flex; flex-wrap: wrap; gap: .75rem; }
.radio-option {
  display: flex; align-items: center; gap: .5rem;
  cursor: pointer; padding: .6rem 1.25rem;
  border: 1.5px solid var(--border); border-radius: 50px; font-size: .9375rem;
  transition: all .2s; user-select: none;
}
.radio-option input[type=radio] { display: none; }
.radio-option.checked { border-color: var(--green); background: var(--green-light); color: var(--green); font-weight: 500; }

.form-result {
  display: none; padding: 1rem 1.25rem; border-radius: 8px;
  margin-top: 1rem; font-size: .9375rem; font-weight: 500;
}
.form-result.success { background: var(--green-light); color: var(--green-dark); display: block; }
.form-result.error { background: #fde8e8; color: #b00; display: block; }

.submit-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-method-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.contact-method-value { font-size: .9375rem; color: var(--text); line-height: 1.5; }
.contact-method-value a:hover { color: var(--green); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: var(--white);
  padding: .85rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; margin-top: .5rem;
  transition: background .2s, transform .2s;
}
.whatsapp-btn:hover { background: #1db954; transform: translateY(-2px); }

.platform-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.platform-link {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; border: 1.5px solid var(--border); border-radius: 50px;
  font-size: .875rem; font-weight: 500; transition: all .2s;
}
.platform-link:hover { border-color: var(--green); color: var(--green); }

/* CTA section */
.cta-section { background: var(--green); padding-block: 80px; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.0625rem; margin-inline: auto; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.amenity-group { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.amenity-group-title {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif; color: var(--green-dark);
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.amenity-icon { font-size: 1.25rem; }
.amenity-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: var(--text-muted);
  padding: .3rem 0; border-bottom: 1px solid var(--border);
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
.about-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.about-content h2 { color: var(--green-dark); margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

/* Alert */
.alert { padding: 1rem 1.25rem; border-radius: 8px; font-size: .9rem; margin-bottom: 1.5rem; }
.alert-info { background: var(--green-light); color: var(--green-dark); border-left: 3px solid var(--green); }
.alert-warning { background: #fff8e6; color: #7a5a00; border-left: 3px solid var(--gold); }

/* Footer */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.75); padding-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-logo-name em { font-style: italic; color: #F5DFA0; }
.footer-logo-tag { font-size: .6875rem; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 1.5rem; max-width: 100%; }
.footer-col h5 { font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 1.25rem; font-size: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: .4rem; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8125rem; color: rgba(255,255,255,.35);
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-menu {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 1rem; box-shadow: var(--shadow); gap: .2rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--text) !important; background: transparent !important; padding: .7rem 1rem; border-radius: 8px; }
  .nav-menu a:hover { background: var(--green-light) !important; color: var(--green) !important; }
  .nav-menu a.active { background: var(--green-light) !important; color: var(--green) !important; }
  .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .section { padding-block: 56px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-nav { display: none; }
}

/* ── Beschikbaarheidskalender ───────────────────────────── */

.cal-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.cal-tab {
  padding: .55rem 1.4rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cal-tab:hover  { border-color: var(--green); color: var(--green); }
.cal-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

.cal-years {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.cal-year {
  padding: .3rem 1rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cal-year:hover  { border-color: var(--gold); color: var(--gold); }
.cal-year.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.cal-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cal-legend-free,
.cal-legend-booked,
.cal-legend-today {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8125rem;
  color: var(--text-muted);
}
.cal-legend-free::before   { content: ''; width: 16px; height: 16px; border-radius: 4px; background: #c8e6c9; display: inline-block; }
.cal-legend-booked::before { content: ''; width: 16px; height: 16px; border-radius: 4px; background: #ffcdd2; display: inline-block; }
.cal-legend-today::before  { content: ''; width: 16px; height: 16px; border-radius: 4px; background: #fff; border: 2px solid var(--green); display: inline-block; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.cal-month {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.cal-month-title {
  font-family: 'Playfair Display', serif;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: .75rem;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: .65rem;
  color: var(--text-muted);
  padding: 3px 0;
  text-transform: uppercase;
  font-weight: 500;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  border-radius: 5px;
  font-weight: 500;
}
.cal-cell.cal-empty  { }
.cal-cell.cal-past   { color: #ccc; }
.cal-cell.cal-free   { background: #c8e6c9; color: #2e7d32; cursor: default; }
.cal-cell.cal-booked { background: #ffcdd2; color: #c62828; cursor: not-allowed; }
.cal-cell.cal-today  { outline: 2px solid var(--green); outline-offset: -2px; }

@media (max-width: 600px) {
  .cal-grid { grid-template-columns: 1fr 1fr; }
  .cal-cell { font-size: .7rem; }
}

/* ── WhatsApp floating button ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  z-index: 998;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 480px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ── Social proof popup ─────────────────────────────────── */
.sp-popup {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  padding: .8rem 1rem .8rem .9rem;
  max-width: 270px;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.sp-popup.sp-visible {
  transform: translateY(0);
  opacity: 1;
}
.sp-icon { font-size: 1.25rem; flex-shrink: 0; }
.sp-text { font-size: .82rem; line-height: 1.35; color: var(--text); flex: 1; }
.sp-close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 0 0 .4rem;
  opacity: .6;
}
.sp-close:hover { opacity: 1; }
@media (max-width: 480px) {
  .sp-popup { bottom: 4.5rem; right: 1rem; left: 1rem; max-width: none; }
}

/* ── Instagram strip ─────────────────────────────────────── */
.instagram-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.75rem;
}
.instagram-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.instagram-strip-text { color: var(--text); }
.instagram-strip-handle {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.instagram-strip-text p { color: var(--text-muted); max-width: 45ch; font-size: .9375rem; }
@media (max-width: 640px) {
  .instagram-strip-inner { flex-direction: column; text-align: center; }
  .instagram-strip-text p { margin-inline: auto; }
}
.platform-link-instagram { border-color: var(--border) !important; }
.platform-link-instagram:hover { border-color: var(--green) !important; color: var(--green) !important; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--green);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: background .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .25s var(--ease);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-question {
  color: var(--green-dark);
  background: var(--green-light);
}
.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.7;
}
.faq-answer p { max-width: none; }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
}
.review-quote {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-size: .875rem;
}
.review-author strong { color: var(--green-dark); }
.review-author span { color: var(--text-muted); }
