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

:root {
  --navy:        #1a3a5c;
  --navy-dark:   #0f2540;
  --navy-mid:    #1e3d5f;
  --navy-light:  #2a5080;
  --green:       #6b8f3e;
  --green-light: #8ab050;
  --green-pale:  #e8f0d8;
  --off-white:   #f5f3ee;
  --white:       #ffffff;
  --light-blue:  #e8f0f7;
  --text-muted:  #7a8a9a;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; background: #060d1a; overscroll-behavior-x: none; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--navy-dark); overflow-x: clip; overscroll-behavior-x: none; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  display: none; /* JS shows it only on first visit */
  align-items: center; justify-content: center;
  z-index: 8999;
}
/* Toon laadscherm al vóór de eerste paint op een echt eerste bezoek (geen flits) */
html.bb-loading #loader { display: flex; }

/* Dek-overlay tijdens navigatie: identiek aan het transitie-paneel.
   Dekt het scherm af vóór de paint, zodat de nieuwe pagina niet even doorschijnt.
   Wordt door page-transition-v2.js opgeheven zodra het echte paneel dekt. */
html.bb-covering::before {
  content: ''; position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 100%);
}
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.loader-img {
  width: 110px; height: 110px; object-fit: contain; border-radius: 8px;
  opacity: 0; transform: scale(.7) translateY(20px);
  animation: logoIn .9s cubic-bezier(.34,1.56,.64,1) .15s forwards;
}
.loader-svg-fallback {
  width: 110px; height: 110px; opacity: 0; transform: scale(.7) translateY(20px);
  animation: logoIn .9s cubic-bezier(.34,1.56,.64,1) .15s forwards;
}
.loader-name {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: .85rem; letter-spacing: 3px; text-transform: uppercase;
  text-align: center; opacity: 0; transform: translateY(10px);
  animation: fadeUp .5s ease .85s forwards;
}
.loader-name span { color: var(--green-light); }
.loader-bar {
  width: 130px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
  opacity: 0; animation: fadeUp .4s ease 1s forwards;
}
.loader-fill { height: 100%; width: 0; background: var(--green-light); animation: fillBar 1.3s cubic-bezier(.4,0,.2,1) 1s forwards; }
@keyframes logoIn  { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fillBar { to { width: 100%; } }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  transform: translateY(0);
}
#nav.scrolled {
  background: rgba(8,20,40,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: .9rem 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255,.05);
}
/* Remove auto-hide - nav always visible */
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; width: 42px; object-fit: contain; border-radius: 4px; }
.nav-logo-txt .top { font-family: 'Playfair Display', serif; color: var(--white); font-size: .88rem; font-weight: 700; letter-spacing: .5px; display: block; }
.nav-logo-txt .top span { color: var(--green-light); }
.nav-logo-txt .bot { color: rgba(255,255,255,.35); font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; display: block; }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: .8rem; letter-spacing: .8px; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 3px;
  transition: color .25s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--green-light); transition: all .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { left: 12%; right: 12%; }

/* More dropdown */
.nav-more-wrap { position: relative; }
.nav-more-btn {
  display: flex; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.65); font-size: .8rem; letter-spacing: .8px; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 3px; border: none; background: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .25s;
}
.nav-more-btn:hover, .nav-more-btn.open { color: var(--white); background: rgba(255,255,255,.07); }
.chevron { width: 13px; height: 13px; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.nav-more-btn.open .chevron { transform: rotate(180deg); }

#nav-drop {
  position: absolute; top: calc(100% + .85rem); right: 0;
  width: 360px;
  background: rgba(8,20,40,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: .6rem;
  opacity: 0; transform: translateY(-14px) scale(.97); pointer-events: none;
  transition: all .38s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
}
#nav-drop.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.drop-head {
  font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.28); padding: .5rem .7rem .7rem;
  border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: .4rem;
}
.drop-item {
  display: flex; align-items: center; gap: .9rem;
  padding: .8rem .7rem; border-radius: 6px; text-decoration: none; transition: background .2s;
}
.drop-item:hover { background: rgba(255,255,255,.06); }
.drop-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s;
}
.drop-item:hover .drop-icon { background: rgba(107,143,62,.2); }
.drop-txt strong { display: block; color: var(--white); font-size: .88rem; font-weight: 600; margin-bottom: .12rem; }
.drop-txt span { color: rgba(255,255,255,.38); font-size: .76rem; line-height: 1.4; }
.drop-divider { height: 1px; background: rgba(255,255,255,.06); margin: .4rem 0; }

