/* inspirations — no inline styles extracted */


/* === Appended from page-inspirations.css === */
/* ================================================================
 * page-inspirations.css
 * Phase 4 DEEP — Inspirations glass v4 (Navy #081B3A + Gold #C9A84C)
 * ================================================================ */

/* --- HERO (animated collage) --- */
.inspo-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1E3155 0%, #253d6b 50%, #1a2a45 100%);
  color: #FDFAF4;
}
.inspo-hero .crumb { color: rgba(253,250,244,.7); opacity: 1; }
.inspo-hero .crumb a { color: rgba(253,250,244,.85); }
.inspo-hero .crumb a:hover { color: #C9A84C; }
.inspo-hero .page-title { color: #FDFAF4; }
.inspo-hero .page-title em { color: #C9A84C; }
.inspo-hero .page-lede { color: rgba(253,250,244,.78); }
.inspo-hero .container { position: relative; z-index: 2; }

.inspo-hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px;
  opacity: 0.6;
  overflow: hidden;
}
@media (max-width: 639px) {
  .inspo-hero-collage { grid-template-columns: 1fr 1fr; }
}
.hc-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: opacity 0.6s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  animation: inspo-hero-pulse 14s ease-in-out infinite alternate;
}
.hc-img:nth-child(1) { background-image: linear-gradient(135deg, #1A3A2A, #2D5A4A); animation-delay: 0s; }
.hc-img:nth-child(2) { background-image: linear-gradient(135deg, #3A2A1A, #6B4A2D); animation-delay: -3s; }
.hc-img:nth-child(3) { background-image: linear-gradient(135deg, #1A1A3A, #2D3A6B); animation-delay: -6s; }
.hc-img:nth-child(4) { background-image: linear-gradient(135deg, #2A1A3A, #4A2D6B); animation-delay: -9s; }
@keyframes inspo-hero-pulse {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.inspo-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(9, 28, 59, 0.15) 0%,
    rgba(9, 28, 59, 0.24) 50%,
    rgba(9, 28, 59, 0.48) 100%
  );
}
.inspo-hero-accent {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 100%, rgba(201, 168, 76, 0.14) 0%, transparent 65%);
}

.inspo-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.inspo-hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  margin-bottom: 22px;
  transition: border-color 0.25s;
}
.inspo-hero-search:focus-within { border-color: rgba(201, 168, 76, 0.6); }
.inspo-hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FDFAF4;
  font-size: 14px;
  padding: 14px 22px;
  font-family: inherit;
  min-width: 0;
}
.inspo-hero-search input::placeholder { color: rgba(253, 250, 244, 0.55); }
.inspo-hero-search button {
  background: var(--gold);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 4px;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.2s;
}
.inspo-hero-search button:hover { background: #E3C26A; transform: scale(1.05); }
.inspo-hero-search button svg { width: 18px; height: 18px; }

.inspo-hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(253, 250, 244, 0.78);
  max-width: 640px;
  margin: 0 0 22px;
  font-weight: 300;
}
.inspo-hero-vprops {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.inspo-vprop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 9px 18px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(253, 250, 244, 0.88);
  font-size: 14px;
}
.inspo-vprop svg { width: 14px; height: 14px; color: rgba(201, 168, 76, 0.95); }
.inspo-vprop strong {
  font-weight: 600;
  color: #FDFAF4;
  font-family: var(--f-mono, 'JetBrains Mono', monospace);
}
.inspo-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.42);
  color: #E3C26A;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.inspo-hero-cta:hover {
  background: rgba(201, 168, 76, 0.28);
  border-color: rgba(201, 168, 76, 0.75);
  transform: translateY(-1px);
}
.inspo-hero-cta svg { width: 13px; height: 13px; }

/* --- Content section (sits on body bg, matching homepage) --- */
.inspo-content {
  padding-top: 56px;
  padding-bottom: 80px;
}

/* --- Filters bar --- */
.inspo-filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.inspo-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.inspo-filters::-webkit-scrollbar { display: none; }

.inspo-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.3s var(--ease-out);
  min-height: 40px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.inspo-pill:hover {
  color: var(--ink);
  border-color: var(--accent);
}
.inspo-pill.active {
  background: var(--accent);
  color: var(--navy-deep);
  border-color: var(--accent);
}

/* --- View toggle --- */
.inspo-view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.inspo-view-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--ink-mute);
  transition: all 0.25s var(--ease-out);
}
.inspo-view-btn:hover { color: var(--ink); border-color: var(--accent); }
.inspo-view-btn.active {
  background: var(--navy-deep);
  color: #fff;
  border-color: var(--navy-deep);
}
.inspo-view-btn svg { width: 16px; height: 16px; }

/* --- Count line --- */
.inspo-count {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 20px;
  font-family: var(--f-mono);
}
.inspo-count strong {
  color: var(--ink-strong);
  font-weight: 600;
}

/* --- Masonry grid (scoped, overrides v4.css default) --- */
.masonry {
  columns: 2;
  column-gap: 12px;
}
@media (min-width: 640px)  { .masonry { columns: 3; column-gap: 14px; } }
@media (min-width: 1024px) { .masonry { columns: 4; column-gap: 16px; } }

/* --- Card (glass v4) --- */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.5s, border-color 0.3s;
}
@media (min-width: 640px) { .masonry-item { margin-bottom: 14px; } }
.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(8, 27, 58, 0.4);
  border-color: rgba(201, 168, 76, 0.45);
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 1.1s var(--ease-out);
}
.masonry-item:hover img { transform: scale(1.05); }

