/* ============================================================
   LUMIÈRE — Archive + Model Cards + Profile Enhancements
   ============================================================ */

/* ── Archive Hero ── */
.lmp-archive-page {
  background: #0A0A0C;
  min-height: 100vh;
  font-family: 'Jost', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #F0EDE8;
}

.lmp-archive-hero {
  background: #111114;
  border-bottom: 1px solid rgba(201,149,106,.15);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.lmp-archive-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,149,106,.06) 0%, transparent 70%);
  pointer-events: none;
}

.lmp-archive-hero__content { position: relative; z-index: 1; }

.lmp-archive-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #F0EDE8;
  margin: .5rem 0 0;
  line-height: 1.1;
}

.lmp-archive-hero__sub {
  color: #8A8580;
  font-size: .9rem;
  margin-top: .5rem;
}

.lmp-admin-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(201,149,106,.15);
  color: #C9956A;
  border-radius: 4px;
  font-size: .75em;
  letter-spacing: .05em;
}

/* ── Filter Bar ── */
.lmp-archive-filter-bar {
  background: #111114;
  border-bottom: 1px solid rgba(201,149,106,.15);
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(10px);
}

.lmp-filter-bar__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.lmp-filter-search {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

.lmp-filter-search svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8A8580;
  pointer-events: none;
}

.lmp-filter-input {
  background: #1A1A1F;
  border: 1px solid rgba(201,149,106,.15);
  border-radius: 6px;
  padding: .55rem .85rem .55rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: #F0EDE8;
  width: 100%;
  outline: none;
  transition: border-color .25s ease;
}

.lmp-filter-input:focus { border-color: rgba(201,149,106,.4); }
.lmp-filter-input::placeholder { color: #4A4844; }

.lmp-filter-select-wrap { position: relative; }

.lmp-filter-select {
  appearance: none;
  background: #1A1A1F url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8580' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right .85rem center;
  border: 1px solid rgba(201,149,106,.15);
  border-radius: 6px;
  padding: .55rem 2.25rem .55rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  color: #F0EDE8;
  cursor: pointer;
  outline: none;
  transition: border-color .25s ease;
  min-width: 150px;
}

.lmp-filter-select:focus { border-color: rgba(201,149,106,.4); }

.lmp-filter-count {
  font-size: .75rem;
  color: #8A8580;
  letter-spacing: .08em;
  margin-left: auto;
}

/* ── Models Grid ── */
.lmp-archive-grid-section {
  padding: 3rem 0 5rem;
}

.lmp-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .lmp-models-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 420px) {
  .lmp-models-grid { grid-template-columns: 1fr; }
}

/* ── Model Card ── */
.lmp-model-card {
  background: #111114;
  border: 1px solid rgba(201,149,106,.1);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color .45s ease,
    transform    .45s cubic-bezier(.22,.61,.36,1),
    box-shadow   .45s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 24px rgba(0,0,0,.45),
    0 0  0    1px rgba(201,149,106,.04);
}

.lmp-model-card:hover {
  border-color: rgba(201,149,106,.38);
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 20px 56px rgba(0,0,0,.65),
    0  0  32px rgba(201,149,106,.13),
    0  0  80px rgba(201,149,106,.06),
    0  0   0 1px rgba(201,149,106,.18);
}

/* Karte ausgeblendet beim Filtern */
.lmp-model-card.is-hidden {
  display: none;
}

/* Photo */
.lmp-model-card__photo-link { display: block; }

.lmp-model-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1A1A1F;
}

.lmp-model-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.38) 35%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 1;
}

.lmp-model-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.lmp-model-card:hover .lmp-model-card__photo img {
  transform: scale(1.14);
}

.lmp-model-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(201,149,106,.2);
}

.lmp-model-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
}

.lmp-model-card:hover .lmp-model-card__photo-overlay {
  opacity: 1;
}

.lmp-model-card__view-btn {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E8C4A0;
}

/* Admin-Badge auf Karte */
.lmp-card-admin-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}

.lmp-card-admin-badge--hidden {
  background: rgba(180,80,80,.85);
  color: #F0EDE8;
}

/* Foto-Zähler */
.lmp-card-photo-count {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(201,149,106,.2);
  border-radius: 4px;
  font-size: 9px;
  color: #C9956A;
  letter-spacing: .1em;
  z-index: 2;
}

/* Card Body */
.lmp-model-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.lmp-model-card__header {}

.lmp-model-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 0 .25rem;
  line-height: 1.2;
}

.lmp-model-card__name a {
  color: #F0EDE8;
  text-decoration: none;
  transition: color .25s ease;
}

.lmp-model-card__name a:hover { color: #E8C4A0; }

.lmp-model-card__meta {
  font-size: .8rem;
  color: #8A8580;
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.lmp-card-dot { opacity: .4; }

/* Service Tags */
.lmp-model-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.lmp-card-service-tag {
  padding: .2rem .6rem;
  background: rgba(201,149,106,.08);
  border: 1px solid rgba(201,149,106,.15);
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .06em;
  color: #8A8580;
}

.lmp-card-service-tag--more {
  color: rgba(201,149,106,.6);
  border-color: rgba(201,149,106,.1);
}

/* Footer */
.lmp-model-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(201,149,106,.1);
}

.lmp-card-price {
  font-size: .8rem;
  color: #E8C4A0;
  letter-spacing: .04em;
}

.lmp-card-link {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C9956A;
  text-decoration: none;
  transition: color .25s ease;
}

.lmp-card-link:hover { color: #E8C4A0; }

/* Admin-Aktionen auf Karte */
.lmp-model-card__admin-actions {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  padding-top: .5rem;
  border-top: 1px solid rgba(180,80,80,.12);
}

.lmp-card-admin-btn {
  display: inline-flex;
  padding: .2rem .5rem;
  border-radius: 3px;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,149,106,.2);
  background: transparent;
  color: #8A8580;
  cursor: pointer;
  transition: all .2s ease;
}

.lmp-card-admin-btn:hover {
  border-color: #C9956A;
  color: #C9956A;
}

.lmp-card-admin-btn--danger:hover {
  border-color: #c47070;
  color: #c47070;
}

/* Leer-State */
.lmp-archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
}

