/* ===========================================================================
   Harv — booking page (boek.html). Reuses harv-sections.css tokens via the
   .harv-below wrapper on <main>; this file adds the header + booking layout.
   =========================================================================== */
* { box-sizing: border-box; }
body.harv-boek { margin: 0; font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #f4f4f3; color: #101314; -webkit-font-smoothing: antialiased; }
/* guard: the Webflow base CSS (loaded for the shared navbar) forces some headings
   to a "Plain" serif. Pin every heading on these pages back to Albert Sans. */
body.harv-boek h1, body.harv-boek h2, body.harv-boek h3, body.harv-boek h4, body.harv-boek h5, body.harv-boek h6 {
  font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- sticky header --- */
.bk-head { position: sticky; top: 0; z-index: 80; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px clamp(20px, 4vw, 48px); background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .25s, border-color .25s, backdrop-filter .25s; }
.bk-head.scrolled { background: rgba(244, 244, 243, .86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: rgba(16, 19, 20, .1); }
.bk-brand { text-decoration: none; }
.bk-brand .harv-wm { font-weight: 800; font-size: 1.7rem; letter-spacing: -.045em; color: #101314; }
.bk-brand .harv-wm .dot { color: #77fb38; }
.bk-nav { display: flex; align-items: center; gap: 2px; }
.bk-nav > a, .bk-nav > .bk-drop > a { display: inline-block; color: #101314; text-decoration: none; font-weight: 600; font-size: .95rem; padding: 9px 14px; border-radius: 10px; transition: background-color .2s; cursor: pointer; }
.bk-nav > a:hover, .bk-nav > .bk-drop > a:hover { background: rgba(16, 19, 20, .06); }
.bk-drop { position: relative; display: flex; align-items: center; }
.bk-mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border-top: 12px solid transparent; background-clip: padding-box;
  background: #fff; border-radius: 14px; box-shadow: 0 18px 50px rgba(0, 0, 0, .13); padding: 6px; min-width: 234px; display: none; z-index: 60; }
.bk-drop:hover .bk-mega, .bk-drop:focus-within .bk-mega { display: block; }
.bk-mega a { display: block; padding: 11px 16px; border-radius: 10px; font-weight: 600; font-size: .93rem; color: #101314; text-decoration: none; white-space: nowrap; transition: background-color .2s; }
.bk-mega a:hover { background: #f1f4f0; }
.bk-cta { background: #77fb38; color: #101314; font-weight: 700; font-size: .95rem; padding: 11px 18px; border-radius: 12px; text-decoration: none; margin-left: 8px; transition: background-color .2s; }
.bk-cta:hover { background: #d2ff72; }
@media (max-width: 680px) { .bk-mega { display: none !important; } }

/* --- hero: intro + calendar --- */
.bk-hero { padding-block: clamp(18px, 3vw, 38px) clamp(40px, 6vw, 72px); }
.bk-intro { text-align: center; max-width: 720px; margin: 0 auto clamp(18px, 3vw, 30px); }
.bk-intro .sec-sub { max-width: 56ch; margin-left: auto; margin-right: auto; }
.bk-meta { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
/* desktop: tighter between the chips and the calendar so the booking tool is
   in view sooner (mobile spacing is right as-is) */
@media (min-width: 768px) {
  .bk-intro { margin-bottom: 8px; }
  .bk-meta { margin-top: 16px; }
  .bk-intro .sec-sub { margin-top: 10px; margin-bottom: 0; }
}
.bk-meta span { font-size: .8rem; font-weight: 700; color: #101314; background: #77fb38; padding: 6px 13px; border-radius: 100px; }

/* --- calendar: NO frame at all — the Cal.com widget resizes while you book,
   so any visible box around it warps awkwardly. The widget speaks for itself. --- */
.bk-cal { max-width: 1040px; margin: 0 auto; background: transparent; border-radius: 0; overflow: visible; box-shadow: none; }
#harv-cal-inline { width: 100%; min-height: 640px; }
.bk-cal noscript p { padding: 24px; color: #5b6166; }

/* --- founder photo above the title: same face as the end of the MacBook film --- */
.bk-intro .bk-face {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover; object-position: center 28%;
  margin: 0 auto 16px; display: block;
  box-shadow: 0 16px 40px -22px rgba(16, 19, 20, .55), 0 0 0 4px #fff, 0 0 0 7px #77fb38;
}
.bk-intro .bk-who { font-size: .92rem; font-weight: 600; color: #5b6166; margin: 10px 0 0; }

/* --- info cards --- */
.bk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.bk-card { background: #fff; border: 1px solid rgba(16, 19, 20, .12); border-radius: 18px; padding: 28px; box-shadow: 0 18px 44px -36px rgba(16, 19, 20, .35); }
.bk-card h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 8px; }
.bk-card p { color: #5b6166; margin: 0; font-size: .95rem; }

/* --- faq --- */
.bk-faq .sec-h { text-align: center; }
.bk-qa { margin-top: 40px; max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; align-content: start; }
@media (max-width: 760px) { .bk-qa { grid-template-columns: 1fr; } }
.bk-qa details { background: #fff; border: 1px solid rgba(16, 19, 20, .12); border-radius: 14px; padding: 0 20px; }
.bk-qa summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.bk-qa summary::-webkit-details-marker { display: none; }
.bk-qa summary::after { content: "+"; font-weight: 400; font-size: 1.5rem; line-height: 1; color: #101314; }
.bk-qa details[open] summary::after { content: "\2212"; }
.bk-qa details p { margin: 0 0 20px; color: #5b6166; max-width: 68ch; }

@media (max-width: 900px) {
  .bk-grid { grid-template-columns: 1fr; }
  .bk-cards { grid-template-columns: 1fr; }
  .bk-nav { display: none; }
}
