/* =====================================================
   TEMPORARY CLOSURE NOTICE — banner + popup
   Included on every page. Self-contained colours so it
   doesn't depend on per-page :root variables.
   ===================================================== */

.closure-banner {
  background: #b3230a;
  color: #fff;
  font-family: 'Cabin', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.closure-banner strong { font-weight: 700; }
.closure-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.closure-banner a:hover { color: #ffe3db; }

/* Push the sticky site header down below the sticky banner */
.closure-banner + header {
  top: 40px;
}
@media (max-width: 480px) {
  .closure-banner { font-size: 13px; padding: 10px 12px; }
  .closure-banner + header { top: 56px; }
}

/* ---------- Popup ---------- */
.closure-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 20, .6);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.closure-modal-overlay.is-open { display: flex; }

.closure-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  font-family: 'Cabin', Arial, sans-serif;
}
.closure-modal h2 {
  margin: 0 0 12px;
  font-size: 19px;
  color: #03375B;
}
.closure-modal p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #1c1c1c;
}
.closure-modal p:last-of-type { margin-bottom: 20px; }
.closure-modal-ok {
  display: block;
  width: 100%;
  background: #03375B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.closure-modal-ok:hover { background: #022a47; }
