/* =============================================
   ÜBER LADY M PAGE
   ============================================= */

.ulm-page {
  padding-bottom: 5rem;
}

/* White intro block – mirrors bk-intro / fp-about */
.ulm-intro-text {
  background: var(--white);
  padding: 5rem 2rem;
}

.ulm-intro-text p {
  max-width: 780px;
  margin: 0 auto 0.85rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--mid);
  text-align: left;
}

.ulm-intro-text p:last-child {
  margin-bottom: 0;
}

/* ── Intro Band ── */
.ulm-intro-band {
  padding: 4rem 2rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--light);
  margin-bottom: 0;
}

.ulm-eyebrow {
  font-family: 'Montserrat', serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ulm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.2;
}

.ulm-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.ulm-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Split sections ── */
.ulm-section--split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid var(--light);
}

.ulm-section--reverse {
  direction: rtl;
}

.ulm-section--reverse > * {
  direction: ltr;
}

/* ── Image block with hover ── */
.ulm-img-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--light);
  cursor: pointer;
}

.ulm-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ulm-img-placeholder:hover img {
  transform: scale(1.06);
}

.ulm-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ulm-img-placeholder:hover .ulm-img-caption {
  opacity: 1;
  transform: translateY(0);
}

/* gold left-border accent on hover */
.ulm-img-placeholder::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: center;
  z-index: 2;
}

.ulm-img-placeholder:hover::before {
  transform: scaleY(1);
}

/* ── Text block ── */
.ulm-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ulm-text-rule {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.ulm-text-rule--center {
  margin-left: auto;
  margin-right: auto;
}

.ulm-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.ulm-section-text p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 0.75rem;
}

.ulm-section-text p:last-child {
  margin-bottom: 0;
}

.ulm-vib-note {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem !important;
  color: var(--dark) !important;
}

/* ── Gallery section ── */
.ulm-gallery-section {
  padding: 4rem 2rem 0;
}

.ulm-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ulm-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.ulm-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--light);
  cursor: pointer;
}

.ulm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ulm-gallery-item:hover img {
  transform: scale(1.08);
}

.ulm-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.45);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ulm-gallery-item:hover .ulm-gallery-overlay {
  opacity: 1;
}

.ulm-gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ulm-section--split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .ulm-section--reverse {
    direction: ltr;
  }

  .ulm-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ulm-intro-band {
    padding: 2.5rem 1.5rem;
  }
}