.nav-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-tel { color: rgba(255,255,255,.45); font-size: .78rem; letter-spacing: .3px; text-decoration: none; transition: color .25s; }
.nav-tel:hover { color: var(--white); }
.nav-cta {
  background: var(--green); color: var(--white);
  padding: .58rem 1.3rem; border-radius: 3px;
  font-size: .78rem; font-weight: 600; letter-spacing: .3px;
  text-decoration: none; transition: all .35s cubic-bezier(.16,1,.3,1); white-space: nowrap;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--green-light);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(107,143,62,.4); }

/* ── MOBILE HAMBURGER ── */
#nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
#nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .35s cubic-bezier(.34,1.56,.64,1); transform-origin: center;
}
#nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 550;
  display: flex; flex-direction: column;
  pointer-events: none; opacity: 0;
  transition: opacity .35s ease;
  background: transparent;
}
#mobile-menu.open { pointer-events: all; opacity: 1; }
.mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,14,28,.6); backdrop-filter: blur(4px);
}
.mobile-panel {
  position: relative; margin-top: auto;
  background: #0d1f38;
  border-top: 1px solid rgba(255,255,255,.08);
  border-radius: 20px 20px 0 0;
  padding: 1rem 1.5rem 2rem; /* Reduced padding */
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  max-height: 85vh; overflow-y: auto;
}
#mobile-menu.open .mobile-panel { transform: translateY(0); }
.mobile-handle { width: 36px; height: 4px; background: rgba(255,255,255,.15); border-radius: 2px; margin: .5rem auto 1rem; }
/* Remove mobile logo - niet nodig */
.mobile-logo { display: none; }
.mobile-section-label { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.28); margin: .75rem 0 .5rem; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem .25rem; border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none; color: rgba(255,255,255,.8);
  font-size: .95rem; font-weight: 500; transition: color .2s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--white); }
.mobile-nav-link .arr { color: rgba(255,255,255,.25); font-size: .9rem; }
.mobile-info-link {
  display: flex; align-items: center; gap: .85rem;
  padding: .65rem .25rem; border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none; color: rgba(255,255,255,.65); font-size: .85rem; transition: color .2s;
}
.mobile-info-link:hover { color: var(--white); }
.mi-icon { width: 32px; height: 32px; border-radius: 7px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.mobile-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.25rem; }
.mobile-cta-row a { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .85rem 1rem; border-radius: 8px; font-size: .85rem; font-weight: 600; text-decoration: none; }
.cta-call { background: var(--green); color: var(--white); }
.cta-appt { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); }

