/* ====================================
   Gap Section
   ==================================== */

.gap-section {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}

.gap-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.gap-decoration {
  position: absolute;
  left: -60px;
  top: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gap-decoration.visible {
  opacity: 1;
  transform: scale(1);
}

.gap-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.gap-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.gap-body.visible {
  opacity: 1;
  transform: translateY(0);
}

.gap-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 40px auto 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.gap-divider.visible {
  transform: scaleX(1);
}

/* Hide decoration on narrow screens to prevent horizontal overflow */
@media (max-width: 900px) {
  .gap-decoration {
    display: none;
  }
}

/* Responsive — Short viewports */
@media (max-height: 720px) {
  .gap-section {
    padding: 60px 0 72px;
  }

  .gap-quote {
    font-size: clamp(22px, 3.5vw, 34px);
    margin-bottom: 16px;
  }

  .gap-body {
    font-size: 14px;
  }

  .gap-divider {
    margin-top: 28px;
  }
}