/* Overlay */
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 27, 58, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  pointer-events: none;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
@media (hover: none) {
  .masonry-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(8, 27, 58, 0.6) 100%);
  }
}

.masonry-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.masonry-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--f-mono);
  margin-top: 3px;
}

/* Actions row (hearts) */
.masonry-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  pointer-events: auto;
  z-index: 3;
}
.masonry-heart {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.masonry-heart:hover,
.masonry-heart.saved {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}
.masonry-heart svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }
.masonry-heart.saved svg { fill: #fff; }

/* Zoom hint (on hover, desktop only) */
.masonry-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  width: 44px;
  height: 44px;
  background: rgba(255, 253, 244, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.masonry-item:hover .masonry-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: none) { .masonry-zoom { display: none; } }

/* Skeleton */
.masonry-skeleton {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg,
    rgba(255, 253, 244, 0.35) 0%,
    rgba(255, 253, 244, 0.7) 50%,
    rgba(255, 253, 244, 0.35) 100%);
  background-size: 200%;
  animation: inspo-shimmer 1.5s ease infinite;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
@keyframes inspo-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ============== PHOTO MODAL — V4 (cream + Fraunces italic) ============== */
.inspo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9, 28, 59, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 20px;
}
.inspo-modal.open { display: block; }

.inspo-modal-inner {
  max-width: 900px;
  margin: 40px auto;
  background: #FBF6EB;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(9, 28, 59, 0.45);
  position: relative;
  animation: inspo-modal-in 0.3s ease both;
}
@keyframes inspo-modal-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.inspo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(9, 28, 59, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #091C3B;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}
.inspo-modal-close:hover { background: #fff; transform: scale(1.05); }

.inspo-modal-img-wrap {
  max-height: 500px;
  overflow: hidden;
  background: rgba(9, 28, 59, 0.04);
}
.inspo-modal-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 500px;
}

.inspo-modal-gallery {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  overflow-x: auto;
  background: rgba(9, 28, 59, 0.03);
  border-bottom: 1px solid rgba(9, 28, 59, 0.06);
  scrollbar-width: none;
}
.inspo-modal-gallery::-webkit-scrollbar { display: none; }
.inspo-modal-gallery img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.inspo-modal-gallery img.active,
.inspo-modal-gallery img:hover {
  opacity: 1;
  border-color: #C9A84C;
}

.inspo-modal-body { padding: 26px 28px 28px; }
.inspo-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(9, 28, 59, 0.08);
}
.inspo-modal-head-text { flex: 1; min-width: 0; }
.inspo-modal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B665C;
  margin-bottom: 4px;
}
.inspo-modal-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: #091C3B;
  margin: 0 0 4px 0;
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
}
.inspo-modal-head .meta {
  font-size: 12.5px;
  color: #6B665C;
  font-family: 'JetBrains Mono', monospace;
  margin: 0;
}