/* ── ALERT ── */
.alert-bar {
  background: #fff8e7; border-left: 3px solid #e8a020;
  padding: .8rem 3rem; font-size: .8rem; color: #6d4a00;
  display: flex; align-items: center; gap: .7rem; position: relative; z-index: 1; flex-wrap: wrap;
}
.alert-bar strong { font-weight: 700; }
.alert-bar a { color: #6d4a00; font-weight: 700; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--green);
  padding: 1rem 0;
  overflow: hidden;
  pointer-events: none; /* Prevent ALL interaction */
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
  pointer-events: none;
}
.m-item {
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.m-dot { width: 3px; height: 3px; background: rgba(255,255,255,.4); border-radius: 50%; flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION LABEL ── */
.s-label { display: flex; align-items: center; gap: .7rem; font-size: .68rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.s-label::before { content: ''; display: block; width: 26px; height: 1px; background: currentColor; flex-shrink: 0; }
.s-label.lt { color: rgba(255,255,255,.4); }
.s-label.lt::before { background: rgba(255,255,255,.3); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 3px;
  font-size: .86rem; font-weight: 600; letter-spacing: .3px;
  text-decoration: none;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
  transform-origin: center;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.btn:hover::after { transform: translateX(100%) skewX(-15deg); }

.btn-g { background: var(--green); color: var(--white); }
.btn-g:hover {
  background: var(--green-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(107,143,62,.4);
}

.btn-n { background: var(--navy); color: var(--white); }
.btn-n:hover {
  background: var(--navy-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(26,58,92,.35);
}

.btn-o {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  background: transparent;
}
.btn-o:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,.1);
}

/* ── REVEAL ANIMATIONS ──
   Smooth, "coming-into-focus" scroll reveals.
   --reveal-ease: soft deceleration, no overshoot -> feels premium, never jittery.
   --reveal-dur:  base duration, tuned per-variant below.
   The optional --reveal-i custom property (set by main.js) gives each element in a
   group a natural cascade delay so items glide in one after another.            */
:root {
  --reveal-ease: cubic-bezier(.22, .68, .28, 1);
  --reveal-dur: .85s;
}

.reveal,
.reveal-l,
.reveal-r,
.reveal-s,
.reveal-scale,
.reveal-blur {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease),
    filter var(--reveal-dur) var(--reveal-ease);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}

.reveal        { transform: translate3d(0, 42px, 0) scale(.985); }
.reveal-l      { transform: translate3d(-56px, 0, 0); }
.reveal-r      { transform: translate3d(56px, 0, 0); }
.reveal-s      { transform: scale(.88); }
.reveal-scale  { transform: translate3d(0, 26px, 0) scale(.93); }
.reveal-blur   { transform: translate3d(0, 30px, 0); filter: blur(12px); }

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible,
.reveal-s.visible,
.reveal-scale.visible,
.reveal-blur.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Drop the compositor hint once the element has settled (JS clears it too). */
.reveal.is-done,
.reveal-l.is-done,
.reveal-r.is-done,
.reveal-s.is-done,
.reveal-scale.is-done,
.reveal-blur.is-done { will-change: auto; }

/* Manual stagger classes kept as a fallback; JS-driven --reveal-i overrides them. */
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; } .d6 { transition-delay: .48s; }

/* Stagger children */
.stagger-child { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .7s var(--reveal-ease), transform .7s var(--reveal-ease); }
.stagger-child.visible { opacity: 1; transform: none; }

/* ── PAGE HERO (subpages) ── */
.page-hero { background: var(--navy-dark); padding: 9.5rem 3rem 5rem; position: relative; overflow: hidden; }
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.back-link { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.38); font-size: .75rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; margin-bottom: 2rem; transition: color .25s; }
.back-link:hover { color: var(--white); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,6vw,5.5rem); font-weight: 900; color: var(--white); line-height: .95; letter-spacing: -2px; }
.page-hero h1 em { color: var(--green-light); font-style: normal; }
.page-hero-sub { color: rgba(255,255,255,.48); font-size: 1rem; line-height: 1.75; margin-top: 1.5rem; max-width: 480px; }

/* ── CONTENT ── */
.content { padding: 6rem 3rem; }
.content.bg-dark  { background: var(--navy-dark); }
.content.bg-light { background: var(--off-white); }
.content.bg-blue  { background: var(--light-blue); }
.content.bg-white { background: var(--white); }

/* ── CARD ── */
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 2.5rem; transition: all .4s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .4s ease; transform-origin: left; }
.card:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); }
.card:hover::before { transform: scaleX(1); }
.card-light { background: var(--white); border: 1px solid rgba(26,58,92,.1); border-radius: 6px; padding: 2.5rem; transition: all .4s cubic-bezier(.16,1,.3,1); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.card-light:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }

