  :root {
    --bg:        oklch(0.972 0.012 83);
    --bg-soft:   oklch(0.948 0.016 80);
    --card:      oklch(0.988 0.008 86);
    --ink:       oklch(0.28 0.018 62);
    --ink-soft:  oklch(0.44 0.018 64);
    --muted:     oklch(0.56 0.016 66);
    --line:      oklch(0.88 0.014 80);
    --line-soft: oklch(0.92 0.012 82);
    --forest:    oklch(0.43 0.055 150);
    --forest-deep: oklch(0.33 0.05 152);
    --terra:     oklch(0.605 0.108 47);
    --terra-deep: oklch(0.53 0.105 45);
    --sage:      oklch(0.74 0.034 135);

    --maxw: 1180px;
    --pad: clamp(20px, 5vw, 64px);
    --r: 14px;
    --r-lg: 22px;
    --shadow: 0 1px 2px oklch(0.3 0.02 60 / 0.04), 0 12px 36px oklch(0.3 0.04 60 / 0.07);
    --shadow-soft: 0 1px 2px oklch(0.3 0.02 60 / 0.04), 0 6px 20px oklch(0.3 0.04 60 / 0.05);

    --serif: "Spectral", Georgia, serif;
    --sans: "Mulish", system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: 0; }
  a:focus-visible,
  button:focus-visible,
  [role="button"]:focus-visible {
    outline: 3px solid var(--terra);
    outline-offset: 4px;
  }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

  .eyebrow {
    font-family: var(--sans);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--terra-deep);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--terra); display: inline-block; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--sans); font-weight: 600; font-size: 15px;
    padding: 14px 26px; border-radius: 999px; cursor: pointer;
    border: 1.5px solid transparent; transition: all .2s ease; white-space: nowrap;
  }
  .btn-primary { background: var(--terra); color: oklch(0.98 0.01 80); }
  .btn-primary:hover { background: var(--terra-deep); transform: translateY(-1px); }
  .btn-light { background: oklch(0.98 0.01 80 / 0.92); color: var(--forest-deep); backdrop-filter: blur(6px); }
  .btn-light:hover { background: #fff; transform: translateY(-1px); }
  .btn-outline-light { background: transparent; color: oklch(0.98 0.01 80); border-color: oklch(1 0 0 / 0.45); }
  .btn-outline-light:hover { background: oklch(1 0 0 / 0.12); border-color: oklch(1 0 0 / 0.8); }

  /* Placeholders (omgeving) */
  .ph {
    position: relative; overflow: hidden;
    background-color: var(--bg-soft);
    background-image: repeating-linear-gradient(135deg, oklch(0.86 0.02 140) 0 2px, transparent 2px 13px);
    display: flex; align-items: flex-end; color: var(--forest-deep);
  }
  .ph::after {
    content: attr(data-label);
    position: absolute; left: 12px; bottom: 11px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 11px; letter-spacing: 0.02em; color: oklch(0.4 0.04 150);
    background: oklch(0.97 0.012 83 / 0.82); padding: 4px 9px; border-radius: 6px;
    backdrop-filter: blur(2px); max-width: calc(100% - 24px);
  }

  /* Real photos */
  .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 60%; z-index: 0; }
  .intro-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); display: block; }
  .gphoto { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); cursor: pointer; transition: transform .35s ease, filter .35s ease; display: block; }
  .gphoto:hover { transform: scale(1.012); filter: brightness(1.04); }
  .omg-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

  /* HEADER */
  header.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  header.nav.scrolled {
    background: oklch(0.972 0.012 83 / 0.86);
    backdrop-filter: blur(12px) saturate(1.2);
    border-bottom-color: var(--line-soft);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand .mark {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--forest); color: oklch(0.97 0.01 80);
    display: grid; place-items: center; font-family: var(--serif); font-size: 17px; font-style: italic;
    flex-shrink: 0;
  }
  .brand .name { display: block; font-family: var(--serif); font-size: 22px; line-height: 1; }
  .brand .sub { display: block; white-space: nowrap; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
  .nav-links a:hover { color: var(--forest); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* language switch */
  .lang-switch { display: inline-flex; align-items: center; background: oklch(0.92 0.012 82 / 0.7); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
  .lang-switch button {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
    border: none; background: transparent; color: var(--muted); cursor: pointer;
    padding: 6px 11px; border-radius: 999px; transition: all .18s ease; text-transform: uppercase;
  }
  .lang-switch .flag { font-size: 14px; line-height: 1; }
  .lang-switch button:hover { color: var(--ink); }
  .lang-switch button.active { background: var(--forest); color: oklch(0.97 0.01 80); }

  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 49;
    background: var(--bg); padding: 96px var(--pad) 40px;
    display: flex; flex-direction: column; gap: 6px;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s; overflow-y: auto;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a { font-family: var(--serif); font-size: 28px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-top: 24px; }
  .mobile-menu .lang-switch { align-self: flex-start; margin-bottom: 8px; }

  /* HERO */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 7vw, 80px); overflow: hidden; }
  .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, oklch(0.25 0.03 150 / 0.4) 0%, transparent 32%, oklch(0.2 0.03 150 / 0.74) 100%); }
  .hero-content { position: relative; z-index: 2; color: oklch(0.98 0.01 80); max-width: 760px; }
  .hero .loc { font-size: 13.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.92; display: flex; align-items: center; gap: 9px; }
  .hero .loc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 4px oklch(0.6 0.11 47 / 0.3); }
  .hero h1 { font-size: clamp(42px, 6.6vw, 82px); font-weight: 300; margin: 20px 0 18px; letter-spacing: 0; }
  .hero h1 em { font-style: italic; color: var(--sage); }
  .hero p.lead { font-size: clamp(17px, 2vw, 20px); max-width: 560px; opacity: 0.94; font-weight: 300; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
  .hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
  .fact-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: oklch(0.98 0.01 80);
    background: oklch(1 0 0 / 0.12); border: 1px solid oklch(1 0 0 / 0.22);
    padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(4px);
  }
  .fact-chip .ic { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

  section { padding: clamp(64px, 9vw, 120px) 0; }
  .sec-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
  .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .sec-head.center .eyebrow { justify-content: center; }
  .sec-head h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 300; margin: 16px 0 0; }
  .sec-head h2 em { font-style: italic; color: var(--forest); }
  .sec-head p { color: var(--ink-soft); margin-top: 16px; font-size: 18px; }

  .intro { background: var(--bg-soft); }
  .intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
  .intro-text h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 300; line-height: 1.18; }
  .intro-text h2 em { font-style: italic; color: var(--forest); }
  .intro-text p { color: var(--ink-soft); margin-top: 22px; font-size: 18px; }
  .intro-sign { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 26px; }
  .intro-img { position: relative; }
  .intro-img .badge {
    position: absolute; bottom: -22px; left: -22px;
    background: var(--card); border-radius: var(--r); padding: 18px 22px;
    box-shadow: var(--shadow); border: 1px solid var(--line-soft); text-align: center;
  }
  .intro-img .badge .n { font-family: var(--serif); font-size: 34px; color: var(--terra); line-height: 1; }
  .intro-img .badge .l { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; grid-auto-flow: dense; }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }

  .amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .amen-cat { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-soft); }
  .amen-cat h3 { font-size: 22px; color: var(--forest-deep); display: flex; align-items: center; gap: 12px; }
  .amen-cat h3 .glyph { width: 34px; height: 34px; border-radius: 9px; background: oklch(0.43 0.055 150 / 0.1); display: grid; place-items: center; font-size: 16px; color: var(--forest); flex-shrink: 0; }
  .amen-cat ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
  .amen-cat li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--ink-soft); }
  .amen-cat li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); margin-top: 9px; flex-shrink: 0; }

  .omg { background: var(--forest-deep); color: oklch(0.94 0.015 85); }
  .omg .eyebrow { color: var(--sage); }
  .omg .eyebrow::before { background: var(--sage); }
  .omg .sec-head h2 { color: oklch(0.96 0.01 85); }
  .omg .sec-head h2 em { color: var(--sage); }
  .omg .sec-head p { color: oklch(0.85 0.02 90); }
  .omg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .omg-card { background: oklch(0.39 0.05 152); border: 1px solid oklch(0.5 0.05 150 / 0.5); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s ease; }
  .omg-card:hover { transform: translateY(-4px); }
  .omg-card .ph { aspect-ratio: 16/10; background-color: oklch(0.5 0.05 150); background-image: repeating-linear-gradient(135deg, oklch(0.45 0.05 150) 0 2px, transparent 2px 14px); }
  .omg-card .ph::after { background: oklch(0.39 0.05 152 / 0.85); color: oklch(0.85 0.03 130); }
  .omg-card .body { padding: 22px 24px 26px; }
  .omg-card h3 { font-size: 21px; color: oklch(0.96 0.01 85); }
  .omg-card p { font-size: 14.5px; color: oklch(0.82 0.02 90); margin-top: 9px; }
  .omg-card .dist { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-top: 14px; }

  .prak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
  .prak-list { display: flex; flex-direction: column; }
  .prak-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .prak-row:last-child { border-bottom: none; }
  .prak-row .k { font-weight: 600; color: var(--ink); font-size: 15.5px; }
  .prak-row .v { color: var(--ink-soft); text-align: right; font-size: 15.5px; }
  .rules { background: var(--bg-soft); border-radius: var(--r-lg); padding: 32px 34px; border: 1px solid var(--line-soft); }
  .rules h3 { font-size: 22px; margin-bottom: 18px; }
  .rules ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  .rules li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 15.5px; }
  .rules li .chk { width: 20px; height: 20px; border-radius: 6px; background: oklch(0.43 0.055 150 / 0.12); color: var(--forest); display: grid; place-items: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

  .rev { background: var(--bg-soft); }
  .rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .rev-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-soft); }
  .stars { color: var(--terra); font-size: 15px; letter-spacing: 2px; }
  .rev-card blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink); margin: 16px 0 20px; }
  .rev-card .who { display: flex; align-items: center; gap: 12px; }
  .rev-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; font-family: var(--serif); color: var(--forest-deep); font-size: 17px; }
  .rev-card .who .nm { font-weight: 600; font-size: 14.5px; }
  .rev-card .who .mt { font-size: 12.5px; color: var(--muted); }
  .rev-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--muted); font-style: italic; }

  /* BOOKING */
  .book { background: var(--bg); }
  .booking-embed { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
  .booking-embed iframe { width: 100%; height: 860px; border: 0; display: block; background: var(--card); }
  .booking-fallback { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; text-align: center; color: var(--muted); font-size: 14.5px; }
  .book-note { text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); }

  footer { background: oklch(0.24 0.018 62); color: oklch(0.82 0.015 85); padding: clamp(56px, 7vw, 88px) 0 32px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid oklch(1 0 0 / 0.1); }
  .foot-brand .name { font-family: var(--serif); font-size: 26px; color: oklch(0.96 0.01 85); }
  .foot-brand .tag { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--sage); margin-top: 6px; }
  .foot-brand p { margin-top: 16px; font-size: 15px; max-width: 320px; color: oklch(0.74 0.015 85); }
  .foot-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
  .foot-col a, .foot-col p { display: block; font-size: 15px; color: oklch(0.8 0.015 85); margin-bottom: 11px; transition: color .2s; }
  .foot-col a:hover { color: #fff; }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: oklch(0.62 0.015 85); flex-wrap: wrap; gap: 12px; }

  .book-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    background: oklch(0.972 0.012 83 / 0.94); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); padding: 12px var(--pad);
    display: none; align-items: center; justify-content: space-between; gap: 14px;
    transform: translateY(100%); transition: transform .3s ease;
  }
  .book-bar.show { transform: translateY(0); }
  .book-bar .info .p { font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.1; }
  .book-bar .info .s { font-size: 12px; color: var(--muted); }

  .lightbox { position: fixed; inset: 0; z-index: 100; background: oklch(0.18 0.02 60 / 0.95); display: none; align-items: center; justify-content: center; padding: 5vw; }
  .lightbox.open { display: flex; }
  .lightbox .lb-img { max-width: min(92vw, 1240px); max-height: 84vh; width: auto; height: auto; object-fit: contain; border-radius: var(--r); box-shadow: 0 20px 60px oklch(0 0 0 / 0.5); }
  .lightbox .lb-close { position: absolute; top: 24px; right: 28px; background: oklch(1 0 0 / 0.12); border: 1px solid oklch(1 0 0 / 0.3); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 22px; cursor: pointer; display: grid; place-items: center; }
  .lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: oklch(1 0 0 / 0.12); border: 1px solid oklch(1 0 0 / 0.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 24px; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
  .lightbox .lb-nav:hover { background: oklch(1 0 0 / 0.25); }
  .lightbox .lb-prev { left: 3vw; }
  .lightbox .lb-next { right: 3vw; }
  .lightbox .lb-count { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: oklch(0.9 0.01 85); font-size: 13.5px; letter-spacing: 0.03em; text-align: center; max-width: 90vw; }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

  @media (max-width: 980px) {
    .intro-grid, .prak-grid { grid-template-columns: 1fr; }
    .amen-grid, .omg-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .intro-img { max-width: 460px; }
  }
  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-cta .btn-primary { display: none; }
    .nav-cta .lang-switch .code { display: none; }
    .nav-cta .lang-switch button { padding: 7px 9px; }
    .hamburger { display: block; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .g-tall { grid-row: span 2; }
    .amen-grid, .omg-grid, .rev-grid, .foot-grid { grid-template-columns: 1fr; }
    .book-bar { display: flex; }
    body { padding-bottom: 72px; }
    .lightbox .lb-nav { width: 44px; height: 44px; }
    .booking-embed iframe { height: 980px; }
  }
