/* ===================================================
   Little Harbor — Visual Break Section
   Parallax-style interstitial with blurred background
   =================================================== */

.break {
  position: relative;
  height: 55vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===== BACKGROUND ===== */
.break__bg {
  position: absolute;
  inset: -15% 0;
}

.break__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: blur(2px) saturate(0.4);
}

/* ===== OVERLAY ===== */
.break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.72);
}

/* ===== CONTENT ===== */
.break__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.break__text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.01em;
}

.break__text em {
  color: var(--accent);
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .break {
    height: 45vh;
    min-height: 280px;
  }
}