.inspo-modal-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.inspo-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(9, 28, 59, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6B665C;
  transition: all 0.2s ease;
}
.inspo-modal-icon:hover {
  color: #C9A84C;
  border-color: #C9A84C;
  transform: translateY(-1px);
}
.inspo-modal-icon.on,
.inspo-modal-icon.saved {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #fff;
}
.inspo-modal-icon.on svg,
.inspo-modal-icon.saved svg { fill: #fff; }
.inspo-modal-icon svg { width: 16px; height: 16px; }

.inspo-modal-desc {
  font-size: 14px;
  color: #4B4945;
  line-height: 1.65;
  margin-bottom: 18px;
  max-height: 140px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.inspo-modal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.inspo-tag {
  font-size: 11px;
  background: rgba(9, 28, 59, 0.04);
  border: 1px solid rgba(9, 28, 59, 0.10);
  color: #4B4945;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inspo-modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6B665C;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
}

.inspo-modal-cta {
  display: flex;
  gap: 10px;
}
.inspo-modal-cta > .btn { flex: 1; justify-content: center; }

@media (max-width: 640px) {
  .inspo-modal-body { padding: 22px 20px 24px; }
  .inspo-modal-head { gap: 12px; }
  .inspo-modal-head h2 { font-size: 19px; }
  .inspo-modal-actions { gap: 6px; }
  .inspo-modal-icon { width: 38px; height: 38px; }
  .inspo-modal-cta { flex-direction: column; }
}

/* ============== MOODBOARD GATE MODAL — V4 ============== */
.we-mb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 28, 59, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}
.we-mb-overlay[data-mb-open="true"] { display: flex; }

.we-mb-dialog {
  background: #FBF6EB;
  border-radius: 22px;
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px -20px rgba(9, 28, 59, 0.4);
  animation: we-mb-in 0.28s ease both;
}
@keyframes we-mb-in {
  from { transform: translateY(18px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.we-mb-head {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(9, 28, 59, 0.08);
}
.we-mb-head img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(9, 28, 59, 0.06);
}
.we-mb-head img:not([src]),
.we-mb-head img[src=""] { display: none; }
.we-mb-head-text { flex: 1; min-width: 0; }
.we-mb-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B665C;
  margin-bottom: 2px;
}
.we-mb-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: #091C3B;
  font-style: italic;
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
}
.we-mb-close {
  background: transparent;
  border: 1px solid rgba(9, 28, 59, 0.12);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #091C3B;
  transition: background 0.2s, border-color 0.2s;
}
.we-mb-close:hover { background: rgba(9, 28, 59, 0.05); border-color: rgba(9, 28, 59, 0.25); }

.we-mb-body { overflow-y: auto; flex: 1; padding: 20px 22px 22px; }
.we-mb-state { display: flex; flex-direction: column; gap: 14px; }

.we-mb-block {
  border: 1px solid rgba(9, 28, 59, 0.10);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.we-mb-block-light { background: rgba(255, 253, 248, 0.6); }
.we-mb-block-info { background: #fff; border-color: rgba(201, 168, 76, 0.35); }
.we-mb-block h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  color: #091C3B;
  margin: 0 0 12px;
  font-weight: 500;
}
.we-mb-block-text {
  font-size: 13px;
  color: #4B4945;
  line-height: 1.55;
  margin: 0 0 14px;
}
.we-mb-block-text strong { color: #091C3B; font-weight: 600; }

.we-mb-block input[type="email"],
.we-mb-block input[type="password"] {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(9, 28, 59, 0.12);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2B2A28;
  margin-bottom: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.we-mb-block input:focus { outline: none; border-color: #C9A84C; }

.we-mb-divider {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6B665C;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 6px 0;
}
.we-mb-divider::before,
.we-mb-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(9, 28, 59, 0.10);
}
.we-mb-divider::before { left: 0; }
.we-mb-divider::after  { right: 0; }

.we-mb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #C9A84C;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  box-sizing: border-box;
}
.we-mb-btn:hover { background: #B5873A; transform: translateY(-1px); }
.we-mb-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.we-mb-btn-outline {
  background: transparent;
  color: #091C3B;
  border: 1px solid rgba(9, 28, 59, 0.18);
}
.we-mb-btn-outline:hover { background: rgba(9, 28, 59, 0.04); color: #091C3B; }

.we-mb-error {
  color: #c0392b;
  font-size: 12.5px;
  margin: 6px 0 8px;
}

.we-mb-foot {
  font-size: 11.5px;
  color: #6B665C;
  line-height: 1.5;
  text-align: center;
  margin: 4px 0 0;
  padding: 0 6px;
}
.we-mb-foot strong { color: #091C3B; font-weight: 600; }

#we-mb-user-role {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.15);
  color: #B5873A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Picker (multi-events) */
.we-mb-picker-lede {
  font-size: 13px;
  color: #6B665C;
  margin: 0 0 6px;
}
.we-mb-picker-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 50vh;
  overflow-y: auto;
}
.we-mb-evcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(9, 28, 59, 0.10);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.we-mb-evcard:hover {
  border-color: #C9A84C;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(201, 168, 76, 0.4);
}
.we-mb-evcard-info { flex: 1; min-width: 0; }
.we-mb-evcard-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  color: #091C3B;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.we-mb-evcard-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6B665C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.we-mb-evcard-arrow {
  color: #C9A84C;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.we-mb-evcard:hover .we-mb-evcard-arrow { transform: translateX(3px); }

/* Success */
.we-mb-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 4px 6px;
  gap: 10px;
}
.we-mb-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: #B5873A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.we-mb-success h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  color: #091C3B;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}
.we-mb-success-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
.we-mb-success-actions .we-mb-btn { flex: 1; }

/* Toast */
.we-mb-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #091C3B;
  color: #FBF6EB;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  box-shadow: 0 12px 30px -8px rgba(9, 28, 59, 0.45);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.we-mb-toast[data-mb-toast-open="true"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.we-mb-toast a {
  color: #C9A84C;
  text-decoration: none;
  font-weight: 600;
}
.we-mb-toast a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .we-mb-dialog { border-radius: 18px; }
  .we-mb-head { padding: 16px 18px; }
  .we-mb-head h3 { font-size: 18px; }
  .we-mb-body { padding: 16px 18px 18px; }
  .we-mb-success-actions { flex-direction: column; }
}

/* --- Bottom CTA --- */
.inspo-cta-section {
  text-align: center;
  padding: 56px 20px 20px;
}
.inspo-cta-section p {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

/* --- No results --- */
.inspo-empty {
  text-align: center;
  padding: 60px 20px;
  width: 100%;
}
.inspo-empty h3 {
  font-family: var(--f-display, 'Fraunces', Georgia, serif);
  font-size: 1.25rem;
  color: var(--ink-strong);
  font-weight: 500;
}

/* Nav overrides on inspirations dark hero — pill stays identical to
   homepage/prestataires (handled by nav-consistent.css), but logo +
   'Se connecter' outside the pill go white so they stay visible. */
body.theme-no-image .nav-wrap .nav-logo img {
  filter: brightness(0) invert(1);
}
body.theme-no-image .nav-wrap .nav-right > .nav-link {
  color: #FDFAF4 !important;
  opacity: 0.92 !important;
}
body.theme-no-image .nav-wrap .nav-right > .nav-link:hover {
  opacity: 1 !important;
  color: #FDFAF4 !important;
}
body.theme-no-image .nav-wrap .nav-burger {
  color: #FDFAF4 !important;
}

/* === v4 HERO HARMONIZATION === */
.inspo-hero .crumb,
.inspo-hero .crumb a { color: rgba(253, 250, 244, 0.7); }
.inspo-hero .crumb a:hover { color: var(--accent-bright); opacity: 1; }
.inspo-hero .crumb .sep { color: rgba(253, 250, 244, 0.35); }
.inspo-hero .eyebrow { color: var(--accent-bright); }
.inspo-hero .page-title { color: #FDFAF4; }
.inspo-hero .page-title em { color: #C9A84C; }
/* ============================= */