/* ── EMERGENCY ── */
.emergency { background: var(--green); padding: 1.25rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.emergency p { color: var(--white); font-size: .88rem; }
.emergency strong { font-weight: 700; }
.emergency a { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: var(--white); padding: .6rem 1.5rem; text-decoration: none; font-weight: 600; font-size: .8rem; border-radius: 3px; white-space: nowrap; transition: all .3s; }
.emergency a:hover { background: rgba(255,255,255,.28); }

/* ── FOOTER ── */
footer { background: #060d1a; padding: 4rem 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.f-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.f-logo > div { display: flex; flex-direction: column; }
.f-logo img { width: 50px; height: 50px; object-fit: contain; border-radius: 4px; }
.f-brand-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: .95rem; font-weight: 700; line-height: 1.2; }
.f-brand-name span { color: var(--green-light); }
.f-brand-sub { color: rgba(255,255,255,.28); font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; }
footer p { color: rgba(255,255,255,.32); font-size: .84rem; line-height: 1.85; }
.f-col h4 { color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: .9rem; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: .45rem; }
.f-col a { color: rgba(255,255,255,.32); text-decoration: none; font-size: .85rem; transition: color .25s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.18); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #nav { padding: 1rem 1.25rem; }
  #nav.scrolled { padding: .75rem 1.25rem; }
  .nav-links    { display: none !important; }
  .nav-more-wrap { display: none !important; }
  .nav-tel      { display: none !important; }
  .nav-cta      { display: none !important; }
  #nav-burger   { display: flex; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
  .content      { padding: 4rem 1.5rem; }
  .page-hero    { padding: 8rem 1.5rem 3.5rem; }
  .alert-bar    { padding: .75rem 1.5rem; }
  .emergency    { padding: 1.25rem 1.5rem; flex-direction: column; text-align: center; }
  footer        { padding: 3rem 1.5rem 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .35rem; text-align: center; padding: 1rem 0; }
}

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  /* Team avatars: keep square ratio so portraits aren't cropped */
  .team-avatar {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* Spoeddienst red card: prevent text overflow with hyphens */
  .spoed-big-card {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .spoed-big-card h2 {
    font-size: 1.4rem;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .spoed-number {
    word-break: break-all;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-size: 1rem;
  }
}

/* ════════════════════════════════════════
   FLOATING CALL BUTTON + POPUP (mobile only)
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Floating button */
  #bb-call-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 700;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(107,143,62,.55);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
    animation: bbPulse 3s ease-in-out 2s infinite;
  }
  #bb-call-btn:active {
    transform: scale(.92);
  }
  #bb-call-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
  }
  @keyframes bbPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(107,143,62,.55); }
    50%       { box-shadow: 0 4px 28px rgba(107,143,62,.85), 0 0 0 8px rgba(107,143,62,.15); }
  }

  /* Popup overlay */
  #bb-call-popup {
    position: fixed;
    inset: 0;
    z-index: 800;
    pointer-events: none;
  }
  #bb-call-popup.open {
    pointer-events: all;
  }

  /* Dark backdrop */
  #bb-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7,14,28,.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .3s ease;
  }
  #bb-call-popup.open #bb-popup-backdrop {
    opacity: 1;
  }

  /* Popup sheet slides up */
  #bb-popup-sheet {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: #0d1f38;
    border-radius: 20px 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 1.5rem 2rem;
    padding-bottom: 2rem;
    transform: translateY(100%);
    transition: transform .42s cubic-bezier(.16,1,.3,1);
  }
  #bb-call-popup.open #bb-popup-sheet {
    transform: translateY(0);
  }

  /* Sheet handle */
  #bb-popup-sheet .bb-handle {
    width: 36px; height: 4px;
    background: rgba(255,255,255,.18);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
  }

  /* Sheet header */
  .bb-popup-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .25rem;
  }
  .bb-popup-sub {
    color: rgba(255,255,255,.4);
    font-size: .78rem;
    letter-spacing: .5px;
    margin-bottom: 1.5rem;
  }

  /* Opening hours grid */
  .bb-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
    margin-bottom: 1.25rem;
  }
  .bb-hour-row {
    display: contents;
  }
  .bb-hour-day {
    color: rgba(255,255,255,.45);
    font-size: .8rem;
  }
  .bb-hour-time {
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    font-weight: 500;
  }

  /* Pauze notice */
  .bb-pauze {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-left: 3px solid #e8a020;
    border-radius: 6px;
    padding: .75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
  }
  .bb-pauze strong { color: #f5c842; font-weight: 600; }

  /* Call button inside popup */
  .bb-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .3px;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 16px rgba(107,143,62,.4);
  }
  .bb-call-link:active {
    transform: scale(.97);
    background: var(--green-light);
  }

  /* Close button */
  #bb-popup-close {
    position: absolute;
    top: 1.1rem; right: 1.25rem;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  #bb-popup-close:active { background: rgba(255,255,255,.18); }
}