.lmp-archive-empty__icon {
  font-size: 2rem;
  color: rgba(201,149,106,.3);
  margin-bottom: 1rem;
}

.lmp-archive-empty__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #8A8580;
}

.lmp-archive-no-results {
  text-align: center;
  padding: 4rem 2rem;
}

/* ── Profil-Seite: Erweiterungen ── */

/* Admin Overlay Bar */
.lmp-admin-overlay-bar {
  position: fixed;
  top: 32px; /* WP Admin Bar */
  left: 0;
  right: 0;
  background: rgba(10,10,12,.95);
  border-bottom: 1px solid rgba(201,149,106,.3);
  z-index: 9990;
  backdrop-filter: blur(12px);
}

.lmp-admin-overlay-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .6rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lmp-admin-overlay-bar__badge {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C9956A;
  padding: 2px 8px;
  background: rgba(201,149,106,.12);
  border-radius: 3px;
  white-space: nowrap;
}

.lmp-admin-overlay-bar__info {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #8A8580;
  flex-wrap: wrap;
}

.lmp-admin-vis-label.is-visible { color: #7DC87D; }
.lmp-admin-vis-label.is-hidden  { color: #c47070; }

.lmp-admin-overlay-bar__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.lmp-admin-bar-btn {
  padding: .3rem .85rem;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,149,106,.25);
  background: transparent;
  color: #C9956A;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.lmp-admin-bar-btn:hover {
  background: rgba(201,149,106,.1);
  border-color: #C9956A;
}

.lmp-admin-bar-btn--muted {
  color: #8A8580;
  border-color: rgba(201,149,106,.12);
}

.lmp-admin-bar-btn--muted:hover {
  color: #F0EDE8;
  border-color: rgba(201,149,106,.3);
}

/* Sticky Profil-Nav */
.lmp-profile-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,10,12,.92);
  border-bottom: 1px solid rgba(201,149,106,.12);
  backdrop-filter: blur(16px);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}

.lmp-profile-sticky-nav.is-visible {
  transform: translateY(0);
}

.lmp-profile-sticky-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.lmp-profile-sticky-nav__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #F0EDE8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.lmp-profile-sticky-nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lmp-sticky-link {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8A8580;
  text-decoration: none;
  transition: color .25s ease;
}

.lmp-sticky-link:hover { color: #E8C4A0; }

.lmp-sticky-link--cta {
  padding: .4rem 1rem;
  background: #C9956A;
  color: #0A0A0C;
  border-radius: 4px;
}

.lmp-sticky-link--cta:hover {
  background: #E8C4A0;
  color: #0A0A0C;
}

/* Hero Verbesserungen */
.lmp-profile-hero__bg--placeholder {
  background: linear-gradient(135deg, #111114 0%, #1A1A1F 100%);
}

.lmp-profile-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10,10,10,1)    0%,
      rgba(10,10,10,0.6)  8%,
      rgba(10,10,10,0)    24%
    ),
    linear-gradient(
      to top,
      rgba(10,10,10,1)    0%,
      rgba(10,10,10,0.75) 14%,
      rgba(10,10,10,0.3)  32%,
      rgba(10,10,10,0)    52%
    );
}

.lmp-profile-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
  padding-top: 8rem;
  gap: 2rem;
}

.lmp-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #C9956A;
  margin: 0 0 .5rem;
}

.lmp-hero-eyebrow__line {
  display: block;
  width: 30px;
  height: 1px;
  background: #C9956A;
  opacity: .6;
}

.lmp-profile-hero__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #F0EDE8;
  line-height: 1.0;
  margin: 0;
}

.lmp-profile-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lmp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(240,237,232,.65);
}

.lmp-hero-meta-price {
  color: #E8C4A0;
  font-weight: 400;
}

.lmp-profile-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll-Indikator */
.lmp-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(201,149,106,.5);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@keyframes lmpScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.lmp-scroll-dot {
  animation: lmpScrollBounce 1.8s ease-in-out infinite;
}

/* Galerie Grid (Profil) */
.lmp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.lmp-gallery-cell {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  background: #1A1A1F;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lmp-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.lmp-gallery-cell:hover img { transform: scale(1.10); }

.lmp-gallery-cell__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8C4A0;
  opacity: 0;
  transition: opacity .3s ease;
}

.lmp-gallery-cell:hover .lmp-gallery-cell__hover { opacity: 1; }

/* Lightbox */
.lmp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.lmp-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lmp-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lmp-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  transition: opacity .2s ease;
}

.lmp-lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #F0EDE8;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
}

.lmp-lightbox__close:hover {
  background: rgba(201,149,106,.15);
  border-color: rgba(201,149,106,.4);
}

.lmp-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #F0EDE8;
  cursor: pointer;
  transition: all .2s ease;
}

.lmp-lightbox__nav:hover { background: rgba(201,149,106,.15); border-color: rgba(201,149,106,.3); }
.lmp-lightbox__nav--prev { left: 1.5rem; }
.lmp-lightbox__nav--next { right: 1.5rem; }

.lmp-lightbox__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .15em;
  color: rgba(240,237,232,.5);
}

/* Kalender-Sektion zentriert */
.lmp-profile-calendar-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
