/* BondMind — Mina's world. Image-led, sparse, first-person. */

.bm-site--mina {
  overflow-x: hidden;
}

.bm-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050308;
}

.bm-stage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.01);
  animation: bm-drift 22s ease-in-out infinite alternate;
  filter: saturate(0.95) contrast(1.04);
}

@keyframes bm-drift {
  from {
    transform: scale(1.01) translate(0, 0);
  }
  to {
    transform: scale(1.03) translate(-0.6%, 0.3%);
  }
}

.bm-stage__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 3, 8, 0.94) 0%,
      rgba(5, 3, 8, 0.78) 36%,
      rgba(5, 3, 8, 0.28) 64%,
      rgba(5, 3, 8, 0.5) 100%
    ),
    linear-gradient(to top, rgba(5, 3, 8, 0.9) 0%, transparent 44%),
    radial-gradient(ellipse 45% 35% at 72% 28%, rgba(184, 90, 40, 0.16), transparent 55%);
}

.bm-stage__grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.bm-shell {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  margin: 0;
  padding: 0 1.35rem 4.5rem;
  margin-left: clamp(1rem, 6vw, 4.5rem);
}

.bm-nav .topbar__mark {
  color: var(--moon);
  text-decoration: none;
}

.bm-hero {
  min-height: min(92vh, 54rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 0 2.75rem;
  animation: bm-hero-in 1.15s var(--ease) both;
}

@keyframes bm-hero-in {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bm-hero__hello {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  color: var(--honey);
  margin: 0 0 0.15rem;
  letter-spacing: 0.02em;
}

.bm-hero__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 13vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--moon);
}

.bm-hero__world {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  color: var(--amber);
  margin: 0 0 1.15rem;
  letter-spacing: -0.01em;
}

.bm-hero__line {
  margin: 0 0 1.75rem;
  max-width: 26rem;
  color: var(--moon-dim);
  line-height: 1.5;
  font-size: 1.05rem;
}

.bm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bm-section {
  padding: 2.75rem 0 0.25rem;
  border-top: 1px solid rgba(232, 220, 200, 0.12);
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.bm-section.is-in {
  opacity: 1;
  transform: translateY(0);
}

.bm-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--honey);
}

.bm-whisper {
  color: var(--moon-dim);
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: 1.05rem;
}

.bm-whisper em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--honey);
  font-size: 1.12em;
}

.bm-pulse {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.bm-pulse a {
  display: grid;
  gap: 0.2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.35s var(--ease), color 0.35s var(--ease);
}

.bm-pulse a:hover,
.bm-pulse a:focus-visible {
  padding-left: 0.4rem;
  color: var(--honey);
}

.bm-pulse span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.bm-pulse em {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--moon-soft);
  line-height: 1.4;
}

.bm-section--close .bm-hero__cta {
  margin-top: 0.5rem;
}

.bm-foot {
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 220, 200, 0.1);
}

.bm-foot__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
}

.bm-foot__line {
  margin: 0;
  color: var(--moon-soft);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .bm-shell {
    margin-left: 0;
    max-width: none;
  }

  .bm-stage__img {
    object-position: center 50%;
  }

  .bm-stage__shade {
    background:
      linear-gradient(to top, rgba(5, 3, 8, 0.94) 0%, rgba(5, 3, 8, 0.55) 45%, rgba(5, 3, 8, 0.4) 100%),
      linear-gradient(to right, rgba(5, 3, 8, 0.6), transparent 72%);
  }

  .bm-nav .topbar__actions .btn--nav:not(.btn--primary) {
    display: none;
  }

  .bm-hero {
    min-height: 88vh;
  }
}

@media (min-width: 1100px) {
  .bm-shell {
    max-width: 38rem;
  }

  .bm-stage__img {
    object-position: center 48%;
  }
}
