* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f3;
  --card: #fffdf9;
  --text: #2a241f;
  --muted: #6d6258;
  --accent: #8a6b49;
  --accent-soft: #e8dccd;
  --line: #e6ddd2;
  --shadow: 0 10px 30px rgba(63, 42, 22, 0.08);
  --radius: 24px;
  --max: 1180px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(246, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a, .mobile-menu a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; }
.nav-links a.active, .nav-links a:hover, .mobile-menu a.active { opacity: 1; color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid #c9b9a6; border-radius: 999px; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; transition: 0.2s ease; }
.nav-cta:hover, .nav-cta.active-cta { background: #efe6db; }
.menu-toggle { display: none; background: none; border: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; }
.mobile-menu { display: none; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding-bottom: 16px; flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }

.page-shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-first { padding-top: 72px; }
.section { padding-top: 42px; }

.hero-grid, .split, .contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero-copy h1, .contact-hero-card h1 { font-family: 'Cormorant Garamond', serif; line-height: 0.98; font-weight: 700; letter-spacing: -0.02em; font-size: clamp(58px, 10vw, 112px); margin-bottom: 24px; }
.eyebrow { display: inline-block; margin-bottom: 18px; padding: 8px 14px; background: var(--accent-soft); color: var(--accent); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.lead { font-size: 20px; color: var(--muted); max-width: 620px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 600; transition: 0.2s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary { border-color: #c9b9a6; color: var(--text); background: transparent; }
.btn-secondary:hover { background: #efe6db; }
.btn-full { width: 100%; }

.hero-image-wrap, .contact-photo-card { position: relative; }
.hero-image, .soft-photo, .contact-photo-card img { width: 100%; object-fit: cover; display: block; border-radius: 28px; box-shadow: var(--shadow); }
.hero-image { aspect-ratio: 4 / 5; }
.soft-photo { aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.contact-photo-card img { aspect-ratio: 4 / 3.6; }

.hero-note, .contact-photo-note { position: absolute; left: 18px; right: 18px; bottom: 18px; background: rgba(255, 252, 247, 0.9); border: 1px solid rgba(138, 107, 73, 0.15); border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow); }
.hero-note strong, .contact-photo-note strong { display: block; font-size: 20px; margin-bottom: 4px; }
.hero-note span, .contact-photo-note span { color: var(--muted); font-size: 14px; }

.intro-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-card, .card, .walk-card, .quote-box, .cta-box, .contact-hero-card { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.mini-card { border-radius: 20px; padding: 22px; }
.mini-card strong { display: block; color: var(--accent); font-size: 18px; margin-bottom: 8px; }
.mini-card p { color: var(--muted); font-size: 15px; }
.card, .contact-hero-card { border-radius: var(--radius); padding: 34px; }
.card h2, .walks-header h2, .cta-box h2 { font-family: 'Cormorant Garamond', serif; line-height: 0.98; font-weight: 700; letter-spacing: -0.02em; }
.card h2 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 18px; }
.card p { font-size: 17px; color: var(--muted); margin-bottom: 14px; }

.walks-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.walks-header h2 { font-size: clamp(44px, 6vw, 68px); }
.walks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.walk-card { border-radius: 24px; overflow: hidden; transition: transform 0.2s ease; }
.walk-card:hover { transform: translateY(-4px); }
.walk-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.walk-card-body { padding: 24px; }
.walk-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 10px; line-height: 1.1; }
.walk-card p { color: var(--muted); font-size: 15px; }

.expect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.expect-grid.single { grid-template-columns: 1fr; }
.expect-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.expect-item strong { display: block; margin-bottom: 6px; color: var(--text); font-size: 17px; }
.expect-item span { color: var(--muted); font-size: 15px; }

.quote { text-align: center; }
.quote-box { border-radius: 28px; padding: 36px 26px; background: #efe6db; border-color: #ddcfbf; }
.quote-box p { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 54px); line-height: 1.08; color: #4e3d2c; }

.cta { padding: 60px 0 90px; }
.cta-box { border-radius: 28px; padding: 38px; text-align: center; }
.cta-box h2 { font-size: clamp(42px, 6vw, 64px); margin-bottom: 14px; }
.cta-box p { max-width: 700px; margin: 0 auto 24px; color: var(--muted); font-size: 17px; }

.contact-hero-card { max-width: 840px; }
.contact-grid { align-items: start; }
.contact-side { display: grid; gap: 22px; }
.contact-form { margin-top: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d9cfbf; background: #fff; border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--text); outline: none; transition: 0.2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(138, 107, 73, 0.08); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-list { display: grid; gap: 18px; }
.contact-item strong { display: block; font-size: 16px; margin-bottom: 6px; }
.contact-item a, .contact-item span { color: var(--muted); text-decoration: none; }
.form-success { display: none; margin-top: 16px; background: #efe6db; color: #6f563d; border: 1px solid #ddcfbf; border-radius: 16px; padding: 14px 16px; font-size: 14px; font-weight: 600; }
.form-error { display: none; margin-top: 16px; background: #fdecea; color: #8a3030; border: 1px solid #f5c6c6; border-radius: 16px; padding: 14px 16px; font-size: 14px; font-weight: 600; }

.site-footer { border-top: 1px solid var(--line); padding: 24px 0 36px; color: var(--muted); font-size: 14px; }
.footer-inner, .footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 20px; padding-bottom: 20px; }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text); margin-bottom: 8px; }
.footer-subtitle { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.site-footer ul { list-style: none; }
.site-footer a { color: var(--muted); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.reveal-stagger, .reveal-soft, .reveal-card { opacity: 0; transform: translateY(18px); }
.animate-in { animation: fadeUpSoft 0.7s ease forwards; }
.reveal-stagger:nth-child(1) { animation-delay: 0.08s; }
.reveal-stagger:nth-child(2) { animation-delay: 0.16s; }
.reveal-stagger:nth-child(3) { animation-delay: 0.24s; }
.reveal-stagger:nth-child(4) { animation-delay: 0.32s; }
.reveal-soft.animate-in { animation: fadeSoft 0.8s ease forwards; }
.reveal-card.animate-in { animation: fadeUpSoft 0.7s ease forwards; }

@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSoft {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .hero-grid, .split, .walks-grid, .intro-strip, .contact-grid, .footer-inner, .expect-grid { grid-template-columns: 1fr; }
  .section-first { padding-top: 42px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .logo { font-size: 28px; max-width: 180px; line-height: 0.95; }
  .nav-inner { min-height: 68px; width: min(var(--max), calc(100% - 24px)); }
  .mobile-menu, .page-shell, .footer-inner, .footer-bottom { width: min(var(--max), calc(100% - 24px)); }
  .card, .cta-box, .contact-hero-card { padding: 24px; }
  .hero-note, .contact-photo-note { left: 12px; right: 12px; bottom: 12px; }
  .walk-card img { height: 240px; }
  .form-row { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(138, 107, 73, 0.18);
}

.btn-secondary {
  border-color: #c9b9a6;
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: #efe6db;
  transform: translateY(-1px);
}

.walk-card,
.mini-card,
.card,
.cta-box,
.quote-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.walk-card:hover,
.mini-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(63, 42, 22, 0.12);
}

.contact-form-card,
.contact-side .card {
  min-height: 100%;
}

.contact-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-item a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255, 253, 249, 0.55);
}

.footer-inner,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 22px;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* over-mij v2 */
.about-hero-alt {
  padding-top: 56px;
}
.about-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}
.about-intro-panel,
.about-photo-panel {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.about-intro-panel {
  padding: 34px;
}
.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.about-fact-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.about-fact-box strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}
.about-fact-box p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.about-photo-panel {
  overflow: hidden;
  min-height: 100%;
}
.about-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.contact-side .card:last-child {
  display: none;
}

@media (max-width: 980px) {
  .about-hero-layout,
  .about-facts-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-panel img {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 640px) {
  .about-intro-panel {
    padding: 24px;
  }

  .about-photo-panel img {
    min-height: 320px;
    height: 320px;
    object-position: center 18%;
  }
}


.nav-tools{
  display:flex;
  align-items:center;
  gap:12px;
}
.lang-toggle{
  min-height:48px;
  min-width:58px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #c9b9a6;
  background:transparent;
  color:var(--text);
  font:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:0.2s ease;
}
.lang-toggle:hover{
  background:#efe6db;
}
.mobile-lang-toggle{
  width:100%;
  justify-content:center;
}
.about-hero-alt{
  padding-top:56px;
}
.about-hero-layout{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:stretch;
}
.about-intro-panel,
.about-photo-panel{
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:28px;
}
.about-intro-panel{
  padding:34px;
}
.about-facts-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}
.about-fact-box{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.about-fact-box strong{
  display:block;
  font-size:17px;
  margin-bottom:6px;
}
.about-fact-box p{
  color:var(--muted);
  font-size:15px;
  margin:0;
}
.about-photo-panel{
  overflow:hidden;
}
.about-photo-panel img{
  width:100%;
  height:100%;
  min-height:640px;
  object-fit:cover;
  object-position:center 22%;
  display:block;
}
@media (max-width:980px){
  .nav-tools{display:none}
  .about-hero-layout,
  .about-facts-grid{
    grid-template-columns:1fr;
  }
  .about-photo-panel img{
    min-height:420px;
    height:420px;
  }
}
@media (max-width:640px){
  .about-intro-panel{
    padding:24px;
  }
  .about-photo-panel img{
    min-height:320px;
    height:320px;
    object-position:center 18%;
  }
}


/* EXTRA ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

picture { display: block; }
.about-photo-panel picture { height: 100%; }

img {
  transition: transform 0.4s ease;
}
img:hover {
  transform: scale(1.03);
}


/* PERFECT FIXES */
body, html {
  height: 100%;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.contact-grid {
  margin-bottom: 0px;
}

.section:last-of-type {
  margin-bottom: 60px;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding-top: 50px;
}


/* HEADER FIX */


/* REMOVE EXTRA SPACE */
.hero,
.section:first-of-type {
  margin-top: 40px;
}

/* CLEAN HEADER BUTTONS */
.header-actions span {
  display: none !important;
}

/* prevent content from going under header */
body {
  padding-top: 110px;
}

/* fix parents breaking sticky */
.page-shell, main {
  overflow: visible !important;
}

/* ── Interactieve kaart ─────────────────────────────── */
.map-section-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-section-intro {
  padding: 18px 24px 0;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0 !important;
}
#janny-map {
  height: 440px;
  margin-top: 14px;
  z-index: 0;
}

/* Kaart markers */
.janny-marker {
  background: none !important;
  border: none !important;
}
.marker-dot {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(138, 107, 73, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.marker-dot:hover {
  transform: scale(1.25);
}

/* Leaflet popup styling */
.janny-popup .leaflet-popup-content-wrapper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(63, 42, 22, 0.12);
  padding: 0;
  overflow: hidden;
}
.janny-popup .leaflet-popup-content {
  margin: 0;
  width: 260px !important;
}
.janny-popup .leaflet-popup-tip {
  background: var(--card);
}
.janny-popup .leaflet-popup-close-button {
  color: #fff;
  font-size: 20px;
  top: 6px;
  right: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 10;
}
.janny-popup-photo {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.janny-popup-inner {
  padding: 13px 16px 15px;
}
.janny-popup-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.janny-popup-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Leaflet attrib kleiner */
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255,253,249,0.8) !important;
}
