/* Latest blush-and-botanical setup media. Kept separate from the legacy minified bundle. */
.ba-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: .6rem;
  margin-bottom: 1rem;
}

.ba-visual {
  min-width: 0;
}

.ba-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .15rem;
  min-height: 62px;
  padding: .7rem .8rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink-soft);
  text-align: left;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ba-option:hover {
  border-color: var(--rose);
  transform: translateY(-1px);
}

.ba-option.is-active,
.ba-option[aria-selected="true"] {
  border-color: var(--rose);
  background: var(--rose-soft);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(184, 47, 99, .12);
}

.ba-option span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ba-option strong {
  color: inherit;
  font-family: 'Fraunces', Georgia, serif;
  font-size: .95rem;
  line-height: 1.15;
}

.ba-selection-copy {
  min-height: 2.8em;
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.gallery .gi-video video,
.full-gallery .gi-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 520px) {
  .ba-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ba-option { min-height: 58px; padding: .6rem .7rem; }
  .ba-option strong { font-size: .88rem; }
}

.ba-img--after {
  clip-path: inset(0 0 0 50%);
}

.media-reel {
  background: var(--bg);
}

.media-reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.media-reel-card {
  margin: 0;
  padding: .75rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.media-reel-card video {
  display: block;
  width: 100%;
  object-fit: contain;
  background: #15121e;
  border-radius: calc(var(--r-lg) - 8px);
}

.media-reel-card--portrait video {
  aspect-ratio: 9 / 16;
}

.media-reel-card--landscape video {
  aspect-ratio: 16 / 9;
}

.media-reel-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  padding: 1rem .65rem .55rem;
}

.media-reel-card figcaption strong {
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
}

.media-reel-card figcaption span {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

@media (min-width: 760px) {
  .media-reel-grid {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  }

  .media-reel-card--landscape {
    margin-top: 3rem;
  }
}
